Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/MpqcParser_Parameters.cpp

    ra2f5e5 re3c4c5  
    6969    ParamNames[integrationParam] = "integration";
    7070    ParamNames[theoryParam] = "theory";
     71    ParamNames[jobtypeParam] = "jobtype";
    7172  }
    7273
     
    8788  //InvertMap<TheoryNamesType,TheoryLookupType>(TheoryNames,TheoryLookup);
    8889
     90  // create Jobs parameter
     91  {
     92    ValidJobtypes.clear();
     93    ValidJobtypes.resize(unknownJob);
     94    ValidJobtypes[Default]="Default";
     95    ValidJobtypes[Optimization]="Optimization";
     96    appendParameter(
     97        new Parameter<std::string>(
     98            ParamNames[jobtypeParam],
     99            ValidJobtypes,
     100            ValidJobtypes[Default]));
     101  }
     102
    89103  // create integration parameter
    90104  {
     
    177191}
    178192
     193/** Getter for name of a specific Parameter.
     194 *
     195 * @param param index among enum Jobtype
     196 * @return name of the desired Jobtype
     197 */
     198const std::string &MpqcParser_Parameters::getJobtypeName(const enum Jobtype jobtype) const
     199{
     200  return ValidJobtypes[jobtype];
     201}
     202
    179203/** Getter for the name of specific of IntegrationMethod.
    180204 *
Note: See TracChangeset for help on using the changeset viewer.