LDMX Software
SeedFinderProcessor.h
1#pragma once
2
3//---< Framework >---//
4#include "Framework/Configure/Parameters.h"
5#include "Framework/Event.h"
7
8//---< Tracking >---//
9#include "Tracking/Event/Track.h"
10#include "Tracking/Sim/LdmxSpacePoint.h"
11#include "Tracking/Sim/SeedToTrackParamMaker.h"
12#include "Tracking/Sim/TrackingUtils.h"
13
14//---< SimCore >---//
16
17//---< STD C++ >---//
18
19#include <iostream>
20
21//---< ACTS >---//
22#include "Acts/Definitions/Algebra.hpp"
23#include "Acts/MagneticField/MagneticFieldContext.hpp"
24#include "Acts/Seeding/EstimateTrackParamsFromSeed.hpp"
25#include "Acts/Seeding/Seed.hpp"
26#include "Acts/Seeding/SeedFilter.hpp"
27#include "Acts/Seeding/SpacePointGrid.hpp"
28#include "Acts/Utilities/CalibrationContext.hpp"
29#include "Acts/Utilities/Intersection.hpp"
30
31//--- LDMX ---//
32#include "TFile.h"
33#include "TTree.h"
34#include "Tracking/Event/Measurement.h"
35#include "Tracking/Reco/TrackingGeometryUser.h"
36#include "Tracking/Reco/TruthMatchingTool.h"
37
38namespace tracking {
39namespace reco {
40
42 public:
49 SeedFinderProcessor(const std::string& name, framework::Process& process);
50
52 virtual ~SeedFinderProcessor() = default;
53
57 void onProcessStart() override;
58
62 void onProcessEnd() override;
63
69 void configure(framework::config::Parameters& parameters) override;
70
77 void produce(framework::Event& event) override;
78
79 bool groupStrips(const std::vector<ldmx::Measurement>& measurements,
80 const std::vector<int> strategy);
81
82 void findSeedsFromMap(std::vector<ldmx::Track>& seeds,
83 const ldmx::Measurements& pmeas);
84
85 private:
86 ldmx::Track seedTracker(const ldmx::Measurements& vmeas, double xOrigin,
87 const Acts::Vector3& perigee_location,
88 const ldmx::Measurements& pmeas_tgt);
89
90 void lineParabolaToHelix(const Acts::ActsVector<5> parameters,
91 Acts::ActsVector<5>& helix_parameters,
92 Acts::Vector3 ref);
93
94 Acts::Vector3 b_field_;
95
96 /* This is a temporary (working) solution to estimate the track parameters out
97 * of the seeds Eventually we should move to what is in ACTS (I'm not happy
98 * with what they did regarding this part atm)
99 */
100
101 std::shared_ptr<tracking::sim::SeedToTrackParamMaker> seed_to_track_maker_;
102
103 double processing_time_{0.};
104 long nevents_{0};
105 unsigned int ntracks_{0};
106
107 std::vector<double> inflate_factors_{1., 1., 1., 1., 1.};
108
110 std::string out_seed_collection_{"SeedTracks"};
112 std::string input_hits_collection_{"TaggerSimHits"};
114 std::string tagger_trks_collection_{"TaggerTracks"};
115 std::string input_pass_name_{""};
116
117 std::string sim_particles_coll_name_;
118 std::string sim_particles_passname_;
119 std::string tagger_trks_event_collection_passname_;
120 std::string sim_particles_event_passname_;
122 std::vector<double> perigee_location_{-700., 0., 0};
124 double pmin_{0.05};
125
127 double pmax_{8};
128
130 double d0max_{20.};
131
133 double d0min_{20.};
134
136 double z0max_{60.};
137
138 double piover2_{1.5708};
139
141 double phicut_{0.1};
142
144 double thetacut_{0.2};
145
147 double loc0cut_{0.1};
148 double loc1cut_{0.3};
149
151 std::vector<std::string> strategies_{};
152 double bfield_{1.5};
153
154 std::vector<float> xhit_;
155 std::vector<float> yhit_;
156 std::vector<float> zhit_;
157
158 std::vector<float> b0_;
159 std::vector<float> b1_;
160 std::vector<float> b2_;
161 std::vector<float> b3_;
162 std::vector<float> b4_;
163
164 // Check failures
165 long ndoubles_{0};
166 long nmissing_{0};
167 long nfailpmin_{0};
168 long nfailpmax_{0};
169 long nfaild0min_{0};
170 long nfaild0max_{0};
171 long nfailz0max_{0};
172 long nfailphi_{0};
173 long nfailtheta_{0};
174
175 // The measurements groups
176 std::map<int, std::vector<const ldmx::Measurement*>> groups_map_;
177
178 // Truth Matching tool
179 std::shared_ptr<tracking::sim::TruthMatchingTool> truth_matching_tool_ =
180 nullptr;
181
183 double u_error_;
185 double v_error_;
186
187}; // SeedFinderProcessor
188
189} // namespace reco
190} // namespace tracking
Base classes for all user event processing components to extend.
Class implementing an event buffer system for storing event data.
Class which encapsulates information from a hit in a simulated tracking detector.
Implements an event buffer system for storing event data.
Definition Event.h:42
Class which represents the process under execution.
Definition Process.h:37
virtual void process(Event &event) final
Processing an event for a Producer is calling produce.
Class encapsulating parameters for configuring a processor.
Definition Parameters.h:29
Implementation of a track object.
Definition Track.h:53
virtual ~SeedFinderProcessor()=default
Destructor.
SeedFinderProcessor(const std::string &name, framework::Process &process)
Constructor.
std::string out_seed_collection_
The name of the output collection of seeds to be stored.
double pmax_
Maximum cut on the momentum of the seeds.
std::vector< std::string > strategies_
List of stragies for seed finding.
std::string input_hits_collection_
The name of the input hits collection to use in finding seeds..
void onProcessEnd() override
Callback for the EventProcessor to take any necessary action when the processing of events finishes,...
void produce(framework::Event &event) override
Run the processor and create a collection of results which indicate if a charge particle can be found...
void onProcessStart() override
Callback for the EventProcessor to take any necessary action when the processing of events starts,...
double pmin_
Minimum cut on the momentum of the seeds.
std::string tagger_trks_collection_
The name of the tagger Tracks (only for Recoil Seeding)
std::vector< double > perigee_location_
Location of the perigee for the helix track parameters.
double d0max_
Max d0 allowed for the seeds.
void configure(framework::config::Parameters &parameters) override
Configure the processor using the given user specified parameters.
double d0min_
Min d0 allowed for the seeds.
double z0max_
Max z0 allowed for the seeds.
a helper base class providing some methods to shorten access to common conditions used within the tra...
The measurement calibrator can be a function or a class/struct able to retrieve the sim hits containe...