Class Reference for E1039 Core & Analysis Software
PatternDBGen.cxx
Go to the documentation of this file.
1 
10 #include "PatternDBGen.h"
11 #include "SRecEvent.h"
12 
13 #include <interface_main/SQHit.h>
22 
23 #include <geom_svc/GeomSvc.h>
24 
26 #include <fun4all/PHTFileServer.h>
27 #include <phool/PHNodeIterator.h>
28 #include <phool/PHIODataNode.h>
29 #include <phool/getClass.h>
30 
33 #include <g4main/PHG4Hit.h>
34 #include <g4main/PHG4Particle.h>
35 #include <g4main/PHG4HitDefs.h>
36 #include <g4main/PHG4VtxPoint.h>
37 
38 #include <TFile.h>
39 #include <TTree.h>
40 
41 #include <cstring>
42 #include <cmath>
43 #include <cfloat>
44 #include <stdexcept>
45 #include <limits>
46 #include <tuple>
47 
48 #include <boost/lexical_cast.hpp>
49 
50 #define LogDebug(exp) std::cout<<"DEBUG: " <<__FILE__<<": "<<__LINE__<<": "<< exp << std::endl
51 #define LogError(exp) std::cout<<"ERROR: " <<__FILE__<<": "<<__LINE__<<": "<< exp << std::endl
52 #define LogWarning(exp) std::cout<<"WARNING: "<<__FILE__<<": "<<__LINE__<<": "<< exp << std::endl
53 
54 using namespace std;
55 
56 PatternDBGen::PatternDBGen(const std::string& name) :
57 SubsysReco(name),
58 _hit_container_type("Vector"),
59 _event(0),
60 _event_header(nullptr),
61 _hit_map(nullptr),
62 _hit_vector(nullptr),
63 _out_name("pattern_db.root")
64 {
65 }
66 
69 }
70 
72 
73  ResetEvalVars();
74  InitEvalTree();
75 
76  p_geomSvc = GeomSvc::instance();
77 
78  int ret = GetNodes(topNode);
79  if(ret != Fun4AllReturnCodes::EVENT_OK) return ret;
80 
82 }
83 
86 
87  ret = TruthEval(topNode);
88  if (ret != Fun4AllReturnCodes::EVENT_OK) return ret;
89 
90  ++_event;
91 
92  return ret;
93 }
94 
95 int PatternDBGen::TruthEval(PHCompositeNode* topNode)
96 {
98  std::cout << "Entering PatternDBGen::TruthEval: " << _event << std::endl;
99 
100  PHG4HitContainer *D1X_hits = findNode::getClass<PHG4HitContainer>(topNode, "G4HIT_D0X");
101  if (!D1X_hits)
102  D1X_hits = findNode::getClass<PHG4HitContainer>(topNode, "G4HIT_D1X");
103 
104  if (!D1X_hits)
105  {
107  cout << Name() << " Could not locate g4 hit node " << "G4HIT_D0X or G4HIT_D1X" << endl;
108  }
109 
110  ResetEvalVars();
111 
112  std::map<int, int> parID_nhits_dc;
113  std::map<int, int> parID_nhits_hodo;
114  std::map<int, int> parID_nhits_prop;
115 
116  std::map<int, std::map<int, int> > parID_detid_elmid;
117 
118  typedef std::tuple<int, int> ParDetPair;
119  std::map<ParDetPair, int> parID_detID_ihit;
120 
121  std::map<int, int> hitID_ihit;
122 
123  if(_hit_vector) {
124  for(int ihit=0; ihit<_hit_vector->size(); ++ihit) {
125  SQHit *hit = _hit_vector->at(ihit);
126 
128  LogInfo(hit->get_detector_id());
129  hit->identify();
130  }
131 
132  if(_truth) {
133  int track_id = hit->get_track_id();
134  int det_id = hit->get_detector_id();
135  parID_detID_ihit[std::make_tuple(track_id, det_id)] = ihit;
136 
137  auto detid_elmid_iter = parID_detid_elmid.find(track_id);
138  if(detid_elmid_iter != parID_detid_elmid.end()) {
139  detid_elmid_iter->second.insert(std::pair<int, int>(det_id, hit->get_element_id()));
140  } else {
141  std::map<int, int> detid_elmid;
142  detid_elmid.insert(std::pair<int, int>(det_id, hit->get_element_id()));
143  parID_detid_elmid[track_id] = detid_elmid;
144  }
145 
146  if(hit->get_detector_id() >= 1 and hit->get_detector_id() <=30) {
147  if(parID_nhits_dc.find(track_id)!=parID_nhits_dc.end())
148  parID_nhits_dc[track_id] = parID_nhits_dc[track_id]+1;
149  else
150  parID_nhits_dc[track_id] = 1;
151  }
152  if(hit->get_detector_id() >= 31 and hit->get_detector_id() <=46) {
153  if(parID_nhits_hodo.find(track_id)!=parID_nhits_hodo.end())
154  parID_nhits_hodo[track_id] = parID_nhits_hodo[track_id]+1;
155  else
156  parID_nhits_hodo[track_id] = 1;
157  }
158  if(hit->get_detector_id() >= 47 and hit->get_detector_id() <=54) {
159  if(parID_nhits_prop.find(track_id)!=parID_nhits_prop.end())
160  parID_nhits_prop[track_id] = parID_nhits_prop[track_id]+1;
161  else
162  parID_nhits_prop[track_id] = 1;
163  }
164  }
165  }
166  }
167 
168  if(Verbosity() >= Fun4AllBase::VERBOSITY_A_LOT) LogInfo("ghit eval finished");
169 
170  n_tracks = 0;
171  if(_truth) {
172  for(auto iter=_truth->GetPrimaryParticleRange().first;
173  iter!=_truth->GetPrimaryParticleRange().second;
174  ++iter) {
175  PHG4Particle * par = iter->second;
176 
177  pid[n_tracks] = par->get_pid();
178 
179  int vtx_id = par->get_vtx_id();
180  PHG4VtxPoint* vtx = _truth->GetVtx(vtx_id);
181  gvx[n_tracks] = vtx->get_x();
182  gvy[n_tracks] = vtx->get_y();
183  gvz[n_tracks] = vtx->get_z();
184 
185  TVector3 mom(par->get_px(), par->get_py(), par->get_pz());
186  gpx[n_tracks] = par->get_px();
187  gpy[n_tracks] = par->get_py();
188  gpz[n_tracks] = par->get_pz();
189  gpt[n_tracks] = mom.Pt();
190  geta[n_tracks] = mom.Eta();
191  gphi[n_tracks] = mom.Phi();
192 
193  int parID = par->get_track_id();
194 
195  // Get truth track par at station 1
196  // trackID + detID -> SQHit -> PHG4Hit -> momentum
197  for(int det_id=7; det_id<=12; ++det_id) {
198  auto iter = parID_detID_ihit.find(std::make_tuple(parID, det_id));
199  if(iter != parID_detID_ihit.end()) {
200  if(verbosity >= 2) {
201  LogDebug("ihit: " << iter->second);
202  }
203  SQHit *hit = _hit_vector->at(iter->second);
204  if(verbosity >= 2) {
205  hit->identify();
206  }
207  if(hit and D1X_hits) {
208  PHG4Hit* g4hit = D1X_hits->findHit(hit->get_g4hit_id());
209  if (g4hit) {
210  if(verbosity >= 2) {
211  g4hit->identify();
212  }
213  gx_st1[n_tracks] = g4hit->get_x(0);
214  gy_st1[n_tracks] = g4hit->get_y(0);
215  gz_st1[n_tracks] = g4hit->get_z(0);
216 
217  gpx_st1[n_tracks] = g4hit->get_px(0)/1000.;
218  gpy_st1[n_tracks] = g4hit->get_py(0)/1000.;
219  gpz_st1[n_tracks] = g4hit->get_pz(0)/1000.;
220  break;
221  }
222  }
223  }
224  }
225 
226  gnhits[n_tracks] =
227  parID_nhits_dc[parID] +
228  parID_nhits_hodo[parID] +
229  parID_nhits_prop[parID];
230 
231  gndc[n_tracks] = parID_nhits_dc[parID];
232  gnhodo[n_tracks] = parID_nhits_hodo[parID];
233  gnprop[n_tracks] = parID_nhits_prop[parID];
234 
235  for(auto detid_elmid : parID_detid_elmid[parID]) {
236  int detid = detid_elmid.first;
237  int elmid = detid_elmid.second;
238  if(detid>=55) {
239  LogWarning("detid>=55");
240  continue;
241  }
242  gelmid[n_tracks][detid] = elmid;
243  }
244 
245  if(Verbosity() >= Fun4AllBase::VERBOSITY_A_LOT) LogInfo("particle eval finished");
246 
247  ++n_tracks;
248  if(n_tracks>=1000) break;
249  }
250  }
251 
252  _tout_truth->Fill();
253 
255  std::cout << "Leaving PatternDBGen::TruthEval: " << _event << std::endl;
256 
258 }
259 
262  std::cout << "PatternDBGen::End" << std::endl;
263 
264  PHTFileServer::get().cd(_out_name.c_str());
265  _tout_truth->Write();
266 
268 }
269 
271  PHTFileServer::get().open(_out_name.c_str(), "RECREATE");
272 
273  _tout_truth = new TTree("T", "Truth Eval");
274 // _tout_truth->Branch("runID", &run_id, "runID/I");
275 // _tout_truth->Branch("spillID", &spill_id, "spillID/I");
276 // _tout_truth->Branch("liveProton", &target_pos, "liveProton/F");
277 // _tout_truth->Branch("eventID", &event_id, "eventID/I");
278 //
279  _tout_truth->Branch("n_tracks", &n_tracks, "n_tracks/I");
280  _tout_truth->Branch("pid", pid, "pid[n_tracks]/I");
281 // _tout_truth->Branch("gvx", gvx, "gvx[n_tracks]/F");
282 // _tout_truth->Branch("gvy", gvy, "gvy[n_tracks]/F");
283 // _tout_truth->Branch("gvz", gvz, "gvz[n_tracks]/F");
284 // _tout_truth->Branch("gpx", gpx, "gpx[n_tracks]/F");
285 // _tout_truth->Branch("gpy", gpy, "gpy[n_tracks]/F");
286 // _tout_truth->Branch("gpz", gpz, "gpz[n_tracks]/F");
287 // _tout_truth->Branch("gpt", gpt, "gpt[n_tracks]/F");
288 // _tout_truth->Branch("geta", geta, "geta[n_tracks]/F");
289 // _tout_truth->Branch("gphi", gphi, "gphi[n_tracks]/F");
290 // _tout_truth->Branch("gx_st1", gx_st1, "gx_st1[n_tracks]/F");
291 // _tout_truth->Branch("gy_st1", gy_st1, "gy_st1[n_tracks]/F");
292 // _tout_truth->Branch("gz_st1", gz_st1, "gz_st1[n_tracks]/F");
293 // _tout_truth->Branch("gpx_st1", gpx_st1, "gpx_st1[n_tracks]/F");
294 // _tout_truth->Branch("gpy_st1", gpy_st1, "gpy_st1[n_tracks]/F");
295 // _tout_truth->Branch("gpz_st1", gpz_st1, "gpz_st1[n_tracks]/F");
296 // _tout_truth->Branch("gnhits", gnhits, "gnhits[n_tracks]/I");
297  _tout_truth->Branch("gndc", gndc, "gndc[n_tracks]/I");
298 // _tout_truth->Branch("gnhodo", gnhodo, "gnhodo[n_tracks]/I");
299 // _tout_truth->Branch("gnprop", gnprop, "gnprop[n_tracks]/I");
300  _tout_truth->Branch("gelmid", gelmid, "gelmid[n_tracks][55]/I");
301 
302  return 0;
303 }
304 
306  run_id = std::numeric_limits<int>::max();
307  spill_id = std::numeric_limits<int>::max();
308  target_pos = std::numeric_limits<float>::max();
309  event_id = std::numeric_limits<int>::max();
310 
311  n_tracks = 0;
312  for(int i=0; i<1000; ++i) {
313  pid[i] = std::numeric_limits<int>::max();
314  gvx[i] = std::numeric_limits<float>::max();
315  gvy[i] = std::numeric_limits<float>::max();
316  gvz[i] = std::numeric_limits<float>::max();
317  gpx[i] = std::numeric_limits<float>::max();
318  gpy[i] = std::numeric_limits<float>::max();
319  gpz[i] = std::numeric_limits<float>::max();
320  gpt[i] = std::numeric_limits<float>::max();
321  geta[i] = std::numeric_limits<float>::max();
322  gphi[i] = std::numeric_limits<float>::max();
323  gnhits[i] = std::numeric_limits<int>::max();
324  gx_st1[i] = std::numeric_limits<float>::max();
325  gy_st1[i] = std::numeric_limits<float>::max();
326  gz_st1[i] = std::numeric_limits<float>::max();
327  gpx_st1[i] = std::numeric_limits<float>::max();
328  gpy_st1[i] = std::numeric_limits<float>::max();
329  gpz_st1[i] = std::numeric_limits<float>::max();
330  gndc[i] = std::numeric_limits<int>::max();
331  gnhodo[i] = std::numeric_limits<int>::max();
332  gnprop[i] = std::numeric_limits<int>::max();
333 
334  for(int j=0; j<55; ++j) {
335  gelmid[i][j] = std::numeric_limits<int>::max();
336  }
337  }
338 
339  return 0;
340 }
341 
342 int PatternDBGen::GetNodes(PHCompositeNode* topNode) {
343 
344  if(_hit_container_type.find("Map") != std::string::npos) {
345  _hit_map = findNode::getClass<SQHitMap>(topNode, "SQHitMap");
346  if (!_hit_map) {
347  LogError("!_hit_map");
349  }
350  }
351 
352  if(_hit_container_type.find("Vector") != std::string::npos) {
353  _hit_vector = findNode::getClass<SQHitVector>(topNode, "SQHitVector");
354  if (!_hit_vector) {
355  LogError("!_hit_vector");
357  }
358  }
359 
360  _truth = findNode::getClass<PHG4TruthInfoContainer>(topNode, "G4TruthInfo");
361  if (!_truth) {
362  LogError("!_truth");
364  }
365 
367 }
368 
369 
370 
371 
372 
373 
374 
#define LogInfo(message)
Definition: DbSvc.cc:15
TFile clean handling.
#define LogWarning(exp)
#define LogDebug(exp)
#define LogError(exp)
int verbosity
The verbosity level. 0 means not verbose at all.
Definition: Fun4AllBase.h:75
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
static GeomSvc * instance()
singlton instance
Definition: GeomSvc.cxx:212
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_pz(const int i) const
Definition: PHG4Hit.h:26
virtual float get_px(const int i) const
Definition: PHG4Hit.h:24
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 void identify(std::ostream &os=std::cout) const
Definition: PHG4Hit.cc:35
virtual int get_track_id() const
Definition: PHG4Particle.h:21
virtual int get_pid() const
Definition: PHG4Particle.h:14
virtual double get_px() const
Definition: PHG4Particle.h:16
virtual int get_vtx_id() const
Definition: PHG4Particle.h:22
virtual double get_py() const
Definition: PHG4Particle.h:17
virtual double get_pz() const
Definition: PHG4Particle.h:18
PHG4VtxPoint * GetVtx(const int vtxid)
virtual double get_y() const
Definition: PHG4VtxPoint.h:21
virtual double get_x() const
Definition: PHG4VtxPoint.h:20
virtual double get_z() const
Definition: PHG4VtxPoint.h:22
static PHTFileServer & get(void)
return reference to class singleton
Definition: PHTFileServer.h:36
void open(const std::string &filename, const std::string &type="RECREATE")
open a SafeTFile. If filename is not found in the map, create a new TFile and append to the map; incr...
bool cd(const std::string &filename)
change to directory of TFile matching filename
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int process_event(PHCompositeNode *topNode)
int InitRun(PHCompositeNode *topNode)
int Init(PHCompositeNode *topNode)
PatternDBGen(const std::string &name="PatternDBGen")
virtual const SQHit * at(const size_t idkey) const =0
virtual size_t size() const =0
An SQ interface class to hold one detector hit.
Definition: SQHit.h:20
virtual void identify(std::ostream &os=std::cout) const
Definition: SQHit.h:30
virtual PHG4HitDefs::keytype get_g4hit_id() const
Return the Geant-hit ID associated with this hit.
Definition: SQHit.h:69
virtual short get_element_id() const
Return the element ID of this hit.
Definition: SQHit.h:45
virtual short get_detector_id() const
Return the detector ID of this hit.
Definition: SQHit.h:42
virtual int get_track_id() const
Return the track ID associated with this hit. Probably the value is not properly set at present.
Definition: SQHit.h:66