Changes in src/config.hpp [43dad6:235bed]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/config.hpp
r43dad6 r235bed 20 20 #include <string> 21 21 22 #include "bondgraph.hpp" 23 22 24 /****************************************** forward declarations *****************************/ 23 25 24 class BondGraph;25 class ConfigFileBuffer;26 26 class molecule; 27 27 class MoleculeListClass; 28 28 class periodentafel; 29 class ThermoStatContainer;30 29 31 30 /********************************************** declarations *******************************/ 31 32 class ConfigFileBuffer { 33 public: 34 char **buffer; 35 int *LineMapping; 36 int CurrentLine; 37 int NoLines; 38 39 ConfigFileBuffer(); 40 ConfigFileBuffer(const char * const filename); 41 ~ConfigFileBuffer(); 42 43 void InitMapping(); 44 void MapIonTypesInBuffer(const int NoAtoms); 45 }; 32 46 33 47 /** The config file. … … 37 51 public: 38 52 class BondGraph *BG; 39 class ThermoStatContainer *Thermostats;40 53 41 54 int PsiType; … … 57 70 int DoConstrainedMD; 58 71 int MaxOuterStep; 72 int Thermostat; 73 int *ThermostatImplemented; 74 char **ThermostatNames; 75 double TempFrequency; 76 double alpha; 77 double HooverMass; 78 double TargetTemp; 79 int ScaleTempStep; 59 80 60 81 private: … … 131 152 char *GetDefaultPath() const; 132 153 void SetDefaultPath(const char * const path); 154 void InitThermostats(); 133 155 void ParseThermostats(class ConfigFileBuffer * const fb); 134 156 };
Note:
See TracChangeset
for help on using the changeset viewer.