File indexing completed on 2024-04-06 12:21:02
0001 #include "L1Trigger/L1TMuon/interface/MuonTriggerPrimitive.h"
0002
0003 #include "L1Trigger/L1TMuonEndCapPhase2/interface/DAQ/TPrimitives.h"
0004
0005 using namespace emtf::phase2;
0006
0007 TPEntry::TPEntry(const TPEntry& tp_entry) : tp_(tp_entry.tp_), info_(tp_entry.info_) {
0008
0009 }
0010
0011 TPEntry::TPEntry(const TriggerPrimitive& tp) : tp_(tp), info_() {
0012
0013 }
0014
0015 TPEntry::TPEntry(const TriggerPrimitive& tp, const TPInfo& tp_info) : tp_(tp), info_(tp_info) {
0016
0017 }
0018
0019 TPEntry::TPEntry(const CSCDetId& detid, const CSCCorrelatedLCTDigi& digi) : tp_(detid, digi), info_() {
0020
0021 }
0022
0023 TPEntry::TPEntry(const RPCDetId& detid, const RPCRecHit& rechit) : tp_(detid, rechit), info_() {
0024
0025 }
0026
0027 TPEntry::TPEntry(const GEMDetId& detid, const GEMPadDigiCluster& digi) : tp_(detid, digi), info_() {
0028
0029 }
0030
0031 TPEntry::TPEntry(const ME0DetId& detid, const ME0TriggerDigi& digi) : tp_(detid, digi), info_() {
0032
0033 }
0034
0035 TPEntry::TPEntry(const GEMDetId& detid, const ME0TriggerDigi& digi) : tp_(detid, digi), info_() {
0036
0037 }
0038
0039 TPEntry::~TPEntry() {
0040
0041 }