2020-08-18 14:27:28 +02:00
|
|
|
/*
|
2024-05-13 12:33:08 +02:00
|
|
|
* Copyright (C) NHR@FAU, University Erlangen-Nuremberg.
|
2022-09-05 10:39:42 +02:00
|
|
|
* All rights reserved. This file is part of MD-Bench.
|
|
|
|
* Use of this source code is governed by a LGPL-3.0
|
|
|
|
* license that can be found in the LICENSE file.
|
2020-08-18 14:27:28 +02:00
|
|
|
*/
|
|
|
|
#include <parameter.h>
|
|
|
|
#include <atom.h>
|
|
|
|
|
|
|
|
#ifndef __THERMO_H_
|
|
|
|
#define __THERMO_H_
|
|
|
|
extern void setupThermo(Parameter*, int);
|
|
|
|
extern void computeThermo(int, Parameter*, Atom*);
|
|
|
|
extern void adjustThermo(Parameter*, Atom*);
|
|
|
|
#endif
|