- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/ParserAction/LoadXyzAction.cpp
r1fd675 re4afb4 38 38 getParametersfromValueStorage(); 39 39 40 DoLog(1) && (Log() << Verbose(1) << "Parsing xyz file for new atoms." << endl);40 DoLog(1) && (Log() << Verbose(1) << "Parsing xyz file " << params.filename << " for new atoms." << endl); 41 41 // parse xyz file 42 42 ifstream input; 43 input.open(params.filename. c_str());43 input.open(params.filename.string().c_str()); 44 44 if (!input.fail()) { 45 45 XyzParser parser; // briefly instantiate a parser which is removed at end of focus … … 73 73 return false; 74 74 } 75 76 const string ParserLoadXyzAction::getName() {77 return NAME;78 }79 75 /** =========== end of function ====================== */
Note:
See TracChangeset
for help on using the changeset viewer.