- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/MoleculeAction/VerletIntegrationAction.cpp
r1fd675 re4afb4 48 48 // TODO: sollte besser stream nutzen, nicht filename direkt (es sei denn, ist prefix), besser fuer unit test 49 49 char outputname[MAXSTRINGSIZE]; 50 strcpy(outputname, params.forcesfile. c_str());50 strcpy(outputname, params.forcesfile.string().c_str()); 51 51 if (!mol->VerletForceIntegration(outputname, *(World::getInstance().getConfig()), 0)) 52 52 DoLog(2) && (Log() << Verbose(2) << "File " << params.forcesfile << " not found." << endl); … … 78 78 return false; 79 79 } 80 81 const string MoleculeVerletIntegrationAction::getName() {82 return NAME;83 }84 80 /** =========== end of function ====================== */
Note:
See TracChangeset
for help on using the changeset viewer.