File indexing completed on 2024-09-07 04:34:26
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef ParameterMgr_h
0009 #define ParameterMgr_h
0010
0011 #include "Alignment/CocoaUtilities/interface/CocoaGlobals.h"
0012 #include <map>
0013 typedef std::map<ALIstring, ALIdouble, std::less<ALIstring> > msd;
0014
0015 class ParameterMgr {
0016 private:
0017 ParameterMgr() {}
0018
0019 public:
0020 static ParameterMgr* getInstance();
0021 ALIdouble getVal(const ALIstring& str, const ALIdouble dimensionFactor = 1.);
0022
0023 void addParameter(const ALIstring& name, const ALIstring& valstr);
0024 void setRandomSeed(const long seed);
0025 void addRandomGaussParameter(const ALIstring& name, const ALIstring& valMean, const ALIstring& valStdDev);
0026 void addRandomFlatParameter(const ALIstring& name, const ALIstring& valMean, const ALIstring& valInterval);
0027
0028
0029 ALIint getParameterValue(const ALIstring& name, ALIdouble& val);
0030
0031 private:
0032 static ParameterMgr* theInstance;
0033
0034 msd theParameters;
0035 };
0036
0037 #endif