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! "
52 virtual void addHit(
const HIT_TYPE& recHit) = 0;
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>
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 int numberOfTracks = 0;
128 const float invResolution = 1. / resolution_;
129 const float profileRangeMargin = sigma_ * 3.;
130 const float profileRangeBegin = param.
rangeBegin - profileRangeMargin;
131 const float profileRangeEnd = param.
rangeEnd + profileRangeMargin;
133 std::vector<float> hitProfile((profileRangeEnd - profileRangeBegin) * invResolution + 1, 0.);
135 *hitProfile.rbegin() = -1.f;
138 for (
auto const&
hit : hits) {
139 const float center = getHitCenter(
hit), rangeWidth = getHitRangeWidth(
hit);
140 std::vector<double>
params{center, rangeWidth, sigma_};
141 for (
unsigned int i = 0;
i < hitProfile.size(); ++
i)
143 pixelEfficiencyFunction_.evaluate(std::vector<double>{profileRangeBegin +
i * resolution_},
params);
146 bool underThreshold =
true;
147 float rangeMaximum = -1.0f;
148 bool trackRangeFound =
false;
149 int trackRangeBegin = 0, trackRangeEnd = 0;
152 for (
unsigned int i = 0;
i < hitProfile.size();
i++) {
153 if (hitProfile[
i] > rangeMaximum)
154 rangeMaximum = hitProfile[
i];
157 if (underThreshold && hitProfile[
i] > threshold_) {
158 underThreshold =
false;
160 rangeMaximum = hitProfile[
i];
164 else if (!underThreshold && hitProfile[
i] <= threshold_) {
165 underThreshold =
true;
167 trackRangeFound =
true;
171 if (trackRangeFound) {
172 float trackThreshold = rangeMaximum - thresholdFromMaximum_;
174 bool underTrackThreshold =
true;
176 for (
int j = trackRangeBegin;
j <= trackRangeEnd;
j++) {
177 if (underTrackThreshold && hitProfile[
j] > trackThreshold) {
178 underTrackThreshold =
false;
180 }
else if (!underTrackThreshold && hitProfile[
j] <= trackThreshold) {
181 underTrackThreshold =
true;
183 float leftMargin = profileRangeBegin + resolution_ * trackBegin;
184 float rightMargin = profileRangeBegin + resolution_ *
j;
185 setTrackCenter(track, 0.5
f * (leftMargin + rightMargin));
186 setTrackSigma(track, 0.5
f * (rightMargin - leftMargin));
191 trackRangeFound =
false;
196 template <
class TRACK_TYPE,
class HIT_TYPE>
199 bool initialized =
false;
202 for (
const auto&
hit : hits) {
203 const float xBegin =
hit.
x() - 0.5f *
hit.xWidth(), xEnd =
hit.
x() + 0.5f *
hit.xWidth();
204 const float yBegin =
hit.
y() - 0.5f *
hit.yWidth(), yEnd =
hit.
y() + 0.5f *
hit.yWidth();
205 const float zBegin =
hit.
z() - 0.5f *
hit.zWidth(), zEnd =
hit.
z() + 0.5f *
hit.zWidth();
228 template <
class TRACK_TYPE,
class HIT_TYPE>
231 float& time_sigma)
const {
232 float mean_num = 0.f, mean_denom = 0.f;
233 bool valid_hits =
false;
234 for (
const auto&
hit : hits) {
235 if (
hit.tPrecision() <= 0.)
238 mean_num += weight *
hit.time();
242 mean_time = valid_hits ? (mean_num / mean_denom) : 0.
f;
243 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
auto const & tracks
cannot be loose
virtual void clear()
Reset internal state of a class instance.
const float thresholdFromMaximum_
CTPPSTimingTrackRecognition(const edm::ParameterSet &iConfig)
std::unordered_map< int, HitVector > HitVectorMap
bool timeEval(const HitVector &hits, float &meanTime, float &timeSigma) const
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.
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.