Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/ParserAction/LoadXyzAction.cpp

    re4afb4 r1fd675  
    3838  getParametersfromValueStorage();
    3939
    40   DoLog(1) && (Log() << Verbose(1) << "Parsing xyz file " << params.filename << " for new atoms." << endl);
     40  DoLog(1) && (Log() << Verbose(1) << "Parsing xyz file for new atoms." << endl);
    4141  // parse xyz file
    4242  ifstream input;
    43   input.open(params.filename.string().c_str());
     43  input.open(params.filename.c_str());
    4444  if (!input.fail()) {
    4545    XyzParser parser; // briefly instantiate a parser which is removed at end of focus
     
    7373  return false;
    7474}
     75
     76const string ParserLoadXyzAction::getName() {
     77  return NAME;
     78}
    7579/** =========== end of function ====================== */
Note: See TracChangeset for help on using the changeset viewer.