- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/MpqcParser_Parameters.cpp
ra2f5e5 re3c4c5 69 69 ParamNames[integrationParam] = "integration"; 70 70 ParamNames[theoryParam] = "theory"; 71 ParamNames[jobtypeParam] = "jobtype"; 71 72 } 72 73 … … 87 88 //InvertMap<TheoryNamesType,TheoryLookupType>(TheoryNames,TheoryLookup); 88 89 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 89 103 // create integration parameter 90 104 { … … 177 191 } 178 192 193 /** Getter for name of a specific Parameter. 194 * 195 * @param param index among enum Jobtype 196 * @return name of the desired Jobtype 197 */ 198 const std::string &MpqcParser_Parameters::getJobtypeName(const enum Jobtype jobtype) const 199 { 200 return ValidJobtypes[jobtype]; 201 } 202 179 203 /** Getter for the name of specific of IntegrationMethod. 180 204 *
Note:
See TracChangeset
for help on using the changeset viewer.