Class Reference for E1039 Core & Analysis Software
GetRoad.cc
Go to the documentation of this file.
1 #include <math.h>
2 #include <iomanip>
3 #include <fstream>
4 #include <TTree.h>
5 #include <TCanvas.h>
6 #include <TLorentzVector.h>
7 #include <geom_svc/GeomSvc.h>
8 
9 #include "TreeData.h"
10 //#include "MatrixData.h" // end up not using at all
11 
12 #include "GetRoad.h"
13 
14 using namespace std;
15 
16 //typedef vector<int, Road> SortRoad;
17 //typedef vector<int, RoadPair> SortRoadPair;
18 
19 const vector<int> topIDs = {32, 38, 40, 46};
20 const vector<int> bottomIDs = {31, 37, 39, 45};
21 
22 GetRoad::GetRoad(const char* out_name, const int nevt=0) : gs(GeomSvc::instance())
23 {
25  TFile* fp_out = new TFile(out_name,"RECREATE");
26 
28  tr[0] = new TTree("tr_new","new mc event tree for e1039 setup");
29  tr[1] = new TTree("tr_tgt","new mc event tree for target at e906 location");
30  tr[2] = new TTree("tr_old","old mc event from e906 roadset");
31 
32  for(int i=0; i<3; i++)
33  {
34  tr[i] -> Branch("nDimuon",&nDimuon);
35  tr[i] -> Branch("mass",&mass);
36  tr[i] -> Branch("xf",&xf);
37  tr[i] -> Branch("x1",&x1);
38  tr[i] -> Branch("x2",&x2);
39  tr[i] -> Branch("px",px,"px[2]/F");
40  tr[i] -> Branch("track_id",track_id,"track_id[2]/I");
41  tr[i] -> Branch("charge",charge,"charge[2]/I");
42 
43  tr[i] -> Branch("nHit",&nHit);
44  tr[i] -> Branch("tb",tb,"tb[2]/I");
45  tr[i] -> Branch("unique_id",unique_id,"unique_id[2][4]/I");
46  tr[i] -> Branch("detector_id",detector_id,"detector_id[2][4]/I");
47  tr[i] -> Branch("detector_zpos",detector_zpos,"detector_zpos[2][4]/F");
48  tr[i] -> Branch("element_id",element_id,"element_id[2][4]/I");
49  tr[i] -> Branch("element_xpos",element_xpos,"element_xpos[2][4]/F");
50 
51  tr[i] -> Branch("road_id",road_id,"road_id[2]/I");
52  tr[i] -> Branch("road_freq",road_freq,"road_freq[2]/I");
53  }
54 
56  tr_road[0] = new TTree("rd_new","new mc road tree for e1039 setup");
57  tr_road[1] = new TTree("rd_tgt","new mc road tree for target at e906 location");
58  tr_road[2] = new TTree("rd_old","old mc road tree from e906 roadset");
59 
60  for(int i=0; i<3; i++)
61  {
62  tr_road[i] -> Branch("charge",&u_charge);
63  tr_road[i] -> Branch("tb",&u_tb);
64 
65  tr_road[i] -> Branch("road_id",&u_rid);
66  tr_road[i] -> Branch("u_id",u_uid,"u_id[4]/I");
67  tr_road[i] -> Branch("e_id",u_eid,"e_id[4]/I");
68  tr_road[i] -> Branch("z",u_z,"z[4]/F");
69  tr_road[i] -> Branch("x",u_x,"x[4]/F");
70 
71  tr_road[i] -> Branch("freq",&u_freq);
72  tr_road[i] -> Branch("px_min",&u_px_min);
73  tr_road[i] -> Branch("px_max",&u_px_max);
74  tr_road[i] -> Branch("px_avg",&u_px_avg);
75  tr_road[i] -> Branch("px_rms",&u_px_rms);
76  }
77 
79  fp_mc[0] = new TFile("sim_e1039.root");
80  fp_mc[1] = new TFile("sim_e906.root");
81 
82  cout<<"get mc new"<<endl;
83  get_mc_roads(0, nevt);
84 
85  cout<<"get mc tgt"<<endl;
86  get_mc_roads(1, nevt);
87 
88  cout<<"get mc old"<<endl;
89  get_old_roads(2);
90 
91  cout<<"Writing objects"<<endl;
92  fp_out->cd();
93  for(int i=0; i<3; i++)
94  tr[i]->Write();
95 
96  cout<<"Close file"<<endl;
97  fp_out->Close();
98 
99  delete fp_out;
100  delete fp_mc[0];
101  delete fp_mc[1];
102 
103  cout<<"Done"<<endl;
104 }
105 
106 void GetRoad::get_mc_roads(const int idata, const int nevt=0)
107 {
108  // Read SimpleTree
109  DimuonList *lDimuon = new DimuonList();
110  HitList * lHit = new HitList();
111 
112  TTree* T = (TTree*)fp_mc[idata]->Get("T");
113  T->SetBranchAddress("dimuon", &lDimuon);
114  T->SetBranchAddress("hit", &lHit);
115 
116  const int nEntries = nevt==0 ? T->GetEntries() : nevt;
117 
118  for(int ievt=0; ievt<nEntries; ievt++)
119  {
120  T->GetEntry(ievt);
121  if( ievt % 100000 == 0 ){ cout<<"ievt = "<<ievt<<endl; }
122 
123  reset_var();
124 
125  nDimuon = lDimuon->size();
126  nHit = lHit->size();
127 
128  if( nDimuon!=1 ){ continue; }
129 
130  DimuonData dd = lDimuon->at(0); // either 0 or 1 dimuons
131  mass = dd.mass;
132  xf = dd.xf;
133  x1 = dd.x1;
134  x2 = dd.x2;
135 
136  charge[0] = 1;
137  charge[1] = -1;
138 
139  px[0] = dd.mom_pos.X();
140  px[1] = dd.mom_neg.X();
141 
142  track_id[0] = dd.track_id_pos;
143  track_id[1] = dd.track_id_neg;
144 
145  for(int icharge=0; icharge<2; icharge++)
146  {
147  int temp_id[2][4] = {{0,0,0,0}, {0,0,0,0}}; // element_id[top,bottom][station]
148 
149  for(HitList::iterator it = lHit->begin(); it != lHit->end(); it++)
150  {
151  HitData* hh = &(*it);
152 
153  // find a hit from this muon track
154  if( hh->track_id != track_id[icharge] ){ continue; }
155 
156  // find a hodoscope hits
157  if( hh->detector_id == 31 ){ temp_id[1][0] = hh->element_id; }
158  if( hh->detector_id == 37 ){ temp_id[1][1] = hh->element_id; }
159  if( hh->detector_id == 39 ){ temp_id[1][2] = hh->element_id; }
160  if( hh->detector_id == 45 ){ temp_id[1][3] = hh->element_id; }
161 
162  if( hh->detector_id == 32 ){ temp_id[0][0] = hh->element_id; }
163  if( hh->detector_id == 38 ){ temp_id[0][1] = hh->element_id; }
164  if( hh->detector_id == 40 ){ temp_id[0][2] = hh->element_id; }
165  if( hh->detector_id == 46 ){ temp_id[0][3] = hh->element_id; }
166  } // SQHit list
167 
168  // is this track top or bottom?
169  const bool is_top = (temp_id[0][0]*temp_id[0][1]*temp_id[0][2]*temp_id[0][3]);
170  const bool is_bot = (temp_id[1][0]*temp_id[1][1]*temp_id[1][2]*temp_id[1][3]);
171 
172  if( !is_top && !is_bot ){ continue; } // road not in acceptance for this muon track
173 
174  if( is_top & is_bot )
175  {
176  cerr<<is_top<<" "<<is_bot<<endl;
177  continue;
178  }
179 
180  const int itb = ( is_top ? 0 : 1 );
181 
182  tb[icharge] = 1-2*itb;
183 
184  for(int i=0; i<4; i++)
185  {
186  detector_id[icharge][i] = ( itb==0 ? topIDs[i] : bottomIDs[i] );
187  element_id [icharge][i] = temp_id[itb][i];
188  unique_id [icharge][i] = 1000*detector_id[icharge][i] + element_id[icharge][i];
189  element_xpos[icharge][i] = gs->getMeasurement( detector_id[icharge][i], element_id[icharge][i] );
190  detector_zpos[icharge][i] = gs->getPlanePosition( detector_id[icharge][i] );
191  }
192 
193  // non zero only if this single muon track is in hodoscope acceptance
194  get_road_id( icharge );
195  road_freq[icharge] = 1; // dummy
196 
197  } // each muon track
198 
199  tr[idata]->Fill();
200 
201  }// event loop
202 
203  delete lDimuon;
204  delete lHit;
205 
206 }
207 
208 
209 void GetRoad::get_old_roads(const int idata=2)
210 {
211 
212  //cout<<"read previous roads file"<<endl;
213  ifstream ifs("/e906/app/users/kimmj/e1039/e1039-analysis/TriggerAna/work/matrix/trigger_67.txt");
214  // charge, roadID, uIDs, pXmin, sig, bg
215 
216  // save only either pos or neg muon per tree entry
217  //cout<<"ifstream loop"<<endl;
218  while(!ifs.eof())
219  {
220  reset_var();
221 
222  char line[255];
223  ifs.getline(line,255);
224 
225  int chg;
226  int rID;
227  int uID[4];
228  float pXmin;
229  float freq;
230 
231  sscanf(line, "%d %d %d %d %d %d %f %f", &chg, &rID, &uID[0], &uID[1], &uID[2], &uID[3], &pXmin, &freq);
232  //cout<<charge<<" "<<roadID<<" "<<px<<" "<<freq<<endl;
233 
234  const int cc = ( (1-chg)/2 );
235 
236  road_id[cc] = rID;
237  road_freq[cc] = freq;
238  px[cc] = pXmin;
239  charge[cc] = chg;
240 
241  tb[cc] = ( rID>0 ? 1 : -1 );
242 
243  for(int i=0; i<4; i++)
244  {
245  unique_id[cc][i] = uID[i];
246  detector_id[cc][i] = (uID[i]/1000);
247  element_id[cc][i] = (uID[i]%100);
248 
249  element_xpos[cc][i] = gs->getMeasurement( detector_id[cc][i], element_id[cc][i] );
250  detector_zpos[cc][i] = gs->getPlanePosition( detector_id[cc][i] );
251  }
252 
253  tr[idata]->Fill();
254  }
255  //cout<<"close ifstream"<<endl;
256 }
257 
258 /*
259 void GetRoad::get_unique_road()
260 {
261  // for mc
262  for(int itr=0; itr<2; itr++)
263  {
264  const int nevt = tr[itr]->GetEntries();
265 
266  for(int ievt=0; ievt<nevt; ievt++)
267  {
268  tr[itr]->GetEntry(ievt);
269 
270  if( nDimuon!=1 ) continue;
271 
272  if( (road_id[0]*road_id[1])==0 ) continue;
273 
274  for(int icharge=0; icharge<2; icharge++)
275  {
276  u_charge = 1-2*icharge;
277  u_tb = tb[icharge];
278  u_rid = road_id[icharge];
279 
280  for(int i=0; i<4; i++)
281  {
282  u_uid[i] = unique_id[icharge][i];
283  u_eid[i] = element_id[icharge][i];
284  u_z[i] = detector_zpos[icharge][i];
285  u_x[i] = element_xpos[icharge][i];
286  }
287 
288 
289 
290  it[icharge] = find(comp_id[icharge].begin(), comp_id[icharge].end(), rid)\
291  ;
292 
293  if( (it[icharge] == comp_id.end()) || (comp_id[icharge].size()==0) )
294  {
295  comp_id[icharge].push_back(rid);
296  }
297 
298  }
299 */
300 int GetRoad::channels_to_roadID(const vector<int> detectorIDs, const vector<int> elementIDs)
302 {
303  int tb=0;
304 
305  if( detectorIDs == topIDs )
306  {
307  tb = 1;
308  }
309  else if( detectorIDs == bottomIDs )
310  {
311  tb = -1;
312  }
313  else
314  {
315  return 0;
316  }
317 
318  return tb*( (elementIDs[0]-1)*pow(16,3) + (elementIDs[1]-1)*pow(16,2) + (elementIDs[2]-1)*16 + elementIDs[3] );
319 }
320 
321 
322 bool GetRoad::roadID_to_channels(const int roadID, vector<int> &detectorIDs, vector<int> &elementIDs)
323 {
324  if( roadID==0 ) return false;
325 
326  detectorIDs.clear();
327  elementIDs.clear();
328 
329  detectorIDs = (roadID > 0) ? topIDs : bottomIDs;
330 
331  const int _roadID = fabs(roadID);
332 
333  elementIDs.push_back( _roadID/(int)pow(16,3) + 1 );
334  if( elementIDs[0] > 24 ) return false;
335 
336  elementIDs.push_back( _roadID%(int)pow(16,3)/(int)pow(16,2) + 1 );
337  if( elementIDs[1] > 16 ) return false;
338 
339  elementIDs.push_back( _roadID%(int)pow(16,2)/16 + 1 );
340  if( elementIDs[2] > 16 ) return false;
341 
342  elementIDs.push_back( _roadID%16 );
343  if( elementIDs[3] > 16 ) return false;
344 
345  return true;
346 };
347 
349 {
350  mass = -9999;
351  xf = -9999;
352  x1 = -9999;
353  x2 = -9999;
354  nDimuon = 0;
355  nHit = 0;
356 
357  for(int i=0; i<2; i++)
358  {
359  road_id[i] = 0;
360  road_freq[i] = 0;
361  tb[i] = 0;
362  px[i] = 0;
363  charge[i] = 0;
364  track_id[i] = -9999;
365 
366  for(int j=0; j<4; j++)
367  {
368  unique_id[i][j] = 0;
369  detector_id[i][j] = 0;
370  element_id[i][j] = 0;
371  detector_zpos[i][j] = -9999;
372  element_xpos[i][j] = -9999;
373  }
374  }
375 }
376 
377 void GetRoad::get_road_id(const int i)
378 {
379  road_id[i] = tb[i]*( (element_id[i][0]-1)*pow(16,3) + (element_id[i][1]-1)*pow(16,2) + (element_id[i][2]-1)*16 + element_id[i][3] );
380 }
std::vector< HitData > HitList
Definition: TreeData.h:34
std::vector< DimuonData > DimuonList
Definition: TreeData.h:54
const vector< int > topIDs
Definition: GetRoad.cc:19
const vector< int > bottomIDs
Definition: GetRoad.cc:20
User interface class about the geometry of detector planes.
Definition: GeomSvc.h:164
double getPlanePosition(int detectorID) const
Definition: GeomSvc.h:235
void getMeasurement(int detectorID, int elementID, double &measurement, double &dmeasurement)
Convert the detectorID and elementID to the actual hit position.
Definition: GeomSvc.cxx:651
void get_old_roads(const int idata)
Definition: GetRoad.cc:209
void get_road_id(const int i)
Definition: GetRoad.cc:377
bool roadID_to_channels(const int roadID, std::vector< int > &detectorIDs, std::vector< int > &elementIDs)
Definition: GetRoad.cc:322
void get_mc_roads(const int idata, const int nevt)
Definition: GetRoad.cc:106
GetRoad(const char *out_name, const int nevt)
Definition: GetRoad.cc:22
int channels_to_roadID(const std::vector< int > detectorIDs, const std::vector< int > elementIDs)
argument should be passed after sorted by detectorID number from station 1 to 4
Definition: GetRoad.cc:300
void reset_var()
Definition: GetRoad.cc:348
TLorentzVector mom_pos
Definition: TreeData.h:37
int track_id_pos
Definition: TreeData.h:42
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
double xf
Definition: TreeData.h:41
int track_id_neg
Definition: TreeData.h:43
int track_id
Definition: TreeData.h:71
int detector_id
Definition: TreeData.h:72
int element_id
Definition: TreeData.h:73