Class Reference for E1039 Core & Analysis Software
SimpleTree.cc
Go to the documentation of this file.
1 #include <iomanip>
2 #include <TFile.h>
3 #include <TTree.h>
9 #include <ktracker/FastTracklet.h>
10 #include <geom_svc/GeomSvc.h>
11 #include <ktracker/SRecEvent.h>
13 #include <phool/getClass.h>
14 #include "SimpleTree.h"
15 
16 using namespace std;
17 
18 // XT, XB, YL, YR, DP1, DP2
19 const int dID[24] =
20  {32, 38, 40, 46, 31, 37, 39, 45,
21  33, 35, 41, 43, 34, 36, 42, 44,
22  55, 56, 57, 58, 59, 60, 61, 62};
23 
24 SimpleTree::SimpleTree(const std::string& name)
25  : SubsysReco(name),
26  gs(GeomSvc::instance())
27 {}
28 
29 
31 {
32  cout<<"SimpleTree::Init()"<<endl;
34 }
35 
37 {
38  cout<<"SimpleTree::InitRun() - GetNodes()"<<endl;
39  int ret = GetNodes(topNode);
40  if (ret != Fun4AllReturnCodes::EVENT_OK) return ret;
41 
42  cout<<"SimpleTree::InitRun() - MakeTree()"<<endl;
43  MakeTree();
44  cout<<"SimpleTree::IninRun() Done"<<endl;
46 }
47 
49 {
50  static unsigned int n_evt = 0;
51  if (++n_evt % 100000 == 0) cout << n_evt << endl;
52  else if (n_evt % 10000 == 0) cout << " . " << flush;
53 
54 
56  //cout<<"MC"<<endl;
57  dMCEvent.process_id = sqMCEvent->get_process_id();
58  for(int ii=0; ii<4; ii++)
59  {
60  dMCEvent.particle_id[ii] = sqMCEvent->get_particle_id(ii);
61  dMCEvent.particle_mom[ii] = sqMCEvent->get_particle_momentum(ii);
62  }
63 
64 
66  //cout<<"Event"<<endl;
67  dEvent.event_id = sqEvent->get_event_id();
68  dEvent.trig_bits = sqEvent->get_trigger();
69 
70 
72  //cout<<"Dimuon"<<endl;
73  lDimuon.clear();
74  nDimuons = sqDimuonVector->size();
75 
76  for (unsigned int ii = 0; ii < nDimuons; ii++)
77  {
78  SQDimuon* dim = sqDimuonVector->at(ii);
79  DimuonData dd;
80 
81  dd.dim_id = dim->get_dimuon_id();
82  dd.pdg_id = dim->get_pdg_id();
83  dd.mass = dim->get_mass();
84  dd.x1 = dim->get_x1();
85  dd.x2 = dim->get_x2();
86  dd.xf = dim->get_xf();
87  dd.track_id_pos = dim->get_track_id_pos();
88  dd.track_id_neg = dim->get_track_id_neg();
89  dd.mom = dim->get_mom();
90  dd.mom_pos = dim->get_mom_pos();
91  dd.mom_neg = dim->get_mom_neg();
92 
93  lDimuon.push_back(dd);
94  }
95 
96 
98  //cout<<"Track"<<endl;
99  lTrack.clear();
100  nTracks = sqTrackVector->size();
101 
102  for (unsigned int ii = 0; ii < nTracks; ii++)
103  {
104  SQTrack* trk = sqTrackVector->at(ii);
105  TrackData dd;
106 
107  dd.track_id = trk->get_track_id();
108  dd.charge = trk->get_charge();
109  dd.zvtx = trk->get_pos_vtx().Z();
110 
111  lTrack.push_back(dd);
112  }
113 
114 
116  //cout<<"Hit"<<endl;
117  lHit.clear();
118  nHits = sqHitVector->size();
119 
120  for (unsigned int ii = 0; ii < nHits; ii++)
121  {
122  SQHit* hit = sqHitVector->at(ii);
123  HitData dd;
124 
125  dd.hit_id = hit->get_hit_id();
126  dd.track_id = hit->get_track_id();
127  dd.detector_id = hit->get_detector_id();
128  dd.element_id = hit->get_element_id();
129  dd.tdc_time = hit->get_tdc_time();
130  dd.in_time = hit->is_in_time();
131 
132  lHit.push_back(dd);
133  }
134 
136  //cout<<"Tracklet"<<endl;
137  lTracklet.clear();
138  nTracklets = trackletVector->size();
139  //cout<<"nTracklets = "<<nTracklets<<endl;
140 
141  for (unsigned int ii = 0; ii < nTracklets; ii++)
142  {
143  Tracklet* tracklet = trackletVector->at(ii);
144  TrackletData dd;
145  //cout<<"get data ii = "<<ii<<endl;
146 
147  dd.n_hits = tracklet->getNHits();
148  dd.chisq = tracklet->getChisq();
149  dd.charge = tracklet->getCharge();
150 
151  for(int jj=0; jj<24; jj++)
152  {
153  const int d_id = dID[jj];
154  dd.detector_id[jj] = d_id;
155 
156  const float z = gs->getPlanePosition(d_id);
157  dd.detector_zpos[jj] = z;
158 
159  const float x = tracklet->getExpPositionX(z);
160  const float y = tracklet->getExpPositionY(z);
161 
162  dd.x_exp[jj] = x;
163  dd.y_exp[jj] = y;
164 
165  if( !gs->isInPlane(d_id, x, y) ) continue;
166 
167  dd.in_plane[jj] = true;
168 
169  const int e_id = gs->getExpElementID(d_id, tracklet->getExpPositionW(d_id));
170  dd.element_id_exp[jj] = e_id;
171 
172  if(e_id < 1 || e_id > gs->getPlaneNElements(d_id) ) continue;
173 
174 
175  SQHit* hit = findHit(d_id, e_id);
176  if( hit == nullptr ) continue;
177 
178  dd.hit_id[jj] = hit->get_hit_id();
179  dd.track_id[jj] = hit->get_track_id();
180  dd.element_id_pos[jj] = hit->get_pos();
181  dd.element_id_closest[jj] = hit->get_element_id();
182  }
183 
184  lTracklet.push_back(dd);
185  }
186 
187  //cout<<"Fill"<<endl;
188  tree->Fill();
189  //cout<<"process_event done"<<endl;
191 }
192 
194 {
195  cout<<"SimpleTree::End()"<<endl;
196  file->cd();
197  file->Write();
198  file->Close();
199 
200  cout<<"SimpleTree::End() - Done"<<endl;
201 
203 }
204 
205 int SimpleTree::GetNodes(PHCompositeNode *topNode)
206 {
207  sqMCEvent = findNode::getClass<SQMCEvent >(topNode, "SQMCEvent");
208  sqEvent = findNode::getClass<SQEvent >(topNode, "SQEvent");
209  sqTrackVector = findNode::getClass<SQTrackVector >(topNode, "SQTruthTrackVector");
210  sqDimuonVector = findNode::getClass<SQDimuonVector>(topNode, "SQTruthDimuonVector");
211  sqHitVector = findNode::getClass<SQHitVector >(topNode, "SQHitVector");
212  trackletVector = findNode::getClass<TrackletVector>(topNode, "TrackletVector");
213 
214  if (!sqMCEvent || !sqEvent || !sqTrackVector || !sqDimuonVector || !sqHitVector || !trackletVector) {
216  }
218 }
219 
220 void SimpleTree::SetOutput(const char* out_name)
221 {
222  cout<<"SimpleTree::SetOutput()"<<endl;
223  file= new TFile(out_name, "RECREATE");
224  tree = new TTree("T", "Created by SimpleTree");
225  cout<<out_name<<" -- Created"<<endl;
226 }
227 
228 void SimpleTree::MakeTree()
229 {
230  tree->Branch("mcevent", &dMCEvent);
231  tree->Branch("event", &dEvent);
232  tree->Branch("dimuon", &lDimuon);
233  tree->Branch("track", &lTrack);
234  tree->Branch("hit", &lHit);
235  tree->Branch("tracklet", &lTracklet);
236  tree->Branch("nTracks", &nTracks);
237  tree->Branch("nHits", &nHits);
238  tree->Branch("nTracklets", &nTracklets);
239  //tree->Branch("", &);
240 }
241 
242 SQHit* SimpleTree::findHit(const int detID, const int eleID)
243 {
244  int delta = 999;
245  SQHit* hit = nullptr;
246  for(SQHitVector::Iter it = sqHitVector->begin(); it != sqHitVector->end(); ++it)
247  {
248  if((*it)->get_detector_id() != detID) continue;
249  int delta_temp = abs(eleID - (*it)->get_element_id());
250  if(delta > delta_temp)
251  {
252  delta = delta_temp;
253  hit = (*it);
254  }
255  }
256  return hit;
257 }
const int dID[24]
Definition: SimpleTree.cc:19
User interface class about the geometry of detector planes.
Definition: GeomSvc.h:164
double getPlanePosition(int detectorID) const
Definition: GeomSvc.h:235
int getPlaneNElements(int detectorID) const
Definition: GeomSvc.h:260
int getExpElementID(int detectorID, double pos_exp)
Definition: GeomSvc.cxx:677
bool isInPlane(int detectorID, double x, double y)
See if a point is in a plane.
Definition: GeomSvc.cxx:622
TLorentzVector particle_mom[4]
Definition: TreeData.h:13
int process_id
MC Event Info.
Definition: TreeData.h:11
int particle_id[4]
Definition: TreeData.h:12
virtual const SQDimuon * at(const size_t id) const =0
virtual size_t size() const =0
An SQ interface class to hold one true or reconstructed dimuon.
Definition: SQDimuon.h:8
virtual TLorentzVector get_mom_neg() const =0
Return the momentum of the negative track at vertex.
virtual int get_dimuon_id() const =0
Return the dimuon ID, which is unique per event(?).
virtual int get_pdg_id() const =0
Return the GPD ID of parent particle. It is valid only for true dimuon.
virtual double get_xf() const =0
virtual TLorentzVector get_mom_pos() const =0
Return the momentum of the positive track at vertex.
virtual double get_x2() const =0
virtual int get_track_id_neg() const =0
Return the track ID of the negative track.
virtual double get_x1() const =0
virtual TLorentzVector get_mom() const =0
Return the dimuon momentum at vertex.
virtual int get_track_id_pos() const =0
Return the track ID of the positive track.
virtual double get_mass() const =0
virtual bool get_trigger(const SQEvent::TriggerMask i) const =0
Return the trigger bit (fired or not) of the selected trigger channel.
virtual int get_event_id() const =0
Return the event ID, which is unique per run.
virtual ConstIter end() const =0
virtual ConstIter begin() const =0
virtual const SQHit * at(const size_t idkey) const =0
std::vector< SQHit * >::iterator Iter
Definition: SQHitVector.h:38
virtual size_t size() const =0
An SQ interface class to hold one detector hit.
Definition: SQHit.h:20
virtual bool is_in_time() const
Return 'true' if this hit is in the time window.
Definition: SQHit.h:90
virtual float get_pos() const
Return the absolute position of this hit. Probably the value is not properly set at present.
Definition: SQHit.h:60
virtual short get_element_id() const
Return the element ID of this hit.
Definition: SQHit.h:45
virtual int get_hit_id() const
Return the ID of this hit.
Definition: SQHit.h:39
virtual float get_tdc_time() const
Return the TDC time (nsec) of this hit.
Definition: SQHit.h:54
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
virtual int get_particle_id(const int i) const =0
Return the particle ID of the primary process, where i=0...3 for "0 + 1 -> 2 + 3".
virtual TLorentzVector get_particle_momentum(const int i) const =0
Return the particle momentum of the primary process, where i=0...3 for "0 + 1 -> 2 + 3".
virtual int get_process_id() const =0
Return the primary process ID.
virtual const SQTrack * at(const size_t id) const =0
virtual size_t size() const =0
An SQ interface class to hold one true or reconstructed track.
Definition: SQTrack.h:8
virtual int get_track_id() const =0
Return the track ID, which is unique per event(?).
virtual TVector3 get_pos_vtx() const =0
Return the track position at vertex.
virtual int get_charge() const =0
Return the charge, i.e. +1 or -1.
int process_event(PHCompositeNode *topNode)
Definition: SimpleTree.cc:48
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: SimpleTree.cc:193
SimpleTree(const std::string &name="SimpleTree")
Definition: SimpleTree.cc:24
int Init(PHCompositeNode *topNode)
Definition: SimpleTree.cc:30
int InitRun(PHCompositeNode *topNode)
Definition: SimpleTree.cc:36
void SetOutput(const char *out_name)
Definition: SimpleTree.cc:220
int n_hits
Definition: TreeData.h:86
float x_exp[24]
Definition: TreeData.h:91
bool in_plane[24]
Definition: TreeData.h:93
int element_id_pos[24]
Definition: TreeData.h:97
float detector_zpos[24]
Definition: TreeData.h:90
int element_id_exp[24]
Definition: TreeData.h:94
int track_id[24]
Definition: TreeData.h:96
float chisq
Definition: TreeData.h:87
float y_exp[24]
Definition: TreeData.h:92
int charge
Definition: TreeData.h:88
int detector_id[24]
Definition: TreeData.h:89
int element_id_closest[24]
Definition: TreeData.h:98
int hit_id[24]
Definition: TreeData.h:95
const Tracklet * at(const size_t index) const
size_t size() const
Definition: FastTracklet.h:265
double getExpPositionY(double z) const
int getNHits() const
Definition: FastTracklet.h:145
double getExpPositionX(double z) const
double getChisq() const
Definition: FastTracklet.h:157
double getExpPositionW(int detectorID) const
int getCharge() const
Return the charge (+1 or -1) of this tracklet.
TLorentzVector mom_pos
Definition: TreeData.h:37
TLorentzVector mom
Definition: TreeData.h:36
int track_id_pos
Definition: TreeData.h:42
int pdg_id
Definition: TreeData.h:34
double x1
Definition: TreeData.h:41
TLorentzVector mom_neg
Definition: TreeData.h:38
double x2
Definition: TreeData.h:42
double mass
Definition: TreeData.h:39
int dim_id
Definition: TreeData.h:36
double xf
Definition: TreeData.h:41
int track_id_neg
Definition: TreeData.h:43
int trig_bits
Definition: TreeData.h:11
int event_id
Definition: TreeData.h:10
int hit_id
Definition: TreeData.h:70
int track_id
Definition: TreeData.h:71
int detector_id
Definition: TreeData.h:72
bool in_time
Definition: TreeData.h:75
int element_id
Definition: TreeData.h:73
double tdc_time
Definition: TreeData.h:26
int track_id
Definition: TreeData.h:57
int charge
Definition: TreeData.h:23
float zvtx
Definition: TreeData.h:59