Class Reference for E1039 Core & Analysis Software
GetRoad.h
Go to the documentation of this file.
1 /*
2 
3 FPGA trigger relavant functions
4 
5 Detector names are hardcoded.
6 Please confirm with GeomSvc functions if there's change.
7 
8 Top, Bottom: 0, 1 for array order; +1, -1 as a value
9 Pos, Neg: 0, 1 for array order; +1, -1 as a value
10 
11 Minjung Kim, kminjung@umich.edu
12 
13 */
14 
15 #ifndef _FPGA_TRIG_H_
16 #define _FPGA_TRIG_H_
17 
18 #include <iostream>
19 #include <vector>
20 #include <string>
21 #include <TFile.h>
22 #include <TTree.h>
23 #include <TH1F.h>
24 #include <TH2F.h>
25 #include <geom_svc/GeomSvc.h>
26 
27 class GetRoad
28 {
29  public:
30 
31  GetRoad(const char* out_name, const int nevt);
32  void get_mc_roads(const int idata, const int nevt);
33  void get_old_roads(const int idata);
34 
35  int channels_to_roadID(const std::vector<int> detectorIDs, const std::vector<int> elementIDs);
36  bool roadID_to_channels(const int roadID, std::vector<int> &detectorIDs, std::vector<int> &elementIDs);
37  void reset_var();
38  void get_road_id(const int i);
39 
40  private:
41  GeomSvc* gs;
42 
43  TTree* tr[3];
44  TTree* tr_road[3];
45 
46  // dimuon truth
47  int nDimuon;
48  float mass;
49  float xf;
50  float x1;
51  float x2;
52  float px[2];
53  int track_id[2];
54  int charge[2];
55  // digitized hit
56  int nHit;
57  int tb[2]; // 0 for not-all-4-stations hit at top/bottom
58  int unique_id[2][4]; // unique ID = 1000*detectorID + elementID
59  int detector_id[2][4];
60  float detector_zpos[2][4];
61  int element_id[2][4];
62  float element_xpos[2][4];
63  // road
64  int road_id[2]; // 0 for out-of-accentance track
65  int road_freq[2]; // roads frequency for roadset67, 1 for new roadset in this step
66 
67  // to save unique road [+/- muon]
68  std::vector<int> comp_id[2];
69  std::vector<int>::iterator it[2];
70 
71  int u_charge;
72  int u_tb;
73 
74  int u_rid;
75  int u_uid[4];
76  int u_eid[4];
77  float u_z[4];
78  float u_x[4];
79 
80  int u_freq;
81  float u_px_min;
82  float u_px_max;
83  float u_px_avg;
84  float u_px_rms;
85 
86  TFile* fp_mc[2];
87 
88 };
89 
90 
91 #endif /* _FPGA_TRIG_H_ */
User interface class about the geometry of detector planes.
Definition: GeomSvc.h:164
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