Class Reference for E1039 Core & Analysis Software
PHG4DetectorGroupSubsystem.h
Go to the documentation of this file.
1 #ifndef PHG4DetectorGroupSubsystem_h
2 #define PHG4DetectorGroupSubsystem_h
3 
4 #include <g4main/PHG4Subsystem.h>
5 
6 #include <map>
7 #include <set>
8 #include <string>
9 
11 
13 {
14  public:
15  enum FILE_TYPE
16  {
17  none = 0,
18  xml = 1,
19  root = 2
20  };
21 
23 // stupid rootcint does not support final keyword
24 #ifndef __CINT__
25  int Init(PHCompositeNode *) final;
26  int InitRun(PHCompositeNode *) final;
27 #else
28  int Init(PHCompositeNode *);
29  int InitRun(PHCompositeNode *);
30 #endif
31 
33  {
34  return 0;
35  }
36  virtual int InitSubsystem(PHCompositeNode *) { return 0; }
37  void OverlapCheck(const bool chk = true) { overlapcheck = chk; }
38  bool CheckOverlap() const { return overlapcheck; }
39  PHG4ParametersContainer *GetParamsContainer() const { return paramscontainer; }
40  // Get/Set parameters from macro
41  void set_double_param(const int detid, const std::string &name, const double dval);
42  double get_double_param(const int detid, const std::string &name) const;
43  void set_int_param(const int detid, const std::string &name, const int ival);
44  int get_int_param(const int detid, const std::string &name) const;
45  void set_string_param(const int detid, const std::string &name, const std::string &sval);
46  std::string get_string_param(const int detid, const std::string &name) const;
47 
48  void UseDB(const int i = 1) { usedb = i; }
49  int ReadDB() const { return usedb; }
50  FILE_TYPE get_filetype() const { return filetype; }
51  void UseCalibFiles(const FILE_TYPE ftyp) { filetype = ftyp; }
52  int SaveParamsToDB();
53  int ReadParamsFromDB(const std::string &name, const int issuper);
54  int SaveParamsToFile(const FILE_TYPE ftyp);
55  int ReadParamsFromFile(const std::string &name, const FILE_TYPE ftyp, const int issuper);
56  void SetCalibrationFileDir(const std::string &calibdir) { calibfiledir = calibdir; }
58 
59  void SetActive(const int detid, const int i = 1);
60  void SetAbsorberActive(const int detid, const int i = 1);
61  void SetAbsorberTruth(const int detid, const int i = 1);
62  void BlackHole(const int detid, const int i = 1);
63  void SuperDetector(const std::string &name);
64  const std::string SuperDetector() const { return superdetector; }
65  int GetLayer() const { return layer; }
66  virtual void SetDefaultParameters() = 0; // this one has to be implemented by the daughter
67  protected: // those cannot be executed on the cmd line
68  PHG4DetectorGroupSubsystem(const std::string &name = "GenericSubsystem", const int lyr = 0);
69  // these initialize the defaults and add new entries to the
70  // list of variables. This should not be possible from the macro to
71  // prevent abuse (this makes the list of possible parameters deterministic)
72  void InitializeParameters();
73  void AddDetId(const int i) { layers.insert(i); }
74  std::pair<std::set<int>::const_iterator, std::set<int>::const_iterator> GetDetIds() const
75  {
76  return std::make_pair(layers.begin(), layers.end());
77  }
78  void set_default_double_param(const int detid, const std::string &name, const double dval);
79  void set_default_int_param(const int detid, const std::string &name, const int ival);
80  void set_default_string_param(const int detid, const std::string &name, const std::string &sval);
81  int BeginRunExecuted() const { return beginrunexecuted; }
82  void PrintDefaultParams() const;
83  void PrintMacroParams() const;
84 
85  private:
86  PHG4ParametersContainer *paramscontainer;
87  PHG4ParametersContainer *paramscontainer_default;
88  PHCompositeNode *savetopNode;
89  bool overlapcheck;
90  int layer;
91  int usedb;
92  int beginrunexecuted;
93  FILE_TYPE filetype;
94  std::string superdetector;
95  std::string calibfiledir;
96 
97  std::set<int> layers;
98 
99  std::map<int, std::map<const std::string, double>> dparams;
100  std::map<int, std::map<const std::string, int>> iparams;
101  std::map<int, std::map<const std::string, std::string>> cparams;
102 
103  std::map<int, std::map<const std::string, double>> default_double;
104  std::map<int, std::map<const std::string, int>> default_int;
105  std::map<int, std::map<const std::string, std::string>> default_string;
106 };
107 
108 #endif
void SetCalibrationFileDir(const std::string &calibdir)
int ReadParamsFromDB(const std::string &name, const int issuper)
void set_double_param(const int detid, const std::string &name, const double dval)
std::pair< std::set< int >::const_iterator, std::set< int >::const_iterator > GetDetIds() const
int SaveParamsToFile(const FILE_TYPE ftyp)
void BlackHole(const int detid, const int i=1)
void SetAbsorberTruth(const int detid, const int i=1)
double get_double_param(const int detid, const std::string &name) const
void set_int_param(const int detid, const std::string &name, const int ival)
void SetAbsorberActive(const int detid, const int i=1)
const std::string SuperDetector() const
virtual void SetDefaultParameters()=0
void set_default_double_param(const int detid, const std::string &name, const double dval)
void UseCalibFiles(const FILE_TYPE ftyp)
PHG4DetectorGroupSubsystem(const std::string &name="GenericSubsystem", const int lyr=0)
int get_int_param(const int detid, const std::string &name) const
PHG4ParametersContainer * GetParamsContainer() const
int InitRun(PHCompositeNode *) final
int ReadParamsFromFile(const std::string &name, const FILE_TYPE ftyp, const int issuper)
void set_default_int_param(const int detid, const std::string &name, const int ival)
std::string get_string_param(const int detid, const std::string &name) const
virtual int InitRunSubsystem(PHCompositeNode *)
void SetActive(const int detid, const int i=1)
void set_default_string_param(const int detid, const std::string &name, const std::string &sval)
void set_string_param(const int detid, const std::string &name, const std::string &sval)
virtual int InitSubsystem(PHCompositeNode *)
void OverlapCheck(const bool chk=true)
int Init(PHCompositeNode *) final