1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
#include <DataFormats/L1CSCTrackFinder/interface/TrackStub.h>
#include <DataFormats/L1CSCTrackFinder/interface/CSCBitWidths.h>
#include <DataFormats/MuonDetId/interface/CSCTriggerNumbering.h>
#include <DataFormats/MuonDetId/interface/DTChamberId.h>
#include <DataFormats/MuonDetId/interface/CSCDetId.h>
#include <DataFormats/MuonDetId/interface/MuonSubdetId.h>
namespace csctf {
const double TrackStub::thePhiBinning = CSCTFConstants::SECTOR_RAD / (1 << CSCBitWidths::kGlobalPhiDataBitWidth);
const double TrackStub::theEtaBinning = (CSCTFConstants::maxEta - CSCTFConstants::minEta) / (CSCTFConstants::etaBins);
TrackStub::TrackStub(const CSCCorrelatedLCTDigi& aDigi, const DetId& aDetId)
: CSCCorrelatedLCTDigi(aDigi), theDetId_(aDetId.rawId()), thePhi_(0), theEta_(0), link_(0) {}
TrackStub::TrackStub(const CSCCorrelatedLCTDigi& aDigi, const DetId& aDetId, const unsigned& phi, const unsigned& eta)
: CSCCorrelatedLCTDigi(aDigi), theDetId_(aDetId.rawId()), thePhi_(phi), theEta_(eta), link_(0) {}
unsigned TrackStub::endcap() const {
int e = 0;
switch (DetId(theDetId_).subdetId()) {
case (MuonSubdetId::DT):
e = (DTChamberId(theDetId_).wheel() > 0) ? 1 : 2;
break;
case (MuonSubdetId::CSC):
e = CSCDetId(theDetId_).endcap();
break;
default:
break;
}
return e;
}
unsigned TrackStub::station() const {
int s = 0;
switch (DetId(theDetId_).subdetId()) {
case (MuonSubdetId::DT):
s = DTChamberId(theDetId_).station() + 4;
break;
case (MuonSubdetId::CSC):
s = CSCDetId(theDetId_).station();
break;
default:
break;
}
return s;
}
unsigned TrackStub::sector() const {
int se = 0, temps = 0;
switch (DetId(theDetId_).subdetId()) {
case (MuonSubdetId::DT): {
temps = DTChamberId(theDetId_).sector();
const unsigned int dt2csc[12] = {6, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6};
se = dt2csc[temps - 1];
} break;
case (MuonSubdetId::CSC):
se = CSCTriggerNumbering::triggerSectorFromLabels(CSCDetId(theDetId_));
break;
default:
break;
}
return se;
}
unsigned TrackStub::subsector() const {
int ss = 0;
switch (DetId(theDetId_).subdetId()) {
case (MuonSubdetId::DT): {
ss = DTChamberId(theDetId_).sector();
const unsigned int dt2csc_[12] = {2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1};
ss = dt2csc_[ss - 1];
} break;
case (MuonSubdetId::CSC):
ss = CSCTriggerNumbering::triggerSubSectorFromLabels(CSCDetId(theDetId_));
break;
default:
break;
}
return ss;
}
unsigned TrackStub::cscid() const {
if (DetId(theDetId_).subdetId() == MuonSubdetId::CSC)
return CSCTriggerNumbering::triggerCscIdFromLabels(CSCDetId(theDetId_));
return 0; // DT chambers obviously don't have a csc id :-D
}
unsigned TrackStub::cscidSeparateME1a() const {
if (DetId(theDetId_).subdetId() != MuonSubdetId::CSC)
return 0;
CSCDetId id(theDetId_);
unsigned normal_cscid = CSCTriggerNumbering::triggerCscIdFromLabels(id);
if (id.station() == 1 && id.ring() == 4)
return normal_cscid + 9; // 10,11,12 for ME1a
return normal_cscid;
}
bool TrackStub::operator<(const TrackStub& rhs) const {
return (rhs.isValid() && ((!(isValid())) || (getQuality() < rhs.getQuality()) ||
(getQuality() == rhs.getQuality() && cscid() < rhs.cscid()) ||
(getQuality() == rhs.getQuality() && cscid() == rhs.cscid() && (getTrknmb() == 2))));
}
bool TrackStub::operator>(const TrackStub& rhs) const {
return (isValid() && ((!(rhs.isValid())) || (getQuality() > rhs.getQuality()) ||
(getQuality() == rhs.getQuality() && cscid() > rhs.cscid()) ||
(getQuality() == rhs.getQuality() && cscid() == rhs.cscid() && (getTrknmb() == 1))));
}
} // namespace csctf
|