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
121
122
123
124
125
126
127
|
/** \file ME0egment.cc
*
* $Date: 2014/02/04 12:41:33 $
* \author Marcello Maggi
*/
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "DataFormats/GEMRecHit/interface/ME0Segment.h"
#include <iostream>
namespace {
// define a Super Layer Id from the first layer of the first rechits, and put to first layer
inline DetId buildDetId(ME0DetId id) { return ME0DetId(id.chamberId()); }
} // namespace
class ProjectionMatrixDiag {
// Aider class to make the return of the projection Matrix thread-safe
protected:
AlgebraicMatrix theProjectionMatrix;
public:
ProjectionMatrixDiag() : theProjectionMatrix(4, 5, 0) {
theProjectionMatrix[0][1] = 1;
theProjectionMatrix[1][2] = 1;
theProjectionMatrix[2][3] = 1;
theProjectionMatrix[3][4] = 1;
}
const AlgebraicMatrix& getMatrix() const { return (theProjectionMatrix); }
};
ME0Segment::ME0Segment(const std::vector<const ME0RecHit*>& proto_segment,
const LocalPoint& origin,
const LocalVector& direction,
const AlgebraicSymMatrix& errors,
float chi2)
: RecSegment(buildDetId(proto_segment.front()->me0Id())),
theOrigin(origin),
theLocalDirection(direction),
theCovMatrix(errors),
theChi2(chi2),
theTimeValue(0.),
theTimeUncrt(0.),
theDeltaPhi(0.) {
for (const auto* rh : proto_segment)
theME0RecHits.push_back(*rh);
}
ME0Segment::ME0Segment(const std::vector<const ME0RecHit*>& proto_segment,
const LocalPoint& origin,
const LocalVector& direction,
const AlgebraicSymMatrix& errors,
float chi2,
float time,
float timeErr,
float deltaPhi)
: RecSegment(buildDetId(proto_segment.front()->me0Id())),
theOrigin(origin),
theLocalDirection(direction),
theCovMatrix(errors),
theChi2(chi2),
theTimeValue(time),
theTimeUncrt(timeErr),
theDeltaPhi(deltaPhi) {
for (const auto* rh : proto_segment)
theME0RecHits.push_back(*rh);
}
ME0Segment::~ME0Segment() {}
std::vector<const TrackingRecHit*> ME0Segment::recHits() const {
std::vector<const TrackingRecHit*> pointersOfRecHits;
pointersOfRecHits.reserve(theME0RecHits.size());
for (const auto& rh : theME0RecHits)
pointersOfRecHits.push_back(&rh);
return pointersOfRecHits;
}
std::vector<TrackingRecHit*> ME0Segment::recHits() {
std::vector<TrackingRecHit*> pointersOfRecHits;
pointersOfRecHits.reserve(theME0RecHits.size());
for (auto& rh : theME0RecHits)
pointersOfRecHits.push_back(&rh);
return pointersOfRecHits;
}
LocalError ME0Segment::localPositionError() const {
return LocalError(theCovMatrix[2][2], theCovMatrix[2][3], theCovMatrix[3][3]);
}
LocalError ME0Segment::localDirectionError() const {
return LocalError(theCovMatrix[0][0], theCovMatrix[0][1], theCovMatrix[1][1]);
}
AlgebraicVector ME0Segment::parameters() const {
// For consistency with DT and CSC and what we require for the TrackingRecHit interface,
// the order of the parameters in the returned vector should be (dx/dz, dy/dz, x, z)
AlgebraicVector result(4);
if (theLocalDirection.z() != 0) {
result[0] = theLocalDirection.x() / theLocalDirection.z();
result[1] = theLocalDirection.y() / theLocalDirection.z();
}
result[2] = theOrigin.x();
result[3] = theOrigin.y();
return result;
}
AlgebraicMatrix ME0Segment::projectionMatrix() const {
static const ProjectionMatrixDiag theProjectionMatrix;
return (theProjectionMatrix.getMatrix());
}
//
void ME0Segment::print() const { LogDebug("ME0Segment") << *this; }
std::ostream& operator<<(std::ostream& os, const ME0Segment& seg) {
os << "ME0Segment: local pos = " << seg.localPosition() << " posErr = (" << sqrt(seg.localPositionError().xx()) << ","
<< sqrt(seg.localPositionError().yy()) << "0,)\n"
<< " dir = " << seg.localDirection() << " dirErr = (" << sqrt(seg.localDirectionError().xx()) << ","
<< sqrt(seg.localDirectionError().yy()) << "0,)\n"
<< " chi2/ndf = " << ((seg.degreesOfFreedom() != 0.) ? seg.chi2() / double(seg.degreesOfFreedom()) : 0)
<< " #rechits = " << seg.specificRecHits().size() << " time = " << seg.time() << " +/- " << seg.timeErr()
<< " ns ";
return os;
}
|