Ignore:
File:
1 edited

Legend:

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

    re4afb4 r1fd675  
    4747    DoLog(1) && (Log() << Verbose(1) << "Storing temperatures in " << params.temperaturefile << "." << endl);
    4848    ofstream output;
    49     output.open(params.temperaturefile.string().c_str(), ios::trunc);
     49    output.open(params.temperaturefile.c_str(), ios::trunc);
    5050    if (output.fail() || !mol->OutputTemperatureFromTrajectories((ofstream * const) &output, 0, mol->MDSteps))
    5151      DoLog(2) && (Log() << Verbose(2) << "File could not be written." << endl);
     
    7878  return false;
    7979}
     80
     81const string MoleculeSaveTemperatureAction::getName() {
     82  return NAME;
     83}
    8084/** =========== end of function ====================== */
Note: See TracChangeset for help on using the changeset viewer.