Class Reference for E1039 Core & Analysis Software
recoConsts.h
Go to the documentation of this file.
1 #ifndef RECOCONSTS_H__
2 #define RECOCONSTS_H__
3 
4 #include <string>
5 #include "PHFlag.h"
6 
17 class recoConsts: public PHFlag
18 {
19 public:
20  static recoConsts* instance();
21 
23  void set_defaults();
24 
26  void init(int runNo = 0, bool verbose = false);
27 
29  void init(const std::string& setname, bool verbose = false);
30 
32  void initfile(const std::string& filename, bool verbose = false);
33 
35  virtual void set_CharFlag(const std::string& name, const std::string& flag);
36 
38  void Print() const;
39 
40 protected:
41  recoConsts();
42  std::string ExpandEnvironmentals(const std::string& input);
43 
45 
46 };
47 
48 #endif /* __RECOCONSTS_H__ */
Definition: PHFlag.h:20
void Print() const
print all the parameters
Definition: recoConsts.cc:214
static recoConsts * __instance
Definition: recoConsts.h:44
void initfile(const std::string &filename, bool verbose=false)
initialize by reading a file
Definition: recoConsts.cc:208
void init(int runNo=0, bool verbose=false)
initialize the constants by the runNo - not implemented yet
Definition: recoConsts.cc:171
void set_defaults()
set the default value for all the constants needed - user is supposed to add a default value here to ...
Definition: recoConsts.cc:40
std::string ExpandEnvironmentals(const std::string &input)
Definition: recoConsts.cc:27
static recoConsts * instance()
Definition: recoConsts.cc:7
virtual void set_CharFlag(const std::string &name, const std::string &flag)
overide the virtual function to expand the environmental variables
Definition: recoConsts.cc:21