Pass ref_t to initialize_lambdas
[alexxy/gromacs.git] / src / gromacs / mdtypes / state.h
index 8998b75abcc86683c37af1d99ea4a0b774788405..faa51d21a45082bfeb4553cfaeaf46ea12010352 100644 (file)
@@ -293,17 +293,6 @@ struct t_extmass
     tensor              Winvm; /* inverse pressure mass tensor, computed       */
 };
 
-
-typedef struct
-{
-    real    veta;
-    double  rscale;
-    double  vscale;
-    double  rvscale;
-    double  alpha;
-    double* vscale_nhc;
-} t_vetavars;
-
 #endif // DOXYGEN
 
 //! Resizes the T- and P-coupling state variables
@@ -376,6 +365,11 @@ void printLambdaStateToLog(FILE* fplog, gmx::ArrayRef<const real> lambda, bool i
  * and lambda on master rank.
  *
  * Reports the initial lambda state to the log file. */
-void initialize_lambdas(FILE* fplog, const t_inputrec& ir, bool isMaster, int* fep_state, gmx::ArrayRef<real> lambda);
+void initialize_lambdas(FILE*               fplog,
+                        const t_inputrec&   ir,
+                        gmx::ArrayRef<real> ref_t,
+                        bool                isMaster,
+                        int*                fep_state,
+                        gmx::ArrayRef<real> lambda);
 
 #endif