185 |
|
tStats->removeCOMdrift(); |
186 |
|
|
187 |
|
// initialize the retraints if necessary |
188 |
< |
if (info->useThermInt) { |
188 |
> |
if (info->useSolidThermInt && !info->useLiquidThermInt) { |
189 |
|
myFF->initRestraints(); |
190 |
|
} |
191 |
|
|
255 |
|
|
256 |
|
if (info->getTime() >= currStatus){ |
257 |
|
statOut->writeStat(info->getTime()); |
258 |
< |
statOut->writeRaw(info->getTime()); |
258 |
> |
if (info->useSolidThermInt || info->useLiquidThermInt) |
259 |
> |
statOut->writeRaw(info->getTime()); |
260 |
|
calcPot = 0; |
261 |
|
calcStress = 0; |
262 |
|
currStatus += statusTime; |
280 |
|
} |
281 |
|
|
282 |
|
// dump out a file containing the omega values for the final configuration |
283 |
< |
if (info->useThermInt) |
283 |
> |
if (info->useSolidThermInt && !info->useLiquidThermInt) |
284 |
|
myFF->dumpzAngle(); |
285 |
|
|
286 |
|
|