File indexing completed on 2024-04-06 12:04:35
0001 #include "DataFormats/L1TMuonPhase2/interface/EMTFHit.h"
0002
0003 using namespace l1t::phase2;
0004
0005 EMTFHit::EMTFHit()
0006 : id_(0),
0007
0008 raw_det_id_(0),
0009 subsystem_(0),
0010 endcap_(0),
0011 sector_(0),
0012 subsector_(0),
0013 station_(0),
0014 ring_(0),
0015 roll_(0),
0016 layer_(0),
0017 chamber_(0),
0018
0019 csc_id_(0),
0020 csc_fr_(0),
0021
0022 strip_(0),
0023 strip_lo_(0),
0024 strip_hi_(0),
0025 strip_quart_(0),
0026 strip_eighth_(0),
0027 strip_quart_bit_(0),
0028 strip_eighth_bit_(0),
0029
0030 wire1_(0),
0031 wire2_(0),
0032
0033 bx_(0),
0034 subbx_(0),
0035
0036 quality_(0),
0037 pattern_(0),
0038
0039 glob_phi_(0),
0040 glob_theta_(0),
0041 glob_perp_(0),
0042 glob_z_(0),
0043 glob_time_(0),
0044
0045 emtf_chamber_(0),
0046 emtf_segment_(0),
0047 emtf_phi_(0),
0048 emtf_bend_(0),
0049 emtf_slope_(0),
0050 emtf_theta1_(0),
0051 emtf_theta2_(0),
0052 emtf_qual1_(0),
0053 emtf_qual2_(0),
0054 emtf_time_(0),
0055 emtf_site_(0),
0056 emtf_host_(0),
0057 emtf_zones_(0),
0058 emtf_timezones_(0),
0059
0060 flag_neighbor_(false),
0061 flag_substitute_(false),
0062 flag_valid_(false) {
0063
0064 }