#include "TParametersOptionManager.hxx" bool TParametersOptionManager::IsRelevantOption(std::string option){ if(option == "par_override") return true; else return false; return false; } void TParametersOptionManager::UseRelevantOption(std::string value){ std::cout << "Using the runtime parameter override file: " << value << std::endl; TRuntimeParameters::Get().ReadParamOverrideFile(value); } void TParametersOptionManager::Usage(){ std::cout << "Options provided by TParametersOptionManager:" << 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; }