Class Reference for E1039 Core & Analysis Software
TruthEval.cxx
Go to the documentation of this file.
1 /*
2  * TruthEval.C
3  *
4  * Created on: Oct 29, 2017
5  * Author: yuhw@nmsu.edu
6  */
7 
8 
9 #include "TruthEval.h"
10 #include "TruthTrack.h"
11 
13 #include <g4main/PHG4Particle.h>
14 #include <g4main/PHG4VtxPoint.h>
15 #include <g4main/PHG4VtxPoint.h>
17 #include <g4main/PHG4Hit.h>
19 #include <fun4all/PHTFileServer.h>
20 #include <phool/PHNodeIterator.h>
21 #include <phool/PHIODataNode.h>
22 #include <phool/getClass.h>
23 
24 
25 #include <TFile.h>
26 #include <TTree.h>
27 #include <TClonesArray.h>
28 #include <TVector3.h>
29 
30 #include <cstring>
31 #include <cmath>
32 #include <cfloat>
33 #include <stdexcept>
34 #include <limits>
35 #include <boost/lexical_cast.hpp>
36 #include <map>
37 
38 #define LogInfo(exp) std::cout<<"INFO: " <<__FILE__<<": "<<__LINE__<<": "<< exp << std::endl
39 #define LogDebug(exp) std::cout<<"DEBUG: " <<__FILE__<<": "<<__LINE__<<": "<< exp << std::endl
40 #define LogError(exp) std::cout<<"ERROR: " <<__FILE__<<": "<<__LINE__<<": "<< exp << std::endl
41 #define LogWarning(exp) std::cout<<"WARNING: "<<__FILE__<<": "<<__LINE__<<": "<< exp << std::endl
42 
43 using namespace std;
44 
45 TruthEval::TruthEval(const std::string& name, const std::string &out) :
46 SubsysReco(name),
47 _out_name(out),
48 _event(0),
49 _g4truth_container(nullptr)
50 {
51  InitEvalTree();
52  ResetEvalVars();
53 
54  target_angle = 0;
55  target_r = 1;
56  target_l = 7.9;
57  target_z = 0;
58 
59  coil_in_r = 6;
60  coil_ot_r = 22.225;
61  coil_min_y_0 = 2;
62  coil_max_y_0 = 24.7;
63  coil_min_y_1 = -24.7;
64  coil_max_y_1 = -2;
65 }
66 
69 }
70 
72 
73  int ret = GetNodes(topNode);
74  if(ret != Fun4AllReturnCodes::EVENT_OK) return ret;
75 
77 }
78 
80 
82  std::cout << "Entering TruthEval::process_event: " << _event << std::endl;
83 
84  ResetEvalVars();
85 
86  map<int, float> _m_track_edep_coil;
87  map<int, float> _m_track_path_coil;
88 
89  map<int, float> _m_track_edep_wire;
90  map<int, float> _m_track_path_wire;
91 
92  for(auto iter=_g4hit_coil->getHits().first; iter!=_g4hit_coil->getHits().second; ++iter) {
93  PHG4Hit* hit = iter->second;
94  int track_id = hit->get_trkid();
95 
96  float edep = hit->get_edep();
97 
98  _total_edep += edep;
99 
100  float x0 = hit->get_x(0);
101  float x1 = hit->get_x(1);
102  float y0 = hit->get_y(0);
103  float y1 = hit->get_y(1);
104  float z0 = hit->get_z(0);
105  float z1 = hit->get_z(1);
106 
107  float path = sqrt(
108  pow(x1-x0,2)+
109  pow(y1-y0,2)+
110  pow(z1-z0,2)
111  );
112 
113  auto iter_edep = _m_track_edep_coil.find(track_id);
114  if( iter_edep != _m_track_edep_coil.end()) {
115  iter_edep->second += edep;
116  } else {
117  _m_track_edep_coil.insert(multimap<int, float>::value_type(track_id, edep));
118  }
119 
120  auto iter_path = _m_track_path_coil.find(track_id);
121  if( iter_path != _m_track_path_coil.end()) {
122  iter_path->second += path;
123  } else {
124  _m_track_path_coil.insert(multimap<int, float>::value_type(track_id, path));
125  }
126 
127 
128  set<unsigned int> wire_ids = {10, 11, 20, 21, 30, 31, 110, 111, 120, 121, 130, 131};
129  unsigned int layer_id = hit->get_layer();
130  if(wire_ids.find(layer_id)!=wire_ids.end()) {
131  auto iter_edep = _m_track_edep_wire.find(track_id);
132  if( iter_edep != _m_track_edep_wire.end()) {
133  iter_edep->second += edep;
134  } else {
135  _m_track_edep_wire.insert(multimap<int, float>::value_type(track_id, edep));
136  }
137 
138  auto iter_path = _m_track_path_wire.find(track_id);
139  if( iter_path != _m_track_path_wire.end()) {
140  iter_path->second += path;
141  } else {
142  _m_track_path_wire.insert(multimap<int, float>::value_type(track_id, path));
143  }
144  }
145 
146  if(verbosity > 2) {
147  cout << __FILE__ << ": " << __LINE__ << endl;
148  hit->identify();
149  cout
150  << " edep: " << edep
151  << " path: " << path
152  << endl;
153 
154  cout
155  << "_m_track_path_coil: "
156  << "{ " << track_id
157  << " -> " << _m_track_edep_coil[track_id] << "}"
158  << endl;
159 
160  cout
161  << "_m_track_path_coil: "
162  << "{ " <<track_id
163  << " -> " << _m_track_path_coil[track_id] << "}"
164  << endl;
165  }
166  }
167 
168  int iarr = 0;
169  auto range = _g4truth_container->GetParticleRange();
170  for(auto iter = range.first; iter!= range.second; ++iter) {
171  PHG4Particle *particle = iter->second;
172 
173  int track_id = particle->get_track_id();
174  //if(track_id>0) continue; ///input proton
175 
176  TruthTrack track;
177  track.parentid = particle->get_parent_id();
178  track.pid = particle->get_pid();
179  float e = particle->get_e();
180  float px = particle->get_px();
181  float py = particle->get_py();
182  float pz = particle->get_pz();
183  TVector3 mom(px,py,pz);
184  if(track_id<0)
185  track.eta = mom.Eta();
186 
187  float pt = mom.Pt();
188  float p = mom.Mag();
189  float mass = sqrt(e*e-p*p);
190 
191  track.px = mom.Px();
192  track.py = mom.Py();
193  track.pz = mom.Pz();
194  track.e = e;
195  track.pt = pt;
196  track.p = p;
197  track.mass = mass;
198  int vtx_id = particle->get_vtx_id();
199 
200  PHG4VtxPoint *vtx = _g4truth_container->GetVtx(vtx_id);
201 
202  track.vx = vtx->get_x();
203  track.vy = vtx->get_y();
204  track.vz = vtx->get_z();
205  track.t = vtx->get_t();
206 
207  TVector3 vv(track.vx, track.vy, track.vz - target_z);
208  vv.RotateY(target_angle);
209 
210  if(
211  vv.Perp() < target_r
212  and abs(vv.Z()) < target_l/2.
213  ) track.det_id = 0;
214  else if(
215  sqrt(track.vx*track.vx+track.vz*track.vz) > coil_in_r and
216  sqrt(track.vx*track.vx+track.vz*track.vz) < coil_ot_r and
217  (
218  (track.vy > coil_min_y_0 and track.vy < coil_max_y_0) or
219  (track.vy > coil_min_y_1 and track.vy < coil_max_y_1)
220  )
221  ) track.det_id = 1;
222  else track.det_id = 9999;
223 
224  {
225  track.edep_coil = 0;
226  auto iter_edep = _m_track_edep_coil.find(track_id);
227  if(iter_edep != _m_track_edep_coil.end()) {
228  track.edep_coil = iter_edep->second;
229  }
230 
231  track.path_coil = 0;
232  auto iter_path = _m_track_path_coil.find(track_id);
233  if(iter_path != _m_track_path_coil.end()) {
234  track.path_coil = iter_path->second;
235  }
236  }
237 
238  {
239  track.edep_wire = 0;
240  auto iter_edep = _m_track_edep_wire.find(track_id);
241  if(iter_edep != _m_track_edep_wire.end()) {
242  track.edep_wire = iter_edep->second;
243  }
244 
245  track.path_wire = 0;
246  auto iter_path = _m_track_path_wire.find(track_id);
247  if(iter_path != _m_track_path_wire.end()) {
248  track.path_wire = iter_path->second;
249  }
250  }
251 
252  new ((*_tca_truthtracks)[iarr++]) TruthTrack(track);
253  }
254 
255  _tout->Fill();
256 
258  std::cout << "Leaving TruthEval::process_event: " << _event << std::endl;
259  ++_event;
260 
262 }
263 
266  std::cout << "TruthEval::End" << std::endl;
267 
268  PHTFileServer::get().cd(_out_name.c_str());
269  _tout->Write();
270 
271  _tout1->Fill();
272  _tout1->Write();
273 
275 }
276 
278  PHTFileServer::get().open(_out_name.c_str(), "RECREATE");
279 
280  if (!_tca_truthtracks)
281  _tca_truthtracks = new TClonesArray("TruthTrack");
282 
283  _tout = new TTree("T", "TruthEval");
284  _tout->Branch("TruthParticle", _tca_truthtracks);
285 
286  _total_edep = 0;
287  _tout1 = new TTree("T1", "RunLevel");
288  _tout1->Branch("total_edep", &_total_edep, "total_edep/F");
289 
290  return 0;
291 }
292 
294  _tca_truthtracks->Clear();
295  return 0;
296 }
297 
298 int TruthEval::GetNodes(PHCompositeNode* topNode) {
299 
300  _g4truth_container = findNode::getClass<PHG4TruthInfoContainer>(topNode,"G4TruthInfo");
301  if (!_g4truth_container) {
302  cerr << PHWHERE << " ERROR: Can't find node G4TruthInfo" << endl;
304  }
305 
306  _g4hit_coil = findNode::getClass<PHG4HitContainer>(topNode,"G4HIT_Coil");
307  if (!_g4hit_coil) {
308  cerr << PHWHERE << " ERROR: Can't find node G4HIT_Coil" << endl;
310  }
311 
312 
314 }
315 
316 
317 
318 
319 
320 
321 
TFile clean handling.
int verbosity
The verbosity level. 0 means not verbose at all.
Definition: Fun4AllBase.h:75
@ VERBOSITY_SOME
Output some useful messages during manual command line running.
Definition: Fun4AllBase.h:39
virtual int Verbosity() const
Gets the verbosity of this module.
Definition: Fun4AllBase.h:64
ConstRange getHits(const unsigned int detid) const
return all hits matching a given detid
virtual unsigned int get_layer() const
Definition: PHG4Hit.h:35
virtual float get_z(const int i) const
Definition: PHG4Hit.h:23
virtual float get_edep() const
Definition: PHG4Hit.h:31
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_trkid() const
Definition: PHG4Hit.h:41
virtual int get_track_id() const
Definition: PHG4Particle.h:21
virtual int get_pid() const
Definition: PHG4Particle.h:14
virtual int get_parent_id() const
Definition: PHG4Particle.h:23
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_e() const
Definition: PHG4Particle.h:19
virtual double get_pz() const
Definition: PHG4Particle.h:18
Range GetParticleRange()
Get a range of iterators covering the entire container.
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
virtual double get_t() const
Definition: PHG4VtxPoint.h:23
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 InitRun(PHCompositeNode *topNode)
Definition: TruthEval.cxx:71
float coil_min_y_0
Definition: TruthEval.h:54
TruthEval(const std::string &name="TruthEval", const std::string &out="eval.root")
Definition: TruthEval.cxx:45
float coil_max_y_0
Definition: TruthEval.h:55
std::string _out_name
Definition: TruthEval.h:45
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: TruthEval.cxx:264
int process_event(PHCompositeNode *topNode)
Definition: TruthEval.cxx:79
float coil_in_r
Definition: TruthEval.h:52
float target_z
Definition: TruthEval.h:50
int InitEvalTree()
Definition: TruthEval.cxx:277
int ResetEvalVars()
Definition: TruthEval.cxx:293
float coil_ot_r
Definition: TruthEval.h:53
float target_angle
Definition: TruthEval.h:47
float coil_min_y_1
Definition: TruthEval.h:56
float target_r
Definition: TruthEval.h:48
float coil_max_y_1
Definition: TruthEval.h:57
int Init(PHCompositeNode *topNode)
Definition: TruthEval.cxx:67
float target_l
Definition: TruthEval.h:49
float path_coil
Definition: TruthTrack.h:35
float vx
Definition: TruthTrack.h:28
float path_wire
Definition: TruthTrack.h:37
float edep_coil
0 : Target, 1: Coil, 9999: other
Definition: TruthTrack.h:34
float p
Definition: TruthTrack.h:30
float vz
Definition: TruthTrack.h:28
float pt
Definition: TruthTrack.h:30
float edep_wire
Definition: TruthTrack.h:36
float pz
Definition: TruthTrack.h:29
float vy
Definition: TruthTrack.h:28
float px
Definition: TruthTrack.h:29
float e
Definition: TruthTrack.h:29
float py
Definition: TruthTrack.h:29
int det_id
Definition: TruthTrack.h:33
float eta
Definition: TruthTrack.h:30
int parentid
Definition: TruthTrack.h:32
float mass
Definition: TruthTrack.h:30
float t
Definition: TruthTrack.h:28
#define PHWHERE
Definition: phool.h:23