Class Reference for E1039 Core & Analysis Software
SQDigitizer.h
Go to the documentation of this file.
1 #ifndef SQDigitizer_H
2 #define SQDigitizer_H
3 
4 #include <fun4all/SubsysReco.h>
5 #include <geom_svc/GeomSvc.h>
6 
7 #include <vector>
8 #include <string>
9 #include <map>
10 
11 #ifndef __CINT__
12 #include <boost/array.hpp>
13 #include <Geant4/G4ThreeVector.hh>
14 #endif
15 
16 #include <TSpline.h>
17 
18 class PHG4Hit;
19 class SQHit;
20 class SQHitVector;
21 class PHG4HitContainer;
22 
23 class SQDigitizer: public SubsysReco
24 {
25 public:
26  SQDigitizer(const std::string& name = "SQDigitizer", const int verbose = 0);
27  virtual ~SQDigitizer();
28 
29 #ifndef __CINT__
30  int Init(PHCompositeNode* topNode);
31 #endif
32 
34  int InitRun(PHCompositeNode* topNode);
35 
37  int process_event(PHCompositeNode* topNode);
38 
40  void digitizePlane(const std::string& detName);
41 
43  void digitizeEMCal(const std::string& detName);
44 
46  int getTriggerLv(int detectorID) { return p_geomSvc->getTriggerLv(detectorID); }
47 
49  void registerEMCal(std::string ecalName, int ecalID = 100) { detIDByName[ecalName] = ecalID; }
50 
52  void set_enable_st1dc(const bool en) { enableDC1 = en; }
53  void set_enable_dphodo(const bool en) { enableDPHodo = en; }
54 
55  void set_digitize_secondaries(const bool val) { digitize_secondaries = val; }
56 
57 private:
59  GeomSvc* p_geomSvc;
60 
62  SQHitVector* digits;
63 
65  std::map<std::string, PHG4HitContainer*> hitContainerByName;
66 
68  std::map<std::string, int> detIDByName;
69 
71  bool enableDC1;
72  bool enableDPHodo;
73  bool digitize_secondaries;
74 };
75 
76 #endif
User interface class about the geometry of detector planes.
Definition: GeomSvc.h:164
int getTriggerLv(int detectorID)
Definition: GeomSvc.h:277
int getTriggerLv(int detectorID)
Get the trigger level by detectorID.
Definition: SQDigitizer.h:46
int Init(PHCompositeNode *topNode)
Definition: SQDigitizer.cc:36
int InitRun(PHCompositeNode *topNode)
module initialization
Definition: SQDigitizer.cc:68
void set_enable_dphodo(const bool en)
Definition: SQDigitizer.h:53
SQDigitizer(const std::string &name="SQDigitizer", const int verbose=0)
Definition: SQDigitizer.cc:54
void digitizePlane(const std::string &detName)
main external call, fill the digi hit vector
Definition: SQDigitizer.cc:151
int process_event(PHCompositeNode *topNode)
event processing
Definition: SQDigitizer.cc:128
void digitizeEMCal(const std::string &detName)
digitize the emcal hits
Definition: SQDigitizer.cc:243
void set_enable_st1dc(const bool en)
enable/disable certain detectors
Definition: SQDigitizer.h:52
virtual ~SQDigitizer()
Definition: SQDigitizer.cc:65
void registerEMCal(std::string ecalName, int ecalID=100)
Register additional EMCal detector for digitizing.
Definition: SQDigitizer.h:49
void set_digitize_secondaries(const bool val)
Definition: SQDigitizer.h:55
An SQ interface class to hold a list of SQHit objects.
Definition: SQHitVector.h:32
An SQ interface class to hold one detector hit.
Definition: SQHit.h:20