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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
|
/*! \class TTCluster
* \brief Class to store the L1 Track Trigger clusters
* \details After moving from SimDataFormats to DataFormats,
* the template structure of the class was maintained
* in order to accomodate any types other than Phase2TrackerDigis
* in case there is such a need in the future.
*
* \author Nicola Pozzobon
* \author Emmanuele Salvati
* \date 2013, Jul 12
*
*/
#ifndef L1_TRACK_TRIGGER_CLUSTER_FORMAT_H
#define L1_TRACK_TRIGGER_CLUSTER_FORMAT_H
#include "DataFormats/Common/interface/Ref.h"
#include "DataFormats/Common/interface/Ptr.h"
#include "DataFormats/Common/interface/DetSet.h"
#include "DataFormats/Common/interface/DetSetVector.h"
#include "DataFormats/DetId/interface/DetId.h"
#include "DataFormats/Phase2TrackerDigi/interface/Phase2TrackerDigi.h"
#include "DataFormats/GeometryCommonDetAlgo/interface/MeasurementPoint.h"
#include "DataFormats/GeometryVector/interface/GlobalPoint.h" /// NOTE: this is needed even if it seems not
template <typename T>
class TTCluster {
public:
/// Constructors
TTCluster();
TTCluster(std::vector<T> aHits, DetId aDetId, unsigned int aStackMember, bool storeLocal);
/// Destructor
~TTCluster();
/// Data members: getABC( ... )
/// Helper methods: findABC( ... )
/// Hits in the Cluster
std::vector<T> getHits() const { return theHits; }
void setHits(std::vector<T> aHits) { theHits = aHits; }
/// Detector element
DetId getDetId() const { return theDetId; }
void setDetId(DetId aDetId) { theDetId = aDetId; }
unsigned int getStackMember() const { return theStackMember; }
void setStackMember(unsigned int aStackMember) { theStackMember = aStackMember; }
/// Rows and columns to get rid of Digi collection
std::vector<int> findRows() const;
std::vector<int> findCols() const;
void setCoordinates(std::vector<int> a, std::vector<int> b) {
theRows = a;
theCols = b;
}
std::vector<int> getRows() const { return theRows; }
std::vector<int> getCols() const { return theCols; }
/// Cluster width
unsigned int findWidth() const;
/// Single hit coordinates
/// Average cluster coordinates
MeasurementPoint findHitLocalCoordinates(unsigned int hitIdx) const;
MeasurementPoint findAverageLocalCoordinates() const;
MeasurementPoint findAverageLocalCoordinatesCentered() const;
/// Information
std::string print(unsigned int i = 0) const;
private:
/// Data members
std::vector<T> theHits;
DetId theDetId;
unsigned int theStackMember;
std::vector<int> theRows;
std::vector<int> theCols;
}; /// Close class
/*! \brief Implementation of methods
* \details Here, in the header file, the methods which do not depend
* on the specific type <T> that can fit the template.
* Other methods, with type-specific features, are implemented
* in the source file.
*/
/// Default Constructor
/// NOTE: to be used with setSomething(...) methods
template <typename T>
TTCluster<T>::TTCluster() {
/// Set default data members
theHits.clear();
theDetId = 0;
theStackMember = 0;
theRows.clear();
theCols.clear();
}
/// Another Constructor
template <typename T>
TTCluster<T>::TTCluster(std::vector<T> aHits, DetId aDetId, unsigned int aStackMember, bool storeLocal) {
/// Set data members
this->setHits(aHits);
this->setDetId(aDetId);
this->setStackMember(aStackMember);
theRows.clear();
theCols.clear();
if (storeLocal) {
this->setCoordinates(this->findRows(), this->findCols());
}
}
/// Destructor
template <typename T>
TTCluster<T>::~TTCluster() {}
/// Cluster width
template <>
unsigned int TTCluster<edm::Ref<edm::DetSetVector<Phase2TrackerDigi>, Phase2TrackerDigi> >::findWidth() const;
/// Single hit coordinates
/// Average cluster coordinates
template <>
MeasurementPoint TTCluster<edm::Ref<edm::DetSetVector<Phase2TrackerDigi>, Phase2TrackerDigi> >::findHitLocalCoordinates(
unsigned int hitIdx) const;
template <>
MeasurementPoint
TTCluster<edm::Ref<edm::DetSetVector<Phase2TrackerDigi>, Phase2TrackerDigi> >::findAverageLocalCoordinates() const;
/// Operations with coordinates stored locally
template <typename T>
std::vector<int> TTCluster<T>::findRows() const {
std::vector<int> temp;
return temp;
}
template <typename T>
std::vector<int> TTCluster<T>::findCols() const {
std::vector<int> temp;
return temp;
}
template <>
std::vector<int> TTCluster<edm::Ref<edm::DetSetVector<Phase2TrackerDigi>, Phase2TrackerDigi> >::findRows() const;
template <>
std::vector<int> TTCluster<edm::Ref<edm::DetSetVector<Phase2TrackerDigi>, Phase2TrackerDigi> >::findCols() const;
/// Information
template <typename T>
std::string TTCluster<T>::print(unsigned int i) const {
std::string padding("");
for (unsigned int j = 0; j != i; ++j) {
padding += "\t";
}
std::stringstream output;
output << padding << "TTCluster:\n";
padding += '\t';
output << padding << "DetId: " << theDetId.rawId() << '\n';
output << padding << "member: " << theStackMember << ", cluster size: " << theHits.size() << '\n';
return output.str();
}
template <typename T>
std::ostream& operator<<(std::ostream& os, const TTCluster<T>& aTTCluster) {
return (os << aTTCluster.print());
}
#endif
|