12 |
|
int isRandom; |
13 |
|
} sysBuildInfo; |
14 |
|
|
15 |
< |
typedef struct{ |
15 |
> |
typedef struct includeTag{ |
16 |
|
char name[STR_LENGTH]; |
17 |
< |
includeLinked* next; |
17 |
> |
struct includeTag* next; |
18 |
|
} includeLinked; |
19 |
|
|
20 |
|
typedef struct{ |
35 |
|
MoleculeStamp** compStamps; |
36 |
|
|
37 |
|
int havePressure; |
38 |
< |
int haveTauBarrostat; |
38 |
> |
int haveTauBarostat; |
39 |
|
int haveTauThermostat; |
40 |
|
int haveQmass; |
41 |
|
|
42 |
|
double targetPressure; |
43 |
< |
double tauBarrostat; |
43 |
> |
double tauBarostat; |
44 |
|
double tauThermostat; |
45 |
|
double Qmass; |
46 |
|
|
47 |
+ |
char lipidName[STR_LENGTH]; |
48 |
+ |
char waterName[STR_LENGTH]; |
49 |
+ |
|
50 |
|
} bassInfo; |
51 |
|
|
52 |
|
|