CMS 3D CMS Logo

TPrimitives.cc
Go to the documentation of this file.
2 
4 
5 using namespace emtf::phase2;
6 
7 TPEntry::TPEntry(const TPEntry& tp_entry) : tp_(tp_entry.tp_), info_(tp_entry.info_) {
8  // Do nothing
9 }
10 
11 TPEntry::TPEntry(const TriggerPrimitive& tp) : tp_(tp), info_() {
12  // Do nothing
13 }
14 
15 TPEntry::TPEntry(const TriggerPrimitive& tp, const TPInfo& tp_info) : tp_(tp), info_(tp_info) {
16  // Do nothing
17 }
18 
19 TPEntry::TPEntry(const CSCDetId& detid, const CSCCorrelatedLCTDigi& digi) : tp_(detid, digi), info_() {
20  // Do nothing
21 }
22 
23 TPEntry::TPEntry(const RPCDetId& detid, const RPCRecHit& rechit) : tp_(detid, rechit), info_() {
24  // Do nothing
25 }
26 
27 TPEntry::TPEntry(const GEMDetId& detid, const GEMPadDigiCluster& digi) : tp_(detid, digi), info_() {
28  // Do nothing
29 }
30 
31 TPEntry::TPEntry(const ME0DetId& detid, const ME0TriggerDigi& digi) : tp_(detid, digi), info_() {
32  // Do nothing
33 }
34 
35 TPEntry::TPEntry(const GEMDetId& detid, const ME0TriggerDigi& digi) : tp_(detid, digi), info_() {
36  // Do nothing
37 }
38 
40  // Do nothing
41 }
TPEntry(const TPEntry &)
Definition: TPrimitives.cc:7