11 #ifndef RecoPPS_Local_CTPPSTimingTrackRecognition 12 #define RecoPPS_Local_CTPPSTimingTrackRecognition 22 #include <unordered_map> 30 template <
typename TRACK_TYPE,
typename HIT_TYPE>
34 :
threshold_(iConfig.getParameter<double>(
"threshold")),
36 resolution_(iConfig.getParameter<double>(
"resolution")),
37 sigma_(iConfig.getParameter<double>(
"sigma")),
38 tolerance_(iConfig.getParameter<double>(
"tolerance")),
42 <<
"Invalid number of parameters to the pixel efficiency function! " 95 float (*getHitCenter)(
const HIT_TYPE&),
96 float (*getHitRangeWidth)(
const HIT_TYPE&),
97 void (*setTrackCenter)(TRACK_TYPE&,
float),
98 void (*setTrackSigma)(TRACK_TYPE&,
float),
118 template <
class TRACK_TYPE,
class HIT_TYPE>
121 const DimensionParameters& param,
122 float (*getHitCenter)(
const HIT_TYPE&),
123 float (*getHitRangeWidth)(
const HIT_TYPE&),
124 void (*setTrackCenter)(TRACK_TYPE&,
float),
125 void (*setTrackSigma)(TRACK_TYPE&,
float),
127 const float invResolution = 1. / resolution_;
128 const float profileRangeMargin = sigma_ * 3.;
129 const float profileRangeBegin = param.rangeBegin - profileRangeMargin;
130 const float profileRangeEnd = param.rangeEnd + profileRangeMargin;
132 std::vector<float> hitProfile((profileRangeEnd - profileRangeBegin) * invResolution + 1, 0.);
134 *hitProfile.rbegin() = -1.f;
138 const float center = getHitCenter(
hit), rangeWidth = getHitRangeWidth(
hit);
139 std::vector<double>
params{center, rangeWidth, sigma_};
140 for (
unsigned int i = 0;
i < hitProfile.size(); ++
i)
142 pixelEfficiencyFunction_.
evaluate(std::vector<double>{profileRangeBegin + i * resolution_},
params);
145 bool underThreshold =
true;
146 float rangeMaximum = -1.0f;
147 bool trackRangeFound =
false;
148 int trackRangeBegin = 0, trackRangeEnd = 0;
151 for (
unsigned int i = 0;
i < hitProfile.size();
i++) {
152 if (hitProfile[
i] > rangeMaximum)
153 rangeMaximum = hitProfile[
i];
156 if (underThreshold && hitProfile[
i] > threshold_) {
157 underThreshold =
false;
159 rangeMaximum = hitProfile[
i];
163 else if (!underThreshold && hitProfile[
i] <= threshold_) {
164 underThreshold =
true;
166 trackRangeFound =
true;
170 if (trackRangeFound) {
171 float trackThreshold = rangeMaximum - thresholdFromMaximum_;
173 bool underTrackThreshold =
true;
175 for (
int j = trackRangeBegin;
j <= trackRangeEnd;
j++) {
176 if (underTrackThreshold && hitProfile[
j] > trackThreshold) {
177 underTrackThreshold =
false;
179 }
else if (!underTrackThreshold && hitProfile[
j] <= trackThreshold) {
180 underTrackThreshold =
true;
182 float leftMargin = profileRangeBegin + resolution_ * trackBegin;
183 float rightMargin = profileRangeBegin + resolution_ *
j;
184 setTrackCenter(
track, 0.5
f * (leftMargin + rightMargin));
185 setTrackSigma(
track, 0.5
f * (rightMargin - leftMargin));
189 trackRangeFound =
false;
194 template <
class TRACK_TYPE,
class HIT_TYPE>
197 bool initialized =
false;
201 const float xBegin =
hit.
x() - 0.5f *
hit.xWidth(), xEnd =
hit.
x() + 0.5f *
hit.xWidth();
202 const float yBegin =
hit.
y() - 0.5f *
hit.yWidth(), yEnd =
hit.
y() + 0.5f *
hit.yWidth();
203 const float zBegin =
hit.
z() - 0.5f *
hit.zWidth(), zEnd =
hit.
z() + 0.5f *
hit.zWidth();
226 template <
class TRACK_TYPE,
class HIT_TYPE>
229 float& time_sigma)
const {
230 float mean_num = 0.f, mean_denom = 0.f;
231 bool valid_hits =
false;
233 if (
hit.tPrecision() <= 0.)
240 mean_time = valid_hits ? (mean_num / mean_denom) : 0.
f;
241 time_sigma = valid_hits ?
std::sqrt(1.
f / mean_denom) : 0.f;
std::vector< HIT_TYPE > HitVector
SpatialRange getHitSpatialRange(const HitVector &hits)
Structure representing a 3D range in space.
void producePartialTracks(const HitVector &hits, const DimensionParameters ¶m, float(*getHitCenter)(const HIT_TYPE &), float(*getHitRangeWidth)(const HIT_TYPE &), void(*setTrackCenter)(TRACK_TYPE &, float), void(*setTrackSigma)(TRACK_TYPE &, float), TrackVector &result)
virtual ~CTPPSTimingTrackRecognition()=default
virtual void clear()
Reset internal state of a class instance.
const float thresholdFromMaximum_
CTPPSTimingTrackRecognition(const edm::ParameterSet &iConfig)
std::unordered_map< int, HitVector > HitVectorMap
reco::FormulaEvaluator pixelEfficiencyFunction_
std::vector< TRACK_TYPE > TrackVector
HitVectorMap hitVectorMap_
RecHit vectors that should be processed separately while reconstructing tracks.
virtual void addHit(const HIT_TYPE &recHit)=0
Add new hit to the set from which the tracks are reconstructed.
bool timeEval(const HitVector &hits, float &meanTime, float &timeSigma) const
Power< A, B >::type pow(const A &a, const B &b)
virtual int produceTracks(edm::DetSet< TRACK_TYPE > &tracks)=0
Produce a collection of tracks, given its hits collection.