Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/MoleculeAction/SaveTemperatureAction.cpp

    rbe21fa rf10b0c  
    4242/** =========== define the function ====================== */
    4343Action::state_ptr MoleculeSaveTemperatureAction::performCall() {
    44   LOG(1, "Storing temperatures in " << params.temperaturefile << ".");
     44  LOG(1, "Storing temperatures in " << params.temperaturefile.get() << ".");
    4545  ofstream output;
    46   output.open(params.temperaturefile.string().c_str(), ios::trunc);
     46  output.open(params.temperaturefile.get().string().c_str(), ios::trunc);
    4747  AtomSetMixin<std::vector<atom *> > set(World::getInstance().getSelectedAtoms());
    4848  const size_t MDSteps = set.getMaxTrajectorySize();
Note: See TracChangeset for help on using the changeset viewer.