Back to home page

Project CMSSW displayed by LXR

 
 

    


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   // Do nothing
0009 }
0010 
0011 TPEntry::TPEntry(const TriggerPrimitive& tp) : tp_(tp), info_() {
0012   // Do nothing
0013 }
0014 
0015 TPEntry::TPEntry(const TriggerPrimitive& tp, const TPInfo& tp_info) : tp_(tp), info_(tp_info) {
0016   // Do nothing
0017 }
0018 
0019 TPEntry::TPEntry(const CSCDetId& detid, const CSCCorrelatedLCTDigi& digi) : tp_(detid, digi), info_() {
0020   // Do nothing
0021 }
0022 
0023 TPEntry::TPEntry(const RPCDetId& detid, const RPCRecHit& rechit) : tp_(detid, rechit), info_() {
0024   // Do nothing
0025 }
0026 
0027 TPEntry::TPEntry(const GEMDetId& detid, const GEMPadDigiCluster& digi) : tp_(detid, digi), info_() {
0028   // Do nothing
0029 }
0030 
0031 TPEntry::TPEntry(const ME0DetId& detid, const ME0TriggerDigi& digi) : tp_(detid, digi), info_() {
0032   // Do nothing
0033 }
0034 
0035 TPEntry::TPEntry(const GEMDetId& detid, const ME0TriggerDigi& digi) : tp_(detid, digi), info_() {
0036   // Do nothing
0037 }
0038 
0039 TPEntry::~TPEntry() {
0040   // Do nothing
0041 }