00001 // COCOA class header file 00002 //Id: GlobalOptionMgr.h 00003 //CAT: Model 00004 // 00005 // Class to manage the sets of fitted entries (one set per each measurement data set) 00006 // 00007 // History: v1.0 00008 // Pedro Arce 00009 00010 #ifndef _GlobalOptionMgr_HH 00011 #define _GlobalOptionMgr_HH 00012 00013 #include "Alignment/CocoaUtilities/interface/CocoaGlobals.h" 00014 #include <map> 00015 00016 class ALIFileIn; 00017 00018 class GlobalOptionMgr 00019 { 00020 private: 00021 GlobalOptionMgr(){ }; 00022 00023 public: 00024 //---------- Constructors / Destructor 00025 ~GlobalOptionMgr(){ }; 00026 static GlobalOptionMgr* getInstance(); 00027 00028 public: 00030 void setDefaultGlobalOptions(); 00031 00032 std::map< ALIstring, ALIdouble, std::less<ALIstring> >& GlobalOptions() { 00033 return theGlobalOptions; 00034 } 00035 00036 ALIdouble getGlobalOption( const ALIstring& sstr ); 00037 00039 int getGlobalOptionValue( const ALIstring& sstr, ALIdouble& val ); 00040 void setGlobalOption( const ALIstring& go, const ALIdouble val, ALIFileIn& filein ); 00041 00042 private: 00043 static GlobalOptionMgr* theInstance; 00045 std::map< ALIstring, ALIdouble, std::less<ALIstring> > theGlobalOptions; 00046 00047 }; 00048 00049 #endif 00050