#include "IParametersOptionManager.hxx" bool COMET::IParametersOptionManager::IsRelevantOption(std::string option){ if(option == "par_override") return true; else return false; return false; } void COMET::IParametersOptionManager::UseRelevantOption(std::string value){ COMETLog("Using the runtime parameter override file: " << value); COMET::IOARuntimeParameters::Get().ReadParamOverrideFile(value); } void COMET::IParametersOptionManager::Usage(){ std::cout << "Options provided by IParametersOptionManager:" << std::endl; std::cout << " -O par_override= : sets an override parameter file." << std::endl; std::cout << " This allows the user to override the default " << "sets of parameters using the specified file"<< std::endl; }