CMS 3D CMS Logo

EMTFHit.h
Go to the documentation of this file.
1 // Class for input trigger primitives to EMTF - AWB 04.01.16
2 // Based on L1Trigger/L1TMuon/interface/MuonTriggerPrimitive.h
3 // In particular, see struct CSCData
4 
5 #ifndef DataFormats_L1TMuon_EMTFHit_h
6 #define DataFormats_L1TMuon_EMTFHit_h
7 
8 #include <cstdint>
9 #include <vector>
10 
20 
21 namespace l1t {
22 
23  class EMTFHit {
24  public:
25 
26  EMTFHit() :
27  rawDetId(0),
28  endcap(-99), station(-99), ring(-99), sector(-99), sector_RPC(-99), sector_idx(-99),
29  subsector(-99), subsector_RPC(-99), chamber(-99), csc_ID(-99), csc_nID(-99), roll(-99),
30  neighbor(-99), mpc_link(-99), pc_sector(-99), pc_station(-99), pc_chamber(-99), pc_segment(-99),
31  wire(-99), strip(-99), strip_hi(-99), strip_low(-99), track_num(-99), quality(-99),
32  pattern(-99), bend(-99), valid(-99), sync_err(-99), bc0(-99), bx(-99), stub_num(-99),
33  phi_fp(-99), theta_fp(-99), phzvl(-99), ph_hit(-99), zone_hit(-99), zone_code(-99),
34  fs_segment(-99), fs_zone_code(-99), bt_station(-99), bt_segment(-99),
35  phi_loc(-99), phi_glob(-999), theta(-99), eta(-99), time(-99),
36  phi_sim(-999), theta_sim(-99), eta_sim(-99), rho_sim(-99), z_sim(-99),
37  alct_quality(-99), clct_quality(-99),
38  is_CSC(-99), is_RPC(-99), is_GEM(-99), subsystem(-99)
39  {};
40 
41  virtual ~EMTFHit() {};
42 
43  // void ImportCSCDetId (const CSCDetId& _detId);
44  CSCDetId CreateCSCDetId() const;
45  // void ImportRPCDetId (const RPCDetId& _detId);
46  // void ImportGEMDetId (const GEMDetId& _detId);
47  // RPCDetId CreateRPCDetId() const;
48  // GEMDetId CreateGEMDetId() const;
49  // void ImportCSCCorrelatedLCTDigi (const CSCCorrelatedLCTDigi& _digi);
51  // void ImportRPCDigi (const RPCDigi& _digi);
52  // RPCDigi CreateRPCDigi() const;
53  // void ImportGEMPadDigi (const GEMPadDigi& _digi);
54  // GEMPadDigi CreateGEMPadDigi() const;
55 
56  // void PrintSimulatorHeader() const;
57  // void PrintForSimulator() const;
58 
59  //void SetCSCDetId (const CSCDetId& id) { csc_DetId = id; }
60  //void SetRPCDetId (const RPCDetId& id) { rpc_DetId = id; }
61  //void SetGEMDetId (const GEMDetId& id) { gem_DetId = id; }
62  //void SetCSCLCTDigi (const CSCCorrelatedLCTDigi& digi) { csc_LCTDigi = digi; }
63  //void SetRPCDigi (const RPCDigi& digi) { rpc_Digi = digi; }
64  //void SetGEMPadDigi (const GEMPadDigi& digi) { gem_PadDigi = digi; }
65  void SetCSCDetId (const CSCDetId& id) { rawDetId = id.rawId(); }
66  void SetRPCDetId (const RPCDetId& id) { rawDetId = id.rawId(); }
67  void SetGEMDetId (const GEMDetId& id) { rawDetId = id.rawId(); }
68  void SetME0DetId (const ME0DetId& id) { rawDetId = id.rawId(); }
69 
70  //CSCDetId CSC_DetId () const { return csc_DetId; }
71  //RPCDetId RPC_DetId () const { return rpc_DetId; }
72  //GEMDetId GEM_DetId () const { return gem_DetId; }
73  //CSCCorrelatedLCTDigi CSC_LCTDigi () const { return csc_LCTDigi; }
74  //RPCDigi RPC_Digi () const { return rpc_Digi; }
75  //GEMPadDigi GEM_PadDigi () const { return gem_PadDigi; }
76  CSCDetId CSC_DetId () const { return CSCDetId(rawDetId); }
77  RPCDetId RPC_DetId () const { return RPCDetId(rawDetId); }
78  GEMDetId GEM_DetId () const { return GEMDetId(rawDetId); }
79  ME0DetId ME0_DetId () const { return ME0DetId(rawDetId); }
80 
81  void set_endcap (int bits) { endcap = bits; }
82  void set_station (int bits) { station = bits; }
83  void set_ring (int bits) { ring = bits; }
84  void set_sector (int bits) { sector = bits; }
85  void set_sector_RPC (int bits) { sector_RPC = bits; }
86  void set_sector_idx (int bits) { sector_idx = bits; }
87  void set_subsector (int bits) { subsector = bits; }
89  void set_chamber (int bits) { chamber = bits; }
90  void set_csc_ID (int bits) { csc_ID = bits; }
91  void set_csc_nID (int bits) { csc_nID = bits; }
92  void set_roll (int bits) { roll = bits; }
93  void set_neighbor (int bits) { neighbor = bits; }
94  void set_mpc_link (int bits) { mpc_link = bits; }
95  void set_pc_sector (int bits) { pc_sector = bits; }
96  void set_pc_station (int bits) { pc_station = bits; }
97  void set_pc_chamber (int bits) { pc_chamber = bits; }
98  void set_pc_segment (int bits) { pc_segment = bits; }
99  void set_wire (int bits) { wire = bits; }
100  void set_strip (int bits) { strip = bits; }
101  void set_strip_hi (int bits) { strip_hi = bits; }
102  void set_strip_low (int bits) { strip_low = bits; }
103  void set_track_num (int bits) { track_num = bits; }
104  void set_quality (int bits) { quality = bits; }
105  void set_pattern (int bits) { pattern = bits; }
106  void set_bend (int bits) { bend = bits; }
107  void set_valid (int bits) { valid = bits; }
108  void set_sync_err (int bits) { sync_err = bits; }
109  void set_bc0 (int bits) { bc0 = bits; }
110  void set_bx (int bits) { bx = bits; }
111  void set_stub_num (int bits) { stub_num = bits; }
112  void set_phi_fp (int bits) { phi_fp = bits; }
113  void set_theta_fp (int bits) { theta_fp = bits; }
114  void set_phzvl (int bits) { phzvl = bits; }
115  void set_ph_hit (int bits) { ph_hit = bits; }
116  void set_zone_hit (int bits) { zone_hit = bits; }
117  void set_zone_code (int bits) { zone_code = bits; }
118  void set_fs_segment (int bits) { fs_segment = bits; }
120  void set_bt_station (int bits) { bt_station = bits; }
121  void set_bt_segment (int bits) { bt_segment = bits; }
122  void set_phi_loc (float val) { phi_loc = val; }
123  void set_phi_glob (float val) { phi_glob = val; }
124  void set_theta (float val) { theta = val; }
125  void set_eta (float val) { eta = val; }
126  void set_time (float val) { time = val; }
127  void set_phi_sim (float val) { phi_sim = val; }
128  void set_theta_sim (float val) { theta_sim = val; }
129  void set_eta_sim (float val) { eta_sim = val; }
130  void set_rho_sim (float val) { rho_sim = val; }
131  void set_z_sim (float val) { z_sim = val; }
134  void set_is_CSC (int bits) { is_CSC = bits; }
135  void set_is_RPC (int bits) { is_RPC = bits; }
136  void set_is_GEM (int bits) { is_GEM = bits; }
137  void set_subsystem (int bits) { subsystem = bits; }
138 
139  int Endcap () const { return endcap ; }
140  int Station () const { return station ; }
141  int Ring () const { return ring ; }
142  int Sector () const { return sector ; }
143  int Sector_RPC () const { return sector_RPC ; }
144  int Sector_idx () const { return sector_idx ; }
145  int Subsector () const { return subsector ; }
146  int Subsector_RPC() const { return subsector_RPC; }
147  int Chamber () const { return chamber ; }
148  int CSC_ID () const { return csc_ID ; }
149  int CSC_nID () const { return csc_nID ; }
150  int Roll () const { return roll ; }
151  int Neighbor () const { return neighbor ; }
152  int MPC_link () const { return mpc_link ; }
153  int PC_sector () const { return pc_sector ; }
154  int PC_station () const { return pc_station ; }
155  int PC_chamber () const { return pc_chamber ; }
156  int PC_segment () const { return pc_segment ; }
157  int Wire () const { return wire ; }
158  int Strip () const { return strip ; }
159  int Strip_hi () const { return strip_hi ; }
160  int Strip_low () const { return strip_low ; }
161  int Track_num () const { return track_num ; }
162  int Quality () const { return quality ; }
163  int Pattern () const { return pattern ; }
164  int Bend () const { return bend ; }
165  int Valid () const { return valid ; }
166  int Sync_err () const { return sync_err ; }
167  int BC0 () const { return bc0 ; }
168  int BX () const { return bx ; }
169  int Stub_num () const { return stub_num ; }
170  int Phi_fp () const { return phi_fp ; }
171  int Theta_fp () const { return theta_fp ; }
172  int Phzvl () const { return phzvl ; }
173  int Ph_hit () const { return ph_hit ; }
174  int Zone_hit () const { return zone_hit ; }
175  int Zone_code () const { return zone_code ; }
176  int FS_segment () const { return fs_segment ; }
177  int FS_zone_code () const { return fs_zone_code; }
178  int BT_station () const { return bt_station ; }
179  int BT_segment () const { return bt_segment ; }
180  float Phi_loc () const { return phi_loc ; }
181  float Phi_glob () const { return phi_glob ; }
182  float Theta () const { return theta ; }
183  float Eta () const { return eta ; }
184  float Time () const { return time ; }
185  float Phi_sim () const { return phi_sim ; }
186  float Theta_sim () const { return theta_sim ; }
187  float Eta_sim () const { return eta_sim ; }
188  float Rho_sim () const { return rho_sim ; }
189  float Z_sim () const { return z_sim ; }
190  int ALCT_quality () const { return alct_quality; }
191  int CLCT_quality () const { return clct_quality; }
192  int Is_CSC () const { return is_CSC ; }
193  int Is_RPC () const { return is_RPC ; }
194  int Is_GEM () const { return is_GEM ; }
195  int Subsystem () const { return subsystem ; }
196 
197 
198  private:
199 
200  //CSCDetId csc_DetId;
201  //RPCDetId rpc_DetId;
202  //GEMDetId gem_DetId;
203  //CSCCorrelatedLCTDigi csc_LCTDigi;
204  //RPCDigi rpc_Digi;
205  //GEMPadDigi gem_PadDigi;
206 
207  uint32_t rawDetId; // raw CMSSW DetId
208 
209  int endcap ; // +/-1. For ME+ and ME-.
210  int station ; // 1 - 4.
211  int ring ; // 1 - 4. ME1/1a is denoted as "Ring 4". Should check dependence on input CSCDetId convention. - AWB 02.03.17
212  int sector ; // 1 - 6. CSC / EMTF sector convention: sector 1 starts at 15 degrees
213  int sector_RPC ; // 1 - 6. RPC sector convention (in CMSSW): sector 1 starts at -5 degrees
214  int sector_idx ; // 0 - 11. 0 - 5 for ME+, 6 - 11 for ME-. For neighbor hits, set by EMTF sector that received it.
215  int subsector ; // 0 - 6. In CSCs, 1 or 2 for ME1, 0 for ME2/3/4. In RPCs, 1 - 6, where 1 is first chamber in EMTF sector.
216  int subsector_RPC; // 0 - 6. RPC sector convention (in CMSSW): subsector 3 is the first chamber in the EMTF sector.
217  int chamber ; // 1 - 36. Chamber 1 starts at -5 degrees.
218  int csc_ID ; // 1 - 9. For CSCs only.
219  int csc_nID ; // 1 - 15. For CSCs only. Neighbors 10 - 15, 12 not filled.
220  int roll ; // 1 - 3. For RPCs only, sub-division of ring. (Range? - AWB 02.03.17)
221  int neighbor ; // 0 or 1. Filled in EMTFBlockME.cc
222  int mpc_link ; // 1 - 3. Filled in EMTFHit.cc from CSCCorrelatedLCTDigi
223  int pc_sector ; // 1 - 6. EMTF sector that received the LCT, even those sent from neighbor sectors.
224  int pc_station ; // 0 - 5. 0 for ME1 subsector 1, 5 for neighbor hits.
225  int pc_chamber ; // 0 - 8.
226  int pc_segment ; // 0 - 3.
227  int wire ; // 0 - 111 For CSCs only.
228  int strip ; // 0 - 158 For CSCs only.
229  int strip_hi ; // ? - ?. For RPCs only, highest strip in a cluster. (Range? - AWB 02.03.17)
230  int strip_low ; // ? - ?. For RPCs only, lowest strip in a cluster. (Range? - AWB 02.03.17)
231  int track_num ; // ? - ?. For CSCs only. (Range? - AWB 02.03.17)
232  int quality ; // 0 - 15. For CSCs only.
233  int pattern ; // 0 - 10. For CSCs only.
234  int bend ; // 0 or 1. For CSCs only.
235  int valid ; // 0 or 1. For CSCs only (for now; could use to flag failing clusters? - AWB 02.03.17)
236  int sync_err ; // 0 or 1. For CSCs only.
237  int bc0 ; // 0 or 1. Only from unpacked data? - AWB 02.03.17
238  int bx ; // -3 - +3.
239  int stub_num ; // 0 or 1. Only from unpacked data? - AWB 02.03.17
240  int phi_fp ; // 0 - 4920
241  int theta_fp ; // 0 - 127
242  int phzvl ; // 0 - 6.
243  int ph_hit ; // 2 - 43. (Range? - AWB 02.03.17)
244  int zone_hit ; // 4 - 156 (Range? - AWB 02.03.17)
245  int zone_code ; // 0 - 12. (Range? - AWB 02.03.17)
246  int fs_segment ; // 0 - 13. (Range? - AWB 02.03.17)
247  int fs_zone_code; // 1 - 14. (Range? - AWB 02.03.17)
248  int bt_station ; // 0 - 4.
249  int bt_segment ; // 0 - 25. (Range? - AWB 02.03.17)
250  float phi_loc ; // -20 - 60 (Range? - AWB 02.03.17)
251  float phi_glob ; // +/-180.
252  float theta ; // 0 - 90.
253  float eta ; // +/-2.5.
254  float time ; // ? - ?. RPC time information
255  float phi_sim ; // +/-180.
256  float theta_sim ; // 0 - 90.
257  float eta_sim ; // +/-2.5.
258  float rho_sim ; // ? - ?.
259  float z_sim ; // ? - ?.
260  int alct_quality; // 1 - 3. For emulated CSC LCTs only, maps to number of ALCT layers (4 - 6).
261  int clct_quality; // 4 - 6. For emulated CSC LCTs only, maps to number of CLCT layers (4 - 6).
262  int is_CSC ; // 0 or 1.
263  int is_RPC ; // 0 or 1.
264  int is_GEM ; // 0 or 1.
265  int subsystem ; // 1 or ?. 1 for CSC, 2 for RPC, 3 for GEM
266 
267  }; // End of class EMTFHit
268 
269  // Define a vector of EMTFHit
270  typedef std::vector<EMTFHit> EMTFHitCollection;
271 
272 } // End of namespace l1t
273 
274 #endif /* define DataFormats_L1TMuon_EMTFHit_h */
void set_subsector_RPC(int bits)
Definition: EMTFHit.h:88
void set_phi_glob(float val)
Definition: EMTFHit.h:123
RPCDetId RPC_DetId() const
Definition: EMTFHit.h:77
int Strip_hi() const
Definition: EMTFHit.h:159
int Quality() const
Definition: EMTFHit.h:162
void set_theta_sim(float val)
Definition: EMTFHit.h:128
float Phi_sim() const
Definition: EMTFHit.h:185
void set_is_GEM(int bits)
Definition: EMTFHit.h:136
void set_neighbor(int bits)
Definition: EMTFHit.h:93
int Subsystem() const
Definition: EMTFHit.h:195
void set_rho_sim(float val)
Definition: EMTFHit.h:130
int csc_nID
Definition: EMTFHit.h:219
int Bend() const
Definition: EMTFHit.h:164
int Phzvl() const
Definition: EMTFHit.h:172
int station
Definition: EMTFHit.h:210
void set_csc_nID(int bits)
Definition: EMTFHit.h:91
float Phi_loc() const
Definition: EMTFHit.h:180
int BT_segment() const
Definition: EMTFHit.h:179
void set_pc_station(int bits)
Definition: EMTFHit.h:96
int is_CSC
Definition: EMTFHit.h:262
void set_phi_sim(float val)
Definition: EMTFHit.h:127
int Strip() const
Definition: EMTFHit.h:158
int mpc_link
Definition: EMTFHit.h:222
int neighbor
Definition: EMTFHit.h:221
float phi_sim
Definition: EMTFHit.h:255
float Rho_sim() const
Definition: EMTFHit.h:188
float Eta_sim() const
Definition: EMTFHit.h:187
int is_RPC
Definition: EMTFHit.h:263
void set_stub_num(int bits)
Definition: EMTFHit.h:111
float phi_loc
Definition: EMTFHit.h:250
int CSC_nID() const
Definition: EMTFHit.h:149
int FS_zone_code() const
Definition: EMTFHit.h:177
float z_sim
Definition: EMTFHit.h:259
int Phi_fp() const
Definition: EMTFHit.h:170
void set_station(int bits)
Definition: EMTFHit.h:82
void set_ph_hit(int bits)
Definition: EMTFHit.h:115
void set_theta(float val)
Definition: EMTFHit.h:124
int CLCT_quality() const
Definition: EMTFHit.h:191
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision bits
int Zone_hit() const
Definition: EMTFHit.h:174
int is_GEM
Definition: EMTFHit.h:264
float Theta() const
Definition: EMTFHit.h:182
void set_bt_station(int bits)
Definition: EMTFHit.h:120
int sector_idx
Definition: EMTFHit.h:214
void set_eta_sim(float val)
Definition: EMTFHit.h:129
int pc_sector
Definition: EMTFHit.h:223
void set_sector_idx(int bits)
Definition: EMTFHit.h:86
int MPC_link() const
Definition: EMTFHit.h:152
void set_bc0(int bits)
Definition: EMTFHit.h:109
virtual ~EMTFHit()
Definition: EMTFHit.h:41
int Roll() const
Definition: EMTFHit.h:150
delete x;
Definition: CaloConfig.h:22
float Phi_glob() const
Definition: EMTFHit.h:181
void set_sync_err(int bits)
Definition: EMTFHit.h:108
int sync_err
Definition: EMTFHit.h:236
int subsector_RPC
Definition: EMTFHit.h:216
float time
Definition: EMTFHit.h:254
int sector_RPC
Definition: EMTFHit.h:213
float Time() const
Definition: EMTFHit.h:184
float theta
Definition: EMTFHit.h:252
void SetME0DetId(const ME0DetId &id)
Definition: EMTFHit.h:68
float Eta() const
Definition: EMTFHit.h:183
GEMDetId GEM_DetId() const
Definition: EMTFHit.h:78
void set_theta_fp(int bits)
Definition: EMTFHit.h:113
float theta_sim
Definition: EMTFHit.h:256
float Theta_sim() const
Definition: EMTFHit.h:186
int ALCT_quality() const
Definition: EMTFHit.h:190
void set_endcap(int bits)
Definition: EMTFHit.h:81
void set_ring(int bits)
Definition: EMTFHit.h:83
int Chamber() const
Definition: EMTFHit.h:147
int PC_sector() const
Definition: EMTFHit.h:153
int subsystem
Definition: EMTFHit.h:265
int Wire() const
Definition: EMTFHit.h:157
int zone_code
Definition: EMTFHit.h:245
void SetRPCDetId(const RPCDetId &id)
Definition: EMTFHit.h:66
int Subsector() const
Definition: EMTFHit.h:145
int PC_station() const
Definition: EMTFHit.h:154
int Sector() const
Definition: EMTFHit.h:142
void set_strip_low(int bits)
Definition: EMTFHit.h:102
float rho_sim
Definition: EMTFHit.h:258
int Strip_low() const
Definition: EMTFHit.h:160
int Valid() const
Definition: EMTFHit.h:165
void set_phzvl(int bits)
Definition: EMTFHit.h:114
int subsector
Definition: EMTFHit.h:215
float eta_sim
Definition: EMTFHit.h:257
int Sync_err() const
Definition: EMTFHit.h:166
int fs_zone_code
Definition: EMTFHit.h:247
void set_bt_segment(int bits)
Definition: EMTFHit.h:121
int PC_segment() const
Definition: EMTFHit.h:156
int pc_segment
Definition: EMTFHit.h:226
int stub_num
Definition: EMTFHit.h:239
int Track_num() const
Definition: EMTFHit.h:161
int BX() const
Definition: EMTFHit.h:168
int Is_CSC() const
Definition: EMTFHit.h:192
void set_is_CSC(int bits)
Definition: EMTFHit.h:134
void set_pattern(int bits)
Definition: EMTFHit.h:105
int Ph_hit() const
Definition: EMTFHit.h:173
int Subsector_RPC() const
Definition: EMTFHit.h:146
void set_csc_ID(int bits)
Definition: EMTFHit.h:90
std::vector< EMTFHit > EMTFHitCollection
Definition: EMTFHit.h:270
int FS_segment() const
Definition: EMTFHit.h:176
void set_pc_chamber(int bits)
Definition: EMTFHit.h:97
void set_strip_hi(int bits)
Definition: EMTFHit.h:101
int BT_station() const
Definition: EMTFHit.h:178
void set_wire(int bits)
Definition: EMTFHit.h:99
int zone_hit
Definition: EMTFHit.h:244
uint32_t rawDetId
Definition: EMTFHit.h:207
CSCDetId CSC_DetId() const
Definition: EMTFHit.h:76
CSCDetId CreateCSCDetId() const
Definition: EMTFHit.cc:6
int Ring() const
Definition: EMTFHit.h:141
CSCCorrelatedLCTDigi CreateCSCCorrelatedLCTDigi() const
Definition: EMTFHit.cc:18
void set_time(float val)
Definition: EMTFHit.h:126
void set_phi_loc(float val)
Definition: EMTFHit.h:122
int pattern
Definition: EMTFHit.h:233
int Sector_RPC() const
Definition: EMTFHit.h:143
void set_pc_segment(int bits)
Definition: EMTFHit.h:98
int PC_chamber() const
Definition: EMTFHit.h:155
int Sector_idx() const
Definition: EMTFHit.h:144
void set_is_RPC(int bits)
Definition: EMTFHit.h:135
void SetCSCDetId(const CSCDetId &id)
Definition: EMTFHit.h:65
int endcap
Definition: EMTFHit.h:209
void set_fs_segment(int bits)
Definition: EMTFHit.h:118
void set_sector_RPC(int bits)
Definition: EMTFHit.h:85
int ph_hit
Definition: EMTFHit.h:243
ME0DetId ME0_DetId() const
Definition: EMTFHit.h:79
void set_sector(int bits)
Definition: EMTFHit.h:84
int strip_low
Definition: EMTFHit.h:230
int Station() const
Definition: EMTFHit.h:140
int bt_station
Definition: EMTFHit.h:248
void set_valid(int bits)
Definition: EMTFHit.h:107
void set_z_sim(float val)
Definition: EMTFHit.h:131
int Is_GEM() const
Definition: EMTFHit.h:194
int pc_chamber
Definition: EMTFHit.h:225
void set_strip(int bits)
Definition: EMTFHit.h:100
int track_num
Definition: EMTFHit.h:231
int pc_station
Definition: EMTFHit.h:224
int quality
Definition: EMTFHit.h:232
float eta
Definition: EMTFHit.h:253
int alct_quality
Definition: EMTFHit.h:260
void set_subsystem(int bits)
Definition: EMTFHit.h:137
int phi_fp
Definition: EMTFHit.h:240
int theta_fp
Definition: EMTFHit.h:241
float Z_sim() const
Definition: EMTFHit.h:189
int strip_hi
Definition: EMTFHit.h:229
void set_track_num(int bits)
Definition: EMTFHit.h:103
void set_zone_code(int bits)
Definition: EMTFHit.h:117
void SetGEMDetId(const GEMDetId &id)
Definition: EMTFHit.h:67
int Pattern() const
Definition: EMTFHit.h:163
float phi_glob
Definition: EMTFHit.h:251
int sector
Definition: EMTFHit.h:212
void set_bx(int bits)
Definition: EMTFHit.h:110
int chamber
Definition: EMTFHit.h:217
int Zone_code() const
Definition: EMTFHit.h:175
void set_zone_hit(int bits)
Definition: EMTFHit.h:116
int fs_segment
Definition: EMTFHit.h:246
int Endcap() const
Definition: EMTFHit.h:139
int Stub_num() const
Definition: EMTFHit.h:169
int clct_quality
Definition: EMTFHit.h:261
int bt_segment
Definition: EMTFHit.h:249
void set_fs_zone_code(int bits)
Definition: EMTFHit.h:119
int Theta_fp() const
Definition: EMTFHit.h:171
void set_clct_quality(int bits)
Definition: EMTFHit.h:133
int BC0() const
Definition: EMTFHit.h:167
void set_quality(int bits)
Definition: EMTFHit.h:104
void set_mpc_link(int bits)
Definition: EMTFHit.h:94
void set_chamber(int bits)
Definition: EMTFHit.h:89
int Neighbor() const
Definition: EMTFHit.h:151
void set_subsector(int bits)
Definition: EMTFHit.h:87
void set_bend(int bits)
Definition: EMTFHit.h:106
void set_alct_quality(int bits)
Definition: EMTFHit.h:132
int CSC_ID() const
Definition: EMTFHit.h:148
void set_phi_fp(int bits)
Definition: EMTFHit.h:112
void set_roll(int bits)
Definition: EMTFHit.h:92
int Is_RPC() const
Definition: EMTFHit.h:193
void set_pc_sector(int bits)
Definition: EMTFHit.h:95
void set_eta(float val)
Definition: EMTFHit.h:125
int csc_ID
Definition: EMTFHit.h:218