Introduce ObservablesHistory container
[gromacs.git] / src / gromacs / mdlib / mdrun.h
blobc04475e0a1859a0d4695f4268ba2cfaab8bea602
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5 * Copyright (c) 2001-2004, The GROMACS development team.
6 * Copyright (c) 2013,2014,2015,2017, by the GROMACS development team, led by
7 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
8 * and including many others, as listed in the AUTHORS file in the
9 * top-level source directory and at http://www.gromacs.org.
11 * GROMACS is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public License
13 * as published by the Free Software Foundation; either version 2.1
14 * of the License, or (at your option) any later version.
16 * GROMACS is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with GROMACS; if not, see
23 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
24 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 * If you want to redistribute modifications to GROMACS, please
27 * consider that scientific software is very special. Version
28 * control is crucial - bugs must be traceable. We will be happy to
29 * consider code for inclusion in the official distribution, but
30 * derived work must not be called official GROMACS. Details are found
31 * in the README & COPYING files - if they are missing, get the
32 * official version at http://www.gromacs.org.
34 * To help us fund GROMACS development, we humbly ask that you cite
35 * the research papers on the package. Check out http://www.gromacs.org.
37 #ifndef GMX_MDLIB_MDRUN_H
38 #define GMX_MDLIB_MDRUN_H
40 #include <stdio.h>
41 #include <time.h>
43 #include "gromacs/timing/wallcycle.h"
45 struct df_history_t;
46 struct gmx_constr;
47 struct gmx_edsam;
48 struct gmx_enerdata_t;
49 struct gmx_mtop_t;
50 struct t_commrec;
51 struct t_expanded;
52 struct t_extmass;
53 struct t_inputrec;
54 struct t_lambda;
55 struct t_mdatoms;
56 struct t_simtemp;
57 class t_state;
59 #define MD_POLARISE (1<<2)
60 #define MD_RERUN (1<<4)
61 #define MD_RERUN_VSITE (1<<5)
62 #define MD_DDBONDCHECK (1<<10)
63 #define MD_DDBONDCOMM (1<<11)
64 #define MD_CONFOUT (1<<12)
65 #define MD_REPRODUCIBLE (1<<13)
66 #define MD_APPENDFILES (1<<15)
67 #define MD_APPENDFILESSET (1<<21)
68 #define MD_KEEPANDNUMCPT (1<<16)
69 #define MD_READ_EKIN (1<<17)
70 #define MD_STARTFROMCPT (1<<18)
71 #define MD_RESETCOUNTERSHALFWAY (1<<19)
72 #define MD_TUNEPME (1<<20)
73 #define MD_NTOMPSET (1<<21)
74 #define MD_IMDWAIT (1<<23)
75 #define MD_IMDTERM (1<<24)
76 #define MD_IMDPULL (1<<25)
78 /* The options for the domain decomposition MPI task ordering */
79 enum {
80 ddrankorderSEL, ddrankorderINTERLEAVE, ddrankorderPP_PME, ddrankorderCARTESIAN, ddrankorderNR
83 void init_npt_masses(t_inputrec *ir, t_state *state, t_extmass *MassQ, gmx_bool bInit);
85 void init_expanded_ensemble(gmx_bool bStateFromCP, t_inputrec *ir, df_history_t *dfhist);
87 int ExpandedEnsembleDynamics(FILE *log, t_inputrec *ir, gmx_enerdata_t *enerd,
88 t_state *state, t_extmass *MassQ, int fep_state, df_history_t *dfhist,
89 gmx_int64_t step,
90 rvec *v, t_mdatoms *mdatoms);
92 void PrintFreeEnergyInfoToFile(FILE *outfile, t_lambda *fep, t_expanded *expand, t_simtemp *simtemp, df_history_t *dfhist,
93 int fep_state, int frequency, gmx_int64_t step);
95 /* Allocate and initialize node-local state entries. */
96 void set_state_entries(t_state *state, const t_inputrec *ir);
98 /* Broadcast the data for a simulation, and allocate node-specific settings */
99 void init_parallel(t_commrec *cr, t_inputrec *inputrec,
100 gmx_mtop_t *mtop);
102 void bcast_state(const t_commrec *cr, t_state *state);
103 /* Broadcasts state from the master to all nodes in cr->mpi_comm_mygroup.
106 #endif