Changes in src/config.hpp [235bed:43dad6]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/config.hpp
r235bed r43dad6 20 20 #include <string> 21 21 22 #include "bondgraph.hpp"23 24 22 /****************************************** forward declarations *****************************/ 25 23 24 class BondGraph; 25 class ConfigFileBuffer; 26 26 class molecule; 27 27 class MoleculeListClass; 28 28 class periodentafel; 29 class ThermoStatContainer; 29 30 30 31 /********************************************** 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 };46 32 47 33 /** The config file. … … 51 37 public: 52 38 class BondGraph *BG; 39 class ThermoStatContainer *Thermostats; 53 40 54 41 int PsiType; … … 70 57 int DoConstrainedMD; 71 58 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;80 59 81 60 private: … … 152 131 char *GetDefaultPath() const; 153 132 void SetDefaultPath(const char * const path); 154 void InitThermostats();155 133 void ParseThermostats(class ConfigFileBuffer * const fb); 156 134 };
Note:
See TracChangeset
for help on using the changeset viewer.