- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/MoleculeAction/SaveTemperatureAction.cpp
re4afb4 r1fd675 47 47 DoLog(1) && (Log() << Verbose(1) << "Storing temperatures in " << params.temperaturefile << "." << endl); 48 48 ofstream output; 49 output.open(params.temperaturefile. string().c_str(), ios::trunc);49 output.open(params.temperaturefile.c_str(), ios::trunc); 50 50 if (output.fail() || !mol->OutputTemperatureFromTrajectories((ofstream * const) &output, 0, mol->MDSteps)) 51 51 DoLog(2) && (Log() << Verbose(2) << "File could not be written." << endl); … … 78 78 return false; 79 79 } 80 81 const string MoleculeSaveTemperatureAction::getName() { 82 return NAME; 83 } 80 84 /** =========== end of function ====================== */
Note:
See TracChangeset
for help on using the changeset viewer.