6 #include <TLorentzVector.h>
19 const vector<int>
topIDs = {32, 38, 40, 46};
25 TFile* fp_out =
new TFile(out_name,
"RECREATE");
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");
32 for(
int i=0; i<3; i++)
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");
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");
51 tr[i] -> Branch(
"road_id",road_id,
"road_id[2]/I");
52 tr[i] -> Branch(
"road_freq",road_freq,
"road_freq[2]/I");
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");
60 for(
int i=0; i<3; i++)
62 tr_road[i] -> Branch(
"charge",&u_charge);
63 tr_road[i] -> Branch(
"tb",&u_tb);
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");
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);
79 fp_mc[0] =
new TFile(
"sim_e1039.root");
80 fp_mc[1] =
new TFile(
"sim_e906.root");
82 cout<<
"get mc new"<<endl;
85 cout<<
"get mc tgt"<<endl;
88 cout<<
"get mc old"<<endl;
91 cout<<
"Writing objects"<<endl;
93 for(
int i=0; i<3; i++)
96 cout<<
"Close file"<<endl;
112 TTree* T = (TTree*)fp_mc[idata]->Get(
"T");
113 T->SetBranchAddress(
"dimuon", &lDimuon);
114 T->SetBranchAddress(
"hit", &lHit);
116 const int nEntries = nevt==0 ? T->GetEntries() : nevt;
118 for(
int ievt=0; ievt<nEntries; ievt++)
121 if( ievt % 100000 == 0 ){ cout<<
"ievt = "<<ievt<<endl; }
125 nDimuon = lDimuon->size();
128 if( nDimuon!=1 ){
continue; }
145 for(
int icharge=0; icharge<2; icharge++)
147 int temp_id[2][4] = {{0,0,0,0}, {0,0,0,0}};
149 for(HitList::iterator it = lHit->begin(); it != lHit->end(); it++)
154 if( hh->
track_id != track_id[icharge] ){
continue; }
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]);
172 if( !is_top && !is_bot ){
continue; }
174 if( is_top & is_bot )
176 cerr<<is_top<<
" "<<is_bot<<endl;
180 const int itb = ( is_top ? 0 : 1 );
182 tb[icharge] = 1-2*itb;
184 for(
int i=0; i<4; 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] );
195 road_freq[icharge] = 1;
213 ifstream ifs(
"/e906/app/users/kimmj/e1039/e1039-analysis/TriggerAna/work/matrix/trigger_67.txt");
223 ifs.getline(line,255);
231 sscanf(line,
"%d %d %d %d %d %d %f %f", &chg, &rID, &uID[0], &uID[1], &uID[2], &uID[3], &pXmin, &freq);
234 const int cc = ( (1-chg)/2 );
237 road_freq[cc] = freq;
241 tb[cc] = ( rID>0 ? 1 : -1 );
243 for(
int i=0; i<4; i++)
245 unique_id[cc][i] = uID[i];
246 detector_id[cc][i] = (uID[i]/1000);
247 element_id[cc][i] = (uID[i]%100);
249 element_xpos[cc][i] = gs->
getMeasurement( detector_id[cc][i], element_id[cc][i] );
305 if( detectorIDs ==
topIDs )
318 return tb*( (elementIDs[0]-1)*pow(16,3) + (elementIDs[1]-1)*pow(16,2) + (elementIDs[2]-1)*16 + elementIDs[3] );
324 if( roadID==0 )
return false;
331 const int _roadID = fabs(roadID);
333 elementIDs.push_back( _roadID/(
int)pow(16,3) + 1 );
334 if( elementIDs[0] > 24 )
return false;
336 elementIDs.push_back( _roadID%(
int)pow(16,3)/(
int)pow(16,2) + 1 );
337 if( elementIDs[1] > 16 )
return false;
339 elementIDs.push_back( _roadID%(
int)pow(16,2)/16 + 1 );
340 if( elementIDs[2] > 16 )
return false;
342 elementIDs.push_back( _roadID%16 );
343 if( elementIDs[3] > 16 )
return false;
357 for(
int i=0; i<2; i++)
366 for(
int j=0; j<4; j++)
369 detector_id[i][j] = 0;
370 element_id[i][j] = 0;
371 detector_zpos[i][j] = -9999;
372 element_xpos[i][j] = -9999;
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] );
std::vector< HitData > HitList
std::vector< DimuonData > DimuonList
const vector< int > topIDs
const vector< int > bottomIDs
User interface class about the geometry of detector planes.
double getPlanePosition(int detectorID) const
void getMeasurement(int detectorID, int elementID, double &measurement, double &dmeasurement)
Convert the detectorID and elementID to the actual hit position.
void get_old_roads(const int idata)
void get_road_id(const int i)
bool roadID_to_channels(const int roadID, std::vector< int > &detectorIDs, std::vector< int > &elementIDs)
void get_mc_roads(const int idata, const int nevt)
GetRoad(const char *out_name, const int nevt)
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