- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/MoleculeAction/SaveTemperatureAction.cpp
rbe21fa rf10b0c 42 42 /** =========== define the function ====================== */ 43 43 Action::state_ptr MoleculeSaveTemperatureAction::performCall() { 44 LOG(1, "Storing temperatures in " << params.temperaturefile << ".");44 LOG(1, "Storing temperatures in " << params.temperaturefile.get() << "."); 45 45 ofstream output; 46 output.open(params.temperaturefile. string().c_str(), ios::trunc);46 output.open(params.temperaturefile.get().string().c_str(), ios::trunc); 47 47 AtomSetMixin<std::vector<atom *> > set(World::getInstance().getSelectedAtoms()); 48 48 const size_t MDSteps = set.getMaxTrajectorySize();
Note:
See TracChangeset
for help on using the changeset viewer.