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
|
#include "DataFormats/L1TMuonPhase2/interface/MuonStub.h"
#include <iostream>
#include <iomanip>
#include <cmath>
using namespace std;
using namespace l1t;
MuonStub::MuonStub()
: etaRegion_(0),
phiRegion_(0),
depthRegion_(0),
coord1_(0),
coord2_(0),
id_(0),
quality_(-1),
bxNum_(17),
eta1_(0),
eta2_(0),
etaQuality_(-1),
type_(0) {}
MuonStub::MuonStub(int etaRegion,
int phiRegion,
int depthRegion,
uint tfLayer,
int coord1,
int coord2,
int id,
int bx,
int quality,
int eta1,
int eta2,
int etaQuality,
int type)
: etaRegion_(etaRegion),
phiRegion_(phiRegion),
depthRegion_(depthRegion),
tfLayer_(tfLayer),
coord1_(coord1),
coord2_(coord2),
id_(id),
quality_(quality),
bxNum_(bx),
eta1_(eta1),
eta2_(eta2),
etaQuality_(etaQuality),
type_(type) {}
MuonStub::~MuonStub() {}
bool MuonStub::operator==(const MuonStub& id) const {
if (etaRegion_ != id.etaRegion_)
return false;
if (phiRegion_ != id.phiRegion_)
return false;
if (depthRegion_ != id.depthRegion_)
return false;
if (id_ != id.id_)
return false;
if (coord1_ != id.coord1_)
return false;
if (coord2_ != id.coord2_)
return false;
if (quality_ != id.quality_)
return false;
if (bxNum_ != id.bxNum_)
return false;
if (eta1_ != id.eta1_)
return false;
if (eta2_ != id.eta2_)
return false;
if (etaQuality_ != id.etaQuality_)
return false;
if (type_ != id.type_)
return false;
return true;
}
//
// output stream operator for phi track segments
//
void MuonStub::print() const {
LogDebug("MuonStub") << " MuonStub : BX=" << bxNum_ << " etaRegion=" << etaRegion_ << " phiRegion=" << phiRegion_
<< " depth=" << depthRegion_ << " ID=" << id_ << " coord1=" << coord1_ << " coord2=" << coord2_
<< " quality=" << quality_ << " eta1=" << eta1_ << " eta2=" << eta2_
<< " etaQuality=" << etaQuality_ << " type=" << type_;
}
|