File indexing completed on 2024-04-06 12:19:41
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013 #ifndef DT_SECTCOLL_TH_SEGM_H
0014 #define DT_SECTCOLL_TH_SEGM_H
0015
0016
0017
0018
0019
0020
0021
0022
0023 #include "DataFormats/MuonDetId/interface/DTChamberId.h"
0024 #include "DataFormats/MuonDetId/interface/DTSectCollId.h"
0025 #include "L1Trigger/DTTriggerServerTheta/interface/DTChambThSegm.h"
0026 #include "L1Trigger/DTUtilities/interface/DTTrigData.h"
0027
0028
0029
0030
0031
0032
0033
0034
0035
0036 typedef unsigned char myint8;
0037
0038 class DTSectCollThSegm : public DTTrigData {
0039 public:
0040
0041 DTSectCollThSegm(DTSectCollId, int, const DTChambThSegm*);
0042
0043
0044 DTSectCollThSegm(const DTSectCollThSegm& seg);
0045
0046
0047 ~DTSectCollThSegm() override;
0048
0049
0050 DTSectCollThSegm& operator=(const DTSectCollThSegm& seg);
0051
0052
0053 void clear();
0054
0055
0056 inline int step() const { return m_step; }
0057
0058
0059 DTSectCollId SCId() const { return m_sectcollid; }
0060
0061
0062 DTChamberId ChamberId() const override { return m_tsthetatrig->ChamberId(); }
0063
0064
0065 void print() const override;
0066
0067
0068 inline int code(const int i) const { return m_tsthetatrig->code(i); };
0069
0070
0071 inline int position(const int i) const { return m_tsthetatrig->position(i); };
0072
0073
0074 inline int quality(const int i) const { return m_tsthetatrig->quality(i); };
0075
0076 private:
0077
0078 DTSectCollId m_sectcollid;
0079
0080
0081 myint8 m_step;
0082
0083
0084 const DTChambThSegm* m_tsthetatrig;
0085 };
0086
0087 #endif