Class Reference for E1039 Core & Analysis Software
SQDigitizer.cc
Go to the documentation of this file.
1 #include "SQDigitizer.h"
2 
6 #include <g4main/PHG4Hitv1.h>
9 #include <phool/PHNodeIterator.h>
10 #include <phool/PHCompositeNode.h>
11 #include <phool/PHIODataNode.h>
12 #include <phool/getClass.h>
13 
14 #include <geom_svc/GeomSvc.h>
15 
16 #include <iomanip>
17 #include <cmath>
18 #include <fstream>
19 #include <sstream>
20 #include <string>
21 #include <vector>
22 
23 #include <Geant4/G4SystemOfUnits.hh>
24 #include <Geant4/Randomize.hh>
25 
26 #include <TMath.h>
27 #include <TSQLServer.h>
28 #include <TSQLResult.h>
29 #include <TSQLRow.h>
30 
31 #ifndef __CINT__
32 #include <boost/lexical_cast.hpp>
33 #endif
34 
35 #ifndef __CINT__
37 {
38  if(Verbosity() > 2) std::cout << "SQDigitizer: Init " << detIDByName.size() << std::endl;
39 
40  p_geomSvc = GeomSvc::instance();
42  {
43  if(!enableDC1 && (i >= 7 && i <= 12)) continue;
45 
46  std::string detName = p_geomSvc->getDetectorName(i);
47  detIDByName[detName] = i;
48  }
49 
51 }
52 #endif
53 
54 SQDigitizer::SQDigitizer(const std::string& name, const int verbose):
55  SubsysReco(name),
56  p_geomSvc(nullptr),
57  enableDC1(false),
58  enableDPHodo(true),
59  digitize_secondaries(false)
60 {
61  detIDByName.clear();
62  Verbosity(0);
63 }
64 
66 {}
67 
69 {
70  if(Verbosity() > 2) std::cout << "SQDigitizer: InitRun " << detIDByName.size() << std::endl;
71 
72  PHNodeIterator iter(topNode);
73 
74  // Looking for the DST node
75  PHCompositeNode *dstNode;
76  dstNode = dynamic_cast<PHCompositeNode*>(iter.findFirst("PHCompositeNode", "DST"));
77  if(!dstNode)
78  {
79  std::cerr << Name() << " DST Node missing, abort." << std::endl;
81  }
82 
83  // Book input g4hits - everything should be present
84  hitContainerByName.clear();
85  for(auto it = detIDByName.begin(); it != detIDByName.end(); ++it)
86  {
87 
88  std::string detName = it->first;
89  std::string g4hitNodeName = "G4HIT_" + detName;
90  if(Verbosity() > 2)
91  {
92  std::cout << Name() << ": booking input G4HIT node " << g4hitNodeName << std::endl;
93  }
94 
95  PHG4HitContainer* hits = findNode::getClass<PHG4HitContainer>(topNode, g4hitNodeName.c_str());
96  if(!hits)
97  {
98  if(Verbosity() > 2) std::cout << Name() << ": Could not locate g4 hit node " << g4hitNodeName << std::endl;
99  //return Fun4AllReturnCodes::ABORTRUN;
100  }
101  else
102  {
103  hitContainerByName[detName] = hits;
104  }
105  }
106 
107  // Exit if there is nothing to work with
108  if(hitContainerByName.empty())
109  {
110  std::cerr << Name() << ": no g4hit node foud, abort " << std::endl;
112  }
113 
114  //Book output SQHits
115  digits = findNode::getClass<SQHitVector>(topNode, "SQHitVector");
116  if(!digits)
117  {
118  if(Verbosity() > 2) std::cout << Name() << ": booking output node SQHitVector" << std::endl;
119 
120  digits = new SQHitVector_v1();
121  PHIODataNode<PHObject>* newNode = new PHIODataNode<PHObject>(digits, "SQHitVector", "PHObject");
122  dstNode->addNode(newNode);
123  }
124 
126 }
127 
129 {
130  for(auto it = hitContainerByName.begin(); it != hitContainerByName.end(); ++it)
131  {
133  {
134  std::cout << Name() << ": Digitizing hits for " << it->first << std::endl;
135  }
136 
137  int detID = detIDByName[it->first];
139  {
140  digitizePlane(it->first);
141  }
142  else
143  {
144  digitizeEMCal(it->first);
145  }
146  }
147 
149 }
150 
151 void SQDigitizer::digitizePlane(const std::string& detName)
152 {
153  PHG4HitContainer* g4hits = hitContainerByName[detName];
154  if(g4hits->size() < 1) return;
155 
156  int detID = detIDByName[detName];
157  for(PHG4HitContainer::ConstIterator it = g4hits->getHits().first; it != g4hits->getHits().second; ++it)
158  {
159  const PHG4Hit& g4hit = *(it->second);
160 
161  int track_id = g4hit.get_trkid();
162  if (! digitize_secondaries && track_id < 0) continue; //only save primary track hits
163 
164  //get average momentum and position
165  double x = 0.5*(g4hit.get_x(0) + g4hit.get_x(1));
166  double y = 0.5*(g4hit.get_y(0) + g4hit.get_y(1));
167  if(!p_geomSvc->isInPlane(detID, x, y)) continue; //only save in-acceptance hits
168 
169  double z = 0.5*(g4hit.get_z(0) + g4hit.get_z(1));
170  double px = g4hit.get_px(0);
171  double py = g4hit.get_py(0);
172  double pz = g4hit.get_pz(0);
173 
174  double tx = px/pz;
175  double ty = py/pz;
176  double x0 = x - tx*z;
177  double y0 = y - ty*z;
178 
179  double z_ref = p_geomSvc->getPlanePosition(detID);
180  double x_ref = tx*z_ref + x0;
181  double y_ref = ty*z_ref + y0;
182 
183  double w = p_geomSvc->getInterception(detID, tx, ty, x0, y0);
184  int eleID = p_geomSvc->getExpElementID(detID, w);
185  if(eleID < 1 || eleID > p_geomSvc->getPlaneNElements(detID)) continue; //only save hits within active region
186 
187  SQMCHit_v1 digiHit;
188  digiHit.set_track_id(track_id);
189  digiHit.set_g4hit_id(g4hit.get_hit_id());
190  digiHit.set_truth_x(x_ref);
191  digiHit.set_truth_y(y_ref);
192  digiHit.set_truth_z(z_ref);
193  digiHit.set_truth_px(px);
194  digiHit.set_truth_py(py);
195  digiHit.set_truth_pz(pz);
196  digiHit.set_hit_id(digits->size());
197  digiHit.set_in_time(1);
198  digiHit.set_hodo_mask(0);
199  digiHit.set_detector_id(detID);
200  digiHit.set_element_id(eleID);
201  digiHit.set_tdc_time(0.);
202  digiHit.set_pos(p_geomSvc->getMeasurement(detID, eleID));
203 
204  //Drift distance is calculated differently for chamber and hodos
205  if(detID <= nChamberPlanes || (detID > nChamberPlanes+nHodoPlanes && detID <= nChamberPlanes+nHodoPlanes+nPropPlanes))
206  {
207  digiHit.set_drift_distance(p_geomSvc->getDCA(detID, eleID, tx, ty, x0, y0));
208  }
209  else
210  {
211  digiHit.set_drift_distance(0.);
212  }
213 
214  //push the hit to vector
215  digits->push_back(&digiHit);
216 
217  //special treatment for hodoscopes
218  double dw = w - digiHit.get_pos();
219  double hodoWidth = p_geomSvc->getCellWidth(detID)/2.;
220  double hodoOverlap = p_geomSvc->getPlaneOverlap(detID);
221  if(fabs(dw) > hodoWidth - hodoOverlap && fabs(dw) < hodoWidth) //hit happens in the overlap region
222  {
223  if(dw < 0. && eleID != 1)
224  {
225  digiHit.set_element_id(eleID-1);
226  digiHit.set_pos(p_geomSvc->getMeasurement(detID, eleID-1));
227  digiHit.set_hit_id(digits->size());
228 
229  digits->push_back(&digiHit);
230  }
231  else if(dw > 0. && eleID != p_geomSvc->getPlaneNElements(detID))
232  {
233  digiHit.set_element_id(eleID+1);
234  digiHit.set_pos(p_geomSvc->getMeasurement(detID, eleID+1));
235  digiHit.set_hit_id(digits->size());
236 
237  digits->push_back(&digiHit);
238  }
239  }
240  }
241 }
242 
243 void SQDigitizer::digitizeEMCal(const std::string& detName)
244 {
245  PHG4HitContainer* g4hits = hitContainerByName[detName];
246  if(g4hits->size() < 1) return;
247 
248  int detID = detIDByName[detName];
249  std::map<int, SQCalHit_v1> digiHits; //key -> towerID, val -> calHit
250  for(PHG4HitContainer::ConstIterator it = g4hits->getHits().first; it != g4hits->getHits().second; ++it)
251  {
252  const PHG4Hit& g4hit = *(it->second);
253 
254  int towerID = g4hit.get_scint_id();
255  if(digiHits.find(towerID) == digiHits.end())
256  {
257  SQCalMCHit_v1 digiHit;
258  digiHit.set_detector_id(detID);
259  digiHit.set_element_id(towerID);
260  digiHit.set_shower_id(g4hit.get_shower_id());
261  digiHit.set_track_id(g4hit.get_trkid());
262  digiHit.set_g4hit_id(g4hit.get_hit_id());
263 
264  digiHit.set_in_time(1);
265  digiHit.set_hodo_mask(0);
266  digiHit.set_tdc_time(0.);
267  digiHit.set_drift_distance(0.);
268  digiHit.set_pos(0.);
269 
270  digiHit.set_truth_x(g4hit.get_x(0));
271  digiHit.set_truth_y(g4hit.get_y(0));
272  digiHit.set_truth_z(g4hit.get_z(0));
273  digiHit.set_truth_px(g4hit.get_px(0));
274  digiHit.set_truth_py(g4hit.get_py(0));
275  digiHit.set_truth_pz(g4hit.get_pz(0));
276 
277  digiHits[towerID] = digiHit;
278  }
279 
280  digiHits[towerID].add_cell(g4hit.get_index_l(), g4hit.get_edep());
281  }
282 
283  for(auto iter = digiHits.begin(); iter != digiHits.end(); ++iter)
284  {
285  //iter->second.identify();
286  iter->second.set_hit_id(digits->size());
287  digits->push_back(&(iter->second));
288  }
289 }
#define nPropPlanes
Definition: GlobalConsts.h:8
#define nChamberPlanes
Definition: GlobalConsts.h:6
#define nDarkPhotonPlanes
Definition: GlobalConsts.h:9
#define nHodoPlanes
Definition: GlobalConsts.h:7
virtual const std::string Name() const
Returns the name of this module.
Definition: Fun4AllBase.h:23
@ VERBOSITY_A_LOT
Output a lot of messages.
Definition: Fun4AllBase.h:48
virtual int Verbosity() const
Gets the verbosity of this module.
Definition: Fun4AllBase.h:64
double getPlanePosition(int detectorID) const
Definition: GeomSvc.h:235
static GeomSvc * instance()
singlton instance
Definition: GeomSvc.cxx:212
double getPlaneOverlap(int detectorID) const
Definition: GeomSvc.h:237
void getMeasurement(int detectorID, int elementID, double &measurement, double &dmeasurement)
Convert the detectorID and elementID to the actual hit position.
Definition: GeomSvc.cxx:651
int getPlaneNElements(int detectorID) const
Definition: GeomSvc.h:260
int getExpElementID(int detectorID, double pos_exp)
Definition: GeomSvc.cxx:677
std::string getDetectorName(const int &detectorID) const
Definition: GeomSvc.h:223
double getInterception(int detectorID, double tx, double ty, double x0, double y0) const
Get the interception of a line an a plane.
Definition: GeomSvc.h:280
double getDCA(int detectorID, int elementID, double tx, double ty, double x0, double y0)
Definition: GeomSvc.cxx:865
bool isInPlane(int detectorID, double x, double y)
See if a point is in a plane.
Definition: GeomSvc.cxx:622
double getCellWidth(int detectorID) const
Definition: GeomSvc.h:238
PHBoolean addNode(PHNode *)
Map::const_iterator ConstIterator
unsigned int size(void) const
ConstRange getHits(const unsigned int detid) const
return all hits matching a given detid
virtual float get_py(const int i) const
Definition: PHG4Hit.h:25
virtual float get_z(const int i) const
Definition: PHG4Hit.h:23
virtual float get_edep() const
Definition: PHG4Hit.h:31
virtual int get_shower_id() const
Definition: PHG4Hit.h:38
virtual float get_pz(const int i) const
Definition: PHG4Hit.h:26
virtual float get_px(const int i) const
Definition: PHG4Hit.h:24
virtual PHG4HitDefs::keytype get_hit_id() const
Definition: PHG4Hit.h:36
virtual float get_y(const int i) const
Definition: PHG4Hit.h:22
virtual float get_x(const int i) const
Definition: PHG4Hit.h:21
virtual int get_scint_id() const
Definition: PHG4Hit.h:39
virtual int get_index_l() const
Definition: PHG4Hit.h:49
virtual int get_trkid() const
Definition: PHG4Hit.h:41
PHNode * findFirst(const std::string &, const std::string &)
virtual void add_cell(short i, float edep)
Definition: SQCalHit_v1.cxx:45
virtual void set_element_id(const short id)
Definition: SQCalHit_v1.h:32
virtual void set_detector_id(const short a)
Definition: SQCalHit_v1.h:29
virtual void set_truth_y(const float a)
Definition: SQCalMCHit_v1.h:37
virtual void set_truth_pz(const float a)
Definition: SQCalMCHit_v1.h:49
virtual void set_truth_px(const float a)
Definition: SQCalMCHit_v1.h:43
virtual void set_truth_py(const float a)
Definition: SQCalMCHit_v1.h:46
virtual void set_truth_z(const float a)
Definition: SQCalMCHit_v1.h:40
virtual void set_track_id(const int a)
Definition: SQCalMCHit_v1.h:25
virtual void set_shower_id(const int a)
Definition: SQCalMCHit_v1.h:28
virtual void set_g4hit_id(const PHG4HitDefs::keytype a)
Definition: SQCalMCHit_v1.h:31
virtual void set_truth_x(const float a)
Definition: SQCalMCHit_v1.h:34
int Init(PHCompositeNode *topNode)
Definition: SQDigitizer.cc:36
int InitRun(PHCompositeNode *topNode)
module initialization
Definition: SQDigitizer.cc:68
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
virtual ~SQDigitizer()
Definition: SQDigitizer.cc:65
virtual void push_back(const SQHit *hit)=0
virtual size_t size() const =0
virtual void set_drift_distance(const float a)
Definition: SQHit_v1.h:49
virtual void set_pos(const float a)
Definition: SQHit_v1.h:52
virtual float get_pos() const
Return the absolute position of this hit. Probably the value is not properly set at present.
Definition: SQHit_v1.h:51
virtual void set_tdc_time(const float a)
Definition: SQHit_v1.h:46
virtual void set_hodo_mask(const bool a)
Definition: SQHit_v1.h:58
virtual void set_hit_id(const int a)
Definition: SQHit_v1.h:34
virtual void set_element_id(const short id)
Definition: SQHit_v1.h:40
virtual void set_detector_id(const short a)
Definition: SQHit_v1.h:37
virtual void set_in_time(const bool a)
Definition: SQHit_v1.h:55
virtual void set_pos(const float a)
Definition: SQHit.h:61
virtual void set_tdc_time(const float a)
Definition: SQHit.h:55
virtual void set_hodo_mask(const bool a)
Definition: SQHit.h:94
virtual void set_drift_distance(const float a)
Definition: SQHit.h:58
virtual void set_in_time(const bool a)
Definition: SQHit.h:91
virtual void set_truth_py(const float a)
Definition: SQMCHit_v1.h:50
virtual void set_truth_x(const float a)
Definition: SQMCHit_v1.h:38
virtual void set_g4hit_id(const PHG4HitDefs::keytype a)
Definition: SQMCHit_v1.h:35
virtual void set_track_id(const int a)
Definition: SQMCHit_v1.h:32
virtual void set_truth_y(const float a)
Definition: SQMCHit_v1.h:41
virtual void set_truth_pz(const float a)
Definition: SQMCHit_v1.h:53
virtual void set_truth_z(const float a)
Definition: SQMCHit_v1.h:44
virtual void set_truth_px(const float a)
Definition: SQMCHit_v1.h:47