LDMX Software
TruthSeedProcessor.cxx
1#include "Tracking/Reco/TruthSeedProcessor.h"
2
3#include "Tracking/Sim/GeometryContainers.h"
4
5namespace tracking::reco {
6
8 framework::Process& process)
9 : TrackingGeometryUser(name, process) {}
10
12 normal_ = std::make_shared<std::normal_distribution<float>>(0., 1.);
13
14 // Custom transformation of the interpolated bfield map
15 auto transform_pos = [](const Acts::Vector3& pos_) {
16 Acts::Vector3 rot_pos;
17 rot_pos(0) = pos_(1);
18 rot_pos(1) = pos_(2);
19 rot_pos(2) = pos_(0) + DIPOLE_OFFSET;
20 return rot_pos;
21 };
22
23 auto transform_b_field = [](const Acts::Vector3& field,
24 const Acts::Vector3& /*pos_*/) {
25 Acts::Vector3 rot_field;
26 rot_field(0) = field(2);
27 rot_field(1) = field(0);
28 rot_field(2) = field(1);
29 return rot_field;
30 };
31
32 // Setup the interpolated bfield map
33 const auto map = std::make_shared<InterpolatedMagneticField3>(
34 loadDefaultBField(field_map_, transform_pos, transform_b_field));
35
36 // Setup the stepper and navigator
37 const auto stepper = Acts::EigenStepper<>{map};
38 Acts::Navigator::Config nav_cfg{geometry().getTG()};
39 nav_cfg.resolveMaterial = true;
40 nav_cfg.resolvePassive = true;
41 nav_cfg.resolveSensitive = true;
42 const Acts::Navigator navigator(nav_cfg);
43
44 propagator_ = std::make_unique<TruthPropagator>(
45 stepper, navigator,
46 Acts::getDefaultLogger("TruthPropagator", Acts::Logging::FATAL));
47 trk_extrap_ = std::make_shared<std::decay_t<decltype(*trk_extrap_)>>(
48 *propagator_, geometryContext(), magneticFieldContext());
49 trk_extrap_->setMaxStepSize(200); // mm
50 trk_extrap_->setPathLimit(3000); // mm
51}
52
55 parameters.get<std::string>("scoring_hits_coll_name");
56 ecal_sp_coll_name_ = parameters.get<std::string>("ecal_sp_coll_name");
57 sp_pass_name_ = parameters.get<std::string>("sp_pass_name");
59 parameters.get<std::string>("recoil_sim_hits_coll_name");
61 parameters.get<std::string>("tagger_sim_hits_coll_name");
62 input_pass_name_ = parameters.get<std::string>("input_pass_name");
63 sim_particles_coll_name_ =
64 parameters.get<std::string>("sim_particles_coll_name");
65 sim_particles_passname_ =
66 parameters.get<std::string>("sim_particles_passname");
67
68 n_min_hits_tagger_ = parameters.get<int>("n_min_hits_tagger", 11);
69 n_min_hits_recoil_ = parameters.get<int>("n_min_hits_recoil", 7);
70 pdg_ids_ = parameters.get<std::vector<int>>("pdg_ids", {11});
71 z_min_ = parameters.get<double>("z_min", -9999); // mm
72 track_id_ = parameters.get<int>("track_id", -9999);
73 pz_cut_ = parameters.get<double>("pz_cut", -9999); // MeV
74 p_cut_ = parameters.get<double>("p_cut", 0.);
75 p_cut_max_ = parameters.get<double>("p_cut_max", 100000.); // MeV
76 p_cut_ecal_ = parameters.get<double>("p_cut_ecal", -1.); // MeV
77 recoil_sp_ = parameters.get<double>("recoil_sp", true);
78 target_sp_ = parameters.get<double>("tagger_sp", true);
79 seed_smearing_ = parameters.get<bool>("seedSmearing", false);
80 max_track_id_ = parameters.get<int>("max_track_id", 5);
81
82 ldmx_log(info) << "Seed Smearing is set to " << seed_smearing_;
83
84 d0smear_ = parameters.get<std::vector<double>>("d0smear", {0.01, 0.01, 0.01});
85 z0smear_ = parameters.get<std::vector<double>>("z0smear", {0.1, 0.1, 0.1});
86 phismear_ = parameters.get<double>("phismear", 0.001);
87 thetasmear_ = parameters.get<double>("thetasmear", 0.001);
88 relpsmear_ = parameters.get<double>("relpsmear", 0.1);
89
90 // Relative smear factor terms, only used if seed_smearing_ is true.
91 rel_smearfactors_ = parameters.get<std::vector<double>>(
92 "rel_smearfactors", {0.1, 0.1, 0.1, 0.1, 0.1, 0.1});
93 inflate_factors_ = parameters.get<std::vector<double>>(
94 "inflate_factors", {10., 10., 10., 10., 10., 10.});
95
96 // In tracking frame: where do these numbers come from?
97 // These numbers come from approximating the path of the beam up
98 // until it is about to enter the first detector volume (TriggerPad1).
99 // In detector coordinates, (x_,y_,z_) = (-21.7, -883) is
100 // where the beam arrives (if no smearing is applied) and we simply
101 // reorder these values so that they are in tracking coordinates.
102 beam_origin_ = parameters.get<std::vector<double>>("beamOrigin",
103 {-883.0, -21.745876, 0.0});
104
105 // Skip the tagger or recoil trackers if wanted
106 skip_tagger_ = parameters.get<bool>("skip_tagger", false);
107 skip_recoil_ = parameters.get<bool>("skip_recoil", false);
108 particle_hypothesis_ = parameters.get<int>("particle_hypothesis");
109
110 beam_electrons_collection_ =
111 parameters.get<std::string>("beam_electrons_collection");
112 tagger_truth_collection_ =
113 parameters.get<std::string>("tagger_truth_collection");
114 recoil_truth_collection_ =
115 parameters.get<std::string>("recoil_truth_collection");
116 tagger_seeds_collection_ =
117 parameters.get<std::string>("tagger_seeds_collection");
118 recoil_seeds_collection_ =
119 parameters.get<std::string>("recoil_seeds_collection");
120 // Get the field map for the propagator
121 field_map_ = parameters.get<std::string>("field_map");
122}
123
125 const ldmx::SimParticle& particle, const ldmx::SimTrackerHit& hit,
126 ldmx::Track& trk, const std::shared_ptr<Acts::Surface>& target_surface) {
127 std::vector<double> pos{static_cast<double>(hit.getPosition()[0]),
128 static_cast<double>(hit.getPosition()[1]),
129 static_cast<double>(hit.getPosition()[2])};
130 createTruthTrack(pos, hit.getMomentum(), particle.getCharge(), trk,
131 target_surface);
132
133 trk.setTrackID(hit.getTrackID());
134 trk.setPdgID(hit.getPdgID());
135}
136
138 const ldmx::SimParticle& particle, ldmx::Track& trk,
139 const std::shared_ptr<Acts::Surface>& target_surface) {
140 createTruthTrack(particle.getVertex(), particle.getMomentum(),
141 particle.getCharge(), trk, target_surface);
142
143 trk.setPdgID(particle.getPdgID());
144}
145
147 const std::vector<double>& pos_vec, const std::vector<double>& p_vec,
148 int charge, ldmx::Track& trk,
149 const std::shared_ptr<Acts::Surface>& target_surface) {
150 // Get the position and momentum of the particle at the point of creation.
151 // This only works for the incident electron when creating a tagger tracker
152 // seed. For the recoil tracker, the scoring plane position will need to
153 // be used. For other particles created in the target or tracker planes,
154 // this version of the method can also be used.
155 // These are just Eigen vectors defined as
156 // Eigen::Matrix<double, kSize, 1>;
157 Acts::Vector3 pos{pos_vec[0], pos_vec[1], pos_vec[2]};
158 Acts::Vector3 mom{p_vec[0], p_vec[1], p_vec[2]};
159
160 // Rotate the position and momentum into the ACTS frame.
161 pos = tracking::sim::utils::ldmx2Acts(pos);
162 mom = tracking::sim::utils::ldmx2Acts(mom);
163
164 // Get the charge of the particle.
165 // TODO: Add function that uses the PDG ID to calculate this.
166 double q{charge * Acts::UnitConstants::e};
167
168 // The idea here is:
169 // 1 - Define a bound track state parameters at point P on track. Basically a
170 // curvilinear representation.
171 // 2 - Propagate to target surface to obtain the
172 // BoundTrackState there.
173
174 // Transform the position, momentum and charge to free parameters.
175 auto free_params{tracking::sim::utils::toFreeParameters(pos, mom, q)};
176
177 // Create a line surface at the perigee. The perigee position is extracted
178 // from a particle's vertex or the particle's position at a specific
179 // scoring plane.
180 auto gen_surface{Acts::Surface::makeShared<Acts::PerigeeSurface>(
181 Acts::Vector3(free_params[Acts::eFreePos0], free_params[Acts::eFreePos1],
182 free_params[Acts::eFreePos2]))};
183
184 // ldmx_log(trace)<<"PF:: gen_surface"<<free_params[Acts::eFreePos0]<<"
185 // " <<free_params[Acts::eFreePos1]<<" " <<free_params[Acts::eFreePos2];
186
187 // Transform the parameters to local positions on the perigee surface.
188 auto bound_params{Acts::transformFreeToBoundParameters(
189 free_params, *gen_surface, geometryContext())
190 .value()};
191 // Create a particle hypothesis
192 auto part{Acts::ParticleHypothesis(Acts::PdgParticle(particle_hypothesis_))};
193 Acts::BoundTrackParameters bound_trk_pars(gen_surface, bound_params,
194 std::nullopt, part);
195
196 auto prop_bound_state =
197 trk_extrap_->extrapolate(bound_trk_pars, target_surface);
198
199 if (!prop_bound_state) {
200 ldmx_log(warn) << "Propagation to target surface failed — "
201 << "track may have exited the B-field map.";
202 return;
203 }
204
205 // Create the seed track object.
206 Acts::Vector3 ref = target_surface->center(geometryContext());
207 Acts::Vector3 ref_ldmx = tracking::sim::utils::acts2Ldmx(ref);
208 trk.setPerigeeLocation(ref_ldmx(0), ref_ldmx(1), ref_ldmx(2));
209
210 auto prop_bound_vec = prop_bound_state->parameters();
211
212 trk.setPerigeeParameters(
213 tracking::sim::utils::convertActsToLdmxPars(prop_bound_vec));
214}
215
216// origin_surface is the perigee
217// target_surface is the ecal
218ldmx::Track TruthSeedProcessor::recoilFullSeed(
219 const ldmx::SimParticle& particle, const int trackID,
220 const ldmx::SimTrackerHit& hit, const ldmx::SimTrackerHit& ecal_hit,
221 const std::map<int, std::vector<int>>& hit_count_map,
222 const std::shared_ptr<Acts::Surface>& origin_surface,
223 const std::shared_ptr<Acts::Surface>& target_surface,
224 const std::shared_ptr<Acts::Surface>& ecal_surface) {
225 ldmx::Track truth_recoil_track;
226 createTruthTrack(particle, hit, truth_recoil_track, origin_surface);
227 truth_recoil_track.setTrackID(trackID);
228
229 // Seed at the target location
230 ldmx::Track smeared_truth_track = seedFromTruth(truth_recoil_track, false);
231
232 // Add truth track state at the target: use scoring plane hit (already LDMX
233 // frame)
234 ldmx::Track::TrackState ts_truth_target;
235 ts_truth_target.pos_ = {hit.getPosition()[0], hit.getPosition()[1],
236 hit.getPosition()[2]};
237 ts_truth_target.mom_ = {hit.getMomentum()[0], hit.getMomentum()[1],
238 hit.getMomentum()[2]};
239 ts_truth_target.ts_type_ = ldmx::AtTarget;
240 smeared_truth_track.addTrackState(ts_truth_target);
241
242 // Express truth ECAL state in the bound parametrization of ecal_surface
243 // (same surface definition used by CKFProcessor) rather than storing raw
244 // scoring plane hit coordinates.
245 {
246 Acts::Vector3 ep{ecal_hit.getPosition()[0], ecal_hit.getPosition()[1],
247 ecal_hit.getPosition()[2]};
248 Acts::Vector3 em{ecal_hit.getMomentum()[0], ecal_hit.getMomentum()[1],
249 ecal_hit.getMomentum()[2]};
250 ep = tracking::sim::utils::ldmx2Acts(ep);
251 em = tracking::sim::utils::ldmx2Acts(em);
252 // Linearly extrapolate transverse coordinates to ACTS x = 240.5 mm
253 // (= LDMX z = 240.5 mm), correcting for the track slope over the small
254 // z-offset between the scoring plane and the ECAL surface.
255 if (std::abs(em[0]) > 0) {
256 double delta = 240.5 - ep[0];
257 ep[1] += delta * em[1] / em[0];
258 ep[2] += delta * em[2] / em[0];
259 ep[0] = 240.5;
260 }
261 double q_ecal = particle.getCharge() * Acts::UnitConstants::e;
262 auto ecal_free = tracking::sim::utils::toFreeParameters(ep, em, q_ecal);
263 auto ecal_bound = Acts::transformFreeToBoundParameters(
264 ecal_free, *ecal_surface, geometryContext());
265 if (ecal_bound.ok()) {
266 auto part{
267 Acts::ParticleHypothesis(Acts::PdgParticle(particle_hypothesis_))};
268 Acts::BoundTrackParameters ecal_pars(ecal_surface, ecal_bound.value(),
269 Acts::BoundMatrix::Identity(), part);
270 smeared_truth_track.addTrackState(tracking::sim::utils::makeTrackState(
271 geometryContext(), ecal_pars, ldmx::AtECAL));
272 }
273 }
274
275 // Add the hits
276 int nhits = 0;
277
278 for (auto sim_hit_idx : hit_count_map.at(smeared_truth_track.getTrackID())) {
279 smeared_truth_track.addMeasurementIndex(sim_hit_idx);
280 nhits += 1;
281 }
282
283 smeared_truth_track.setNhits(nhits);
284
285 return smeared_truth_track;
286}
287
289 const ldmx::SimParticle& beam_electron, const int trackID,
290 const ldmx::SimTrackerHit& hit,
291 const std::map<int, std::vector<int>>& hit_count_map,
292 const std::shared_ptr<Acts::Surface>& origin_surface,
293 const std::shared_ptr<Acts::Surface>& target_surface) {
294 ldmx::Track truth_track;
295
296 createTruthTrack(beam_electron, truth_track, origin_surface);
297 truth_track.setTrackID(trackID);
298
299 // Smeared track at the beam origin
300 ldmx::Track smeared_truth_track = seedFromTruth(truth_track, true);
301
302 ldmx_log(debug) << "Truth parameters at beam origin";
303 for (auto par : truth_track.getPerigeeParameters())
304 ldmx_log(debug) << par << " ";
305 ldmx_log(debug);
306
307 // Add the truth track state at the target using the scoring plane hit
308 // (position and momentum are already in LDMX global frame)
309 ldmx::Track::TrackState ts_truth_target;
310 ts_truth_target.pos_ = {hit.getPosition()[0], hit.getPosition()[1],
311 hit.getPosition()[2]};
312 ts_truth_target.mom_ = {hit.getMomentum()[0], hit.getMomentum()[1],
313 hit.getMomentum()[2]};
314 ts_truth_target.ts_type_ = ldmx::AtTarget;
315 smeared_truth_track.addTrackState(ts_truth_target);
316
317 ldmx_log(debug) << "Truth position at target: " << hit.getPosition()[0] << " "
318 << hit.getPosition()[1] << " " << hit.getPosition()[2];
319
320 // Add the truth track state at the beam origin using particle vertex/momentum
321 // (SimParticle vertex and momentum are in LDMX global frame)
322 ldmx::Track::TrackState ts_truth_beam_origin;
323 ts_truth_beam_origin.pos_ = {beam_electron.getVertex()[0],
324 beam_electron.getVertex()[1],
325 beam_electron.getVertex()[2]};
326 ts_truth_beam_origin.mom_ = {beam_electron.getMomentum()[0],
327 beam_electron.getMomentum()[1],
328 beam_electron.getMomentum()[2]};
329 ts_truth_beam_origin.ts_type_ = ldmx::AtBeamOrigin;
330 smeared_truth_track.addTrackState(ts_truth_beam_origin);
331
332 ldmx_log(debug) << "Smeared parameters at origin";
333 for (auto par : smeared_truth_track.getPerigeeParameters())
334 ldmx_log(debug) << par << " ";
335
336 // assign the sim hit indices
337 // TODO this is not fully correct as the sim hits
338 // might be duplicated on sensors
339 // and should be merged if that is the case
340
341 int nhits = 0;
342
343 for (auto sim_hit_idx : hit_count_map.at(smeared_truth_track.getTrackID())) {
344 smeared_truth_track.addMeasurementIndex(sim_hit_idx);
345 nhits += 1;
346 }
347
348 smeared_truth_track.setNhits(nhits);
349
350 return smeared_truth_track;
351}
352
354 bool seed_smearing) {
355 ldmx::Track seed = ldmx::Track();
356 seed.setPerigeeLocation(tt.getPerigeeLocation()[0],
357 tt.getPerigeeLocation()[1],
358 tt.getPerigeeLocation()[2]);
359 seed.setChi2(0.);
360 seed.setNhits(tt.getNhits());
361 seed.setNdf(0);
362 seed.setNsharedHits(0);
363 seed.setTrackID(tt.getTrackID());
364 seed.setPdgID(tt.getPdgID());
365 seed.setTruthProb(1.);
366
367 Acts::BoundVector bound_params;
368 Acts::BoundVector stddev;
369
370 if (seed_smearing) {
371 ldmx_log(debug) << "Smear track and inflate covariance";
372
373 /*
374 double sigma_d0 = rel_smearfactors_[Acts::eBoundLoc0] * tt.getD0();
375 double sigma_z0 = rel_smearfactors_[Acts::eBoundLoc1] * tt.getZ0();
376 double sigma_phi = rel_smearfactors_[Acts::eBoundPhi] * tt.getPhi();
377 double sigma_theta = rel_smearfactors_[Acts::eBoundTheta] *
378 tt.getTheta(); double sigma_p = rel_smearfactors_[Acts::eBoundQOverP]
379 * abs(1/tt.getQoP()); double sigma_t =
380 rel_smearfactors_[Acts::eBoundTime] * tt.getT();
381 */
382
383 double sigma_d0 = d0smear_[0];
384 double sigma_z0 = z0smear_[0];
385 double sigma_phi = phismear_;
386 double sigma_theta = thetasmear_;
387 double sigma_p = relpsmear_ * abs(1 / tt.getQoP());
388 double sigma_t = 1. * Acts::UnitConstants::ns;
389
390 double smear = (*normal_)(generator_);
391 double d0smear = tt.getD0() + smear * sigma_d0;
392
393 smear = (*normal_)(generator_);
394 double z0smear = tt.getZ0() + smear * sigma_z0;
395
396 smear = (*normal_)(generator_);
397 double phismear = tt.getPhi() + smear * sigma_phi;
398
399 smear = (*normal_)(generator_);
400 double thetasmear = tt.getTheta() + smear * sigma_theta;
401
402 double p = std::abs(1. / tt.getQoP());
403 smear = (*normal_)(generator_);
404 double psmear = p + smear * sigma_p;
405
406 double q = tt.getQoP() < 0 ? -1. : 1.;
407 double qo_psmear = q / psmear;
408
409 smear = (*normal_)(generator_);
410 double tsmear = tt.getT() + smear * sigma_t;
411
412 bound_params << d0smear, z0smear, phismear, thetasmear, qo_psmear, tsmear;
413
414 stddev[Acts::eBoundLoc0] =
415 inflate_factors_[Acts::eBoundLoc0] * sigma_d0 * Acts::UnitConstants::mm;
416 stddev[Acts::eBoundLoc1] =
417 inflate_factors_[Acts::eBoundLoc1] * sigma_z0 * Acts::UnitConstants::mm;
418 stddev[Acts::eBoundPhi] = inflate_factors_[Acts::eBoundPhi] * sigma_phi;
419 stddev[Acts::eBoundTheta] =
420 inflate_factors_[Acts::eBoundTheta] * sigma_theta;
421 stddev[Acts::eBoundQOverP] =
422 inflate_factors_[Acts::eBoundQOverP] * (1. / p) * (1. / p) * sigma_p;
423 stddev[Acts::eBoundTime] =
424 inflate_factors_[Acts::eBoundTime] * sigma_t * Acts::UnitConstants::ns;
425
426 ldmx_log(debug) << stddev;
427
428 std::vector<double> v_seed_params(
429 (bound_params).data(),
430 bound_params.data() + bound_params.rows() * bound_params.cols());
431
432 Acts::BoundMatrix bound_cov = stddev.cwiseProduct(stddev).asDiagonal();
433 std::vector<double> v_seed_cov;
434 tracking::sim::utils::flatCov(bound_cov, v_seed_cov);
435 seed.setPerigeeParameters(v_seed_params);
436 seed.setPerigeeCov(v_seed_cov);
437
438 } else {
439 // Do not smear the seed
440
441 bound_params << tt.getD0(), tt.getZ0(), tt.getPhi(), tt.getTheta(),
442 tt.getQoP(), tt.getT();
443
444 std::vector<double> v_seed_params(
445 (bound_params).data(),
446 bound_params.data() + bound_params.rows() * bound_params.cols());
447
448 double p = std::abs(1. / tt.getQoP());
449 double sigma_p = 0.75 * p * Acts::UnitConstants::GeV;
450 stddev[Acts::eBoundLoc0] = 2 * Acts::UnitConstants::mm;
451 stddev[Acts::eBoundLoc1] = 5 * Acts::UnitConstants::mm;
452 stddev[Acts::eBoundTime] = 1000 * Acts::UnitConstants::ns;
453 stddev[Acts::eBoundPhi] = 5 * Acts::UnitConstants::degree;
454 stddev[Acts::eBoundTheta] = 5 * Acts::UnitConstants::degree;
455 stddev[Acts::eBoundQOverP] = (1. / p) * (1. / p) * sigma_p;
456
457 Acts::BoundMatrix bound_cov = stddev.cwiseProduct(stddev).asDiagonal();
458 std::vector<double> v_seed_cov;
459 tracking::sim::utils::flatCov(bound_cov, v_seed_cov);
460 seed.setPerigeeParameters(v_seed_params);
461 seed.setPerigeeCov(v_seed_cov);
462 }
463
464 return seed;
465}
466
468 const std::vector<ldmx::SimTrackerHit>& sim_hits,
469 std::map<int, std::vector<int>>& hit_count_map) {
470 for (int i_sim_hit = 0; i_sim_hit < sim_hits.size(); i_sim_hit++) {
471 auto& sim_hit = sim_hits.at(i_sim_hit);
472 // This track never left a hit before
473 if (!hit_count_map.count(sim_hit.getTrackID())) {
474 hit_count_map[sim_hit.getTrackID()].push_back(i_sim_hit);
475 }
476
477 // This track left a hit before.
478 // Check if it's on a different sensor than the others
479
480 else {
481 int sensor_id = tracking::sim::utils::getSensorID(sim_hit);
482 bool found_hit = false;
483
484 for (auto& i_rhit : hit_count_map[sim_hit.getTrackID()]) {
485 int tmp_sensor_id =
486 tracking::sim::utils::getSensorID(sim_hits.at(i_rhit));
487
488 if (sensor_id == tmp_sensor_id) {
489 found_hit = true;
490 break;
491 }
492 } // loop on the already recorded hits
493
494 if (!found_hit) {
495 hit_count_map[sim_hit.getTrackID()].push_back(i_sim_hit);
496 }
497 }
498 } // loop on sim hits
499}
500
502 const ldmx::SimTrackerHit& hit,
503 const std::vector<ldmx::SimTrackerHit>& ecal_sp_hits) {
504 // Clean some of the hits we don't want
505 if (hit.getPosition()[2] < z_min_) return false;
506
507 // Check if the track_id was requested
508 if (track_id_ > 0 && hit.getTrackID() != track_id_) return false;
509
510 // Check if we are requesting particular particles
511 if (std::find(pdg_ids_.begin(), pdg_ids_.end(), hit.getPdgID()) ==
512 pdg_ids_.end())
513 return false;
514
515 Acts::Vector3 p_vec{hit.getMomentum()[0], hit.getMomentum()[1],
516 hit.getMomentum()[2]};
517
518 // p cut
519 if (p_cut_ >= 0. && p_vec.norm() < p_cut_) return false;
520
521 // p cut Max
522 if (p_cut_ < 100000. && p_vec.norm() > p_cut_max_) return false;
523
524 // pz cut
525 if (pz_cut_ > -9999 && p_vec(2) < pz_cut_) return false;
526
527 // Check the ecal scoring plane
528 bool pass_ecal_scoring_plane = true;
529
530 if (p_cut_ecal_ > 0) { // only check if we care about it.
531
532 for (auto& e_sp_hit : ecal_sp_hits) {
533 if (e_sp_hit.getTrackID() == hit.getTrackID() &&
534 e_sp_hit.getPdgID() == hit.getPdgID()) {
535 Acts::Vector3 e_sp_p{e_sp_hit.getMomentum()[0],
536 e_sp_hit.getMomentum()[1],
537 e_sp_hit.getMomentum()[2]};
538
539 if (e_sp_p.norm() < p_cut_ecal_) pass_ecal_scoring_plane = false;
540
541 // Skip the rest of the scoring plane hits since we already found the
542 // track we care about
543 break;
544
545 } // check that the hit belongs to the inital particle from the target
546 // scoring plane hit
547 } // loop on Ecal scoring plane hits
548 } // pcutEcal
549
550 if (!pass_ecal_scoring_plane) return false;
551
552 return true;
553}
554
556 // Retrieve the particleMap
557 auto particle_map{event.getMap<int, ldmx::SimParticle>(
558 sim_particles_coll_name_, sim_particles_passname_)};
559
560 // Retrieve the target scoring hits
561 // Information is extracted using the
562 // scoring plane hit left by the particle at the target.
563
564 const auto& scoring_hits = event.getCollection<ldmx::SimTrackerHit>(
565 scoring_hits_coll_name_, sp_pass_name_);
566
567 // Retrieve the sim hits in the tagger tracker
568 const auto& tagger_sim_hits = event.getCollection<ldmx::SimTrackerHit>(
570
571 // Retrieve the sim hits in the recoil tracker
572 const auto& recoil_sim_hits = event.getCollection<ldmx::SimTrackerHit>(
574
575 // If sim hit collections are empty throw a warning
576 if (tagger_sim_hits.size() == 0 && !skip_tagger_) {
577 ldmx_log(error) << "Tagger sim hits collection empty for event ";
578 }
579 if (recoil_sim_hits.size() == 0 && !skip_recoil_) {
580 ldmx_log(error) << "Recoil sim hits collection empty for event ";
581 }
582
583 // The map stores which track leaves which sim hits
584 std::map<int, std::vector<int>> hit_count_map_recoil;
585 makeHitCountMap(recoil_sim_hits, hit_count_map_recoil);
586
587 std::map<int, std::vector<int>> hit_count_map_tagger;
588 makeHitCountMap(tagger_sim_hits, hit_count_map_tagger);
589
590 // to keep track of how many sim particles leave hits on the scoring plane
591 std::vector<int> recoil_sh_idxs;
592 std::unordered_map<int, std::vector<int>> recoil_sh_count_map;
593
594 std::vector<int> tagger_sh_idxs;
595 std::unordered_map<int, std::vector<int>> tagger_sh_count_map;
596
597 // Target scoring hits for Tagger will have Z<0, Recoil scoring hits will
598 // have Z>0
599 for (unsigned int i_sh = 0; i_sh < scoring_hits.size(); i_sh++) {
600 const ldmx::SimTrackerHit& hit = scoring_hits.at(i_sh);
601 double zhit = hit.getPosition()[2];
602
603 Acts::Vector3 p_vec{hit.getMomentum()[0], hit.getMomentum()[1],
604 hit.getMomentum()[2]};
605 double tagger_p_max = 0.;
606
607 // Check if it is a tagger track going fwd that passes basic cuts
608 if (zhit < 0.) {
609 // Tagger selection cuts
610 // Negative scoring plane hit, with momentum > p_cut
611 if (p_vec(2) < 0. || p_vec.norm() < p_cut_) continue;
612
613 // Check that the hit was left by a charged particle
614 if (abs(particle_map[hit.getTrackID()].getCharge()) < 1e-8) continue;
615
616 if (p_vec.norm() > tagger_p_max) {
617 tagger_sh_count_map[hit.getTrackID()].push_back(i_sh);
618 }
619 } // Tagger loop
620
621 // Check the recoil hits
622 else {
623 // Recoil selection cuts
624 // Positive scoring plane hit, forward direction with momentum > p_cut
625 if (p_vec(2) < 0. || p_vec.norm() < p_cut_) continue;
626
627 // Check that the hit was left by a charged particle
628 if (abs(particle_map[hit.getTrackID()].getCharge()) < 1e-8) continue;
629
630 recoil_sh_count_map[hit.getTrackID()].push_back(i_sh);
631
632 } // Recoil
633 } // loop on Target scoring plane hits
634
635 for (std::pair<int, std::vector<int>> element : recoil_sh_count_map) {
636 std::sort(
637 element.second.begin(), element.second.end(),
638 [&](const int idx1, int idx2) -> bool {
639 const ldmx::SimTrackerHit& hit1 = scoring_hits.at(idx1);
640 const ldmx::SimTrackerHit& hit2 = scoring_hits.at(idx2);
641
642 Acts::Vector3 phit1{hit1.getMomentum()[0], hit1.getMomentum()[1],
643 hit1.getMomentum()[2]};
644 Acts::Vector3 phit2{hit2.getMomentum()[0], hit2.getMomentum()[1],
645 hit2.getMomentum()[2]};
646
647 return phit1.norm() > phit2.norm();
648 });
649 }
650
651 // Sort tagger hits.
652 for (auto& [_track_id, hit_indices] : tagger_sh_count_map) {
653 std::sort(
654 hit_indices.begin(), hit_indices.end(),
655 [&](const int idx1, int idx2) -> bool {
656 const ldmx::SimTrackerHit& hit1 = scoring_hits.at(idx1);
657 const ldmx::SimTrackerHit& hit2 = scoring_hits.at(idx2);
658
659 Acts::Vector3 phit1{hit1.getMomentum()[0], hit1.getMomentum()[1],
660 hit1.getMomentum()[2]};
661 Acts::Vector3 phit2{hit2.getMomentum()[0], hit2.getMomentum()[1],
662 hit2.getMomentum()[2]};
663
664 return phit1.norm() > phit2.norm();
665 });
666 }
667
668 // Building of the event truth information and the truth seeds
669 // TODO remove the truthtracks in the future as the truth seeds are enough
670
671 std::vector<ldmx::Track> tagger_truth_tracks;
672 std::vector<ldmx::Track> tagger_truth_seeds;
673 std::vector<ldmx::Track> recoil_truth_tracks;
674 std::vector<ldmx::Track> recoil_truth_seeds;
675 std::vector<ldmx::Track> beam_electrons;
676
677 // TODO:: The target should be taken from some conditions DB in the future.
678 // Define the perigee_surface at 0.0.0
679 auto target_surface{Acts::Surface::makeShared<Acts::PerigeeSurface>(
680 Acts::Vector3(0., 0., 0.))};
681
682 // Define the target_surface
683 auto target_unbound_surface = tracking::sim::utils::unboundSurface(0.);
684
685 // ecal
686 auto ecal_surface = tracking::sim::utils::unboundSurface(240.5);
687
688 auto beam_origin_surface{Acts::Surface::makeShared<Acts::PerigeeSurface>(
689 Acts::Vector3(beam_origin_[0], beam_origin_[1], beam_origin_[2]))};
690
691 if (!skip_tagger_) {
692 for (const auto& [track_id, hit_indices] : tagger_sh_count_map) {
693 const ldmx::SimTrackerHit& hit = scoring_hits.at(hit_indices.at(0));
694 const ldmx::SimParticle& phit = particle_map[hit.getTrackID()];
695
696 if (hit_count_map_tagger[hit.getTrackID()].size() > n_min_hits_tagger_) {
697 ldmx::Track truth_tagger_track;
698 createTruthTrack(phit, hit, truth_tagger_track, target_surface);
699 truth_tagger_track.setNhits(
700 hit_count_map_tagger[hit.getTrackID()].size());
701 // Add AtTarget state from the scoring plane hit (pos in mm, mom in MeV,
702 // both already in LDMX global frame)
703 ldmx::Track::TrackState ts_target;
704 ts_target.pos_ = {hit.getPosition()[0], hit.getPosition()[1],
705 hit.getPosition()[2]};
706 ts_target.mom_ = {hit.getMomentum()[0], hit.getMomentum()[1],
707 hit.getMomentum()[2]};
708 ts_target.ts_type_ = ldmx::AtTarget;
709 truth_tagger_track.addTrackState(ts_target);
710 tagger_truth_tracks.push_back(truth_tagger_track);
711
712 if (hit.getPdgID() == 11 && hit.getTrackID() < max_track_id_) {
713 ldmx::Track beam_e_truth_seed =
714 taggerFullSeed(particle_map[hit.getTrackID()], hit.getTrackID(),
715 hit, hit_count_map_tagger, beam_origin_surface,
716 target_unbound_surface);
717 beam_electrons.push_back(beam_e_truth_seed);
718 }
719 }
720 }
721 }
722
723 // Recover the EcalScoring hits
724 const auto& ecal_sp_hits = event.getCollection<ldmx::SimTrackerHit>(
725 ecal_sp_coll_name_, sp_pass_name_);
726 // Select ECAL hits
727 std::vector<ldmx::SimTrackerHit> sel_ecal_sp_hits;
728
729 for (auto sp_hit : ecal_sp_hits) {
730 if (sp_hit.getMomentum()[2] > 0 && ((sp_hit.getID() & 0xfff) == 31)) {
731 sel_ecal_sp_hits.push_back(sp_hit);
732 }
733 }
734
735 // Recoil target surface for truth and seed tracks is the target
736
737 for (std::pair<int, std::vector<int>> element : recoil_sh_count_map) {
738 // Only take the first entry of the vector: it should be the scoring plane
739 // hit with the highest momentum.
740 const ldmx::SimTrackerHit& hit = scoring_hits.at(element.second.at(0));
741 const ldmx::SimParticle& phit = particle_map[hit.getTrackID()];
742 ldmx::SimTrackerHit ecal_hit;
743
744 bool found_ecal_hit = false;
745 for (auto ecal_sp_hit : sel_ecal_sp_hits) {
746 if (ecal_sp_hit.getTrackID() == hit.getTrackID()) {
747 ecal_hit = ecal_sp_hit;
748 found_ecal_hit = true;
749 break;
750 }
751 }
752
753 // Findable particle selection
754 // ldmx_log(trace) << "!!! n_recoil_sim_hits found: " <<
755 // hit_count_map_recoil[hit.getTrackID()].size();
756 if (hit_count_map_recoil[hit.getTrackID()].size() > n_min_hits_recoil_ &&
757 found_ecal_hit && !skip_recoil_) {
758 ldmx::Track truth_recoil_track;
759 createTruthTrack(phit, hit, truth_recoil_track, target_surface);
760 truth_recoil_track.setTrackID(hit.getTrackID());
761
762 // AtTarget state from target scoring plane hit (pos mm, mom MeV, LDMX
763 // frame)
764 ldmx::Track::TrackState ts_target;
765 ts_target.pos_ = {hit.getPosition()[0], hit.getPosition()[1],
766 hit.getPosition()[2]};
767 ts_target.mom_ = {hit.getMomentum()[0], hit.getMomentum()[1],
768 hit.getMomentum()[2]};
769 ts_target.ts_type_ = ldmx::AtTarget;
770 truth_recoil_track.addTrackState(ts_target);
771
772 // Express truth ECAL state in the bound parametrization of ecal_surface
773 // (same surface definition used by CKFProcessor).
774 {
775 Acts::Vector3 ep{ecal_hit.getPosition()[0], ecal_hit.getPosition()[1],
776 ecal_hit.getPosition()[2]};
777 Acts::Vector3 em{ecal_hit.getMomentum()[0], ecal_hit.getMomentum()[1],
778 ecal_hit.getMomentum()[2]};
779 ep = tracking::sim::utils::ldmx2Acts(ep);
780 em = tracking::sim::utils::ldmx2Acts(em);
781 // Linearly extrapolate transverse coordinates to ACTS x = 240.5 mm
782 // (= LDMX z = 240.5 mm), correcting for the track slope over the small
783 // z-offset between the scoring plane and the ECAL surface.
784 if (std::abs(em[0]) > 0) {
785 double delta = 240.5 - ep[0];
786 ep[1] += delta * em[1] / em[0];
787 ep[2] += delta * em[2] / em[0];
788 ep[0] = 240.5;
789 }
790 double q_ecal = phit.getCharge() * Acts::UnitConstants::e;
791 auto ecal_free = tracking::sim::utils::toFreeParameters(ep, em, q_ecal);
792 auto ecal_bound = Acts::transformFreeToBoundParameters(
793 ecal_free, *ecal_surface, geometryContext());
794 if (ecal_bound.ok()) {
795 auto part{Acts::ParticleHypothesis(
796 Acts::PdgParticle(particle_hypothesis_))};
797 Acts::BoundTrackParameters ecal_pars(ecal_surface, ecal_bound.value(),
798 Acts::BoundMatrix::Identity(),
799 part);
800 truth_recoil_track.addTrackState(tracking::sim::utils::makeTrackState(
801 geometryContext(), ecal_pars, ldmx::AtECAL));
802 }
803 }
804
805 // Attach sim hit indices
806 int nhits = 0;
807 for (auto sim_hit_idx : hit_count_map_recoil.at(hit.getTrackID())) {
808 truth_recoil_track.addMeasurementIndex(sim_hit_idx);
809 nhits++;
810 }
811 truth_recoil_track.setNhits(nhits);
812
813 recoil_truth_tracks.push_back(truth_recoil_track);
814 }
815 }
816
817 /*
818 for (std::pair<int,std::vector<int>> element : recoil_sh_count_map) {
819
820 const ldmx::SimTrackerHit& hit = scoring_hits.at(element.second.at(0));
821 const ldmx::SimParticle& phit = particleMap[hit.getTrackID()];
822
823 if (hit_count_map_recoil[hit.getTrackID()].size() > n_min_hits_recoil_) {
824 ldmx::Track truth_recoil_track;
825 createTruthTrack(phit,hit,truth_recoil_track,targetSurface);
826 truth_recoil_track.setNhits(hit_count_map_recoil[hit.getTrackID()].size());
827 recoil_truth_tracks.push_back(truth_recoil_track);
828 }
829 }
830 */
831
832 // Form a truth seed from a truth track
833
834 for (auto& tt : tagger_truth_tracks) {
835 ldmx::Track seed = seedFromTruth(tt, seed_smearing_);
836
837 tagger_truth_seeds.push_back(seed);
838 }
839
840 ldmx_log(debug) << "Forming seeds from truth";
841 for (auto& tt : recoil_truth_tracks) {
842 ldmx_log(debug) << "Smearing truth track";
843
844 ldmx::Track seed = seedFromTruth(tt, seed_smearing_);
845
846 recoil_truth_seeds.push_back(seed);
847 }
848
849 // even if skip_tagger/recoil_ is true, still make the collections in the
850 // event
851 event.add(beam_electrons_collection_, beam_electrons);
852 event.add(tagger_truth_collection_, tagger_truth_tracks);
853 event.add(recoil_truth_collection_, recoil_truth_tracks);
854 event.add(tagger_seeds_collection_, tagger_truth_seeds);
855 event.add(recoil_seeds_collection_, recoil_truth_seeds);
856}
857} // namespace tracking::reco
858
#define DECLARE_PRODUCER(CLASS)
Macro which allows the framework to construct a producer given its name during configuration.
Implements an event buffer system for storing event data.
Definition Event.h:42
Class which represents the process under execution.
Definition Process.h:37
Class encapsulating parameters for configuring a processor.
Definition Parameters.h:29
const T & get(const std::string &name) const
Retrieve the parameter of the given name.
Definition Parameters.h:78
Run-specific configuration and data stored in its own output TTree alongside the event TTree in the o...
Definition RunHeader.h:57
Class representing a simulated particle.
Definition SimParticle.h:24
double getCharge() const
Get the charge of this particle.
std::vector< double > getVertex() const
Get a vector containing the vertex of this particle in mm.
int getPdgID() const
Get the PDG ID of this particle.
Definition SimParticle.h:86
std::vector< double > getMomentum() const
Get a vector containing the momentum of this particle [MeV].
Represents a simulated tracker hit in the simulation.
int getPdgID() const
Get the Sim particle track ID of the hit.
std::vector< float > getPosition() const
Get the XYZ position of the hit [mm].
std::vector< double > getMomentum() const
Get the XYZ momentum of the particle at the position at which the hit took place [MeV].
int getTrackID() const
Get the Sim particle track ID of the hit.
Implementation of a track object.
Definition Track.h:53
a helper base class providing some methods to shorten access to common conditions used within the tra...
Create a track seed using truth information extracted from the corresponding SimParticle or SimTracke...
float z_min_
Min cut on the z_ of the scoring hit.
void createTruthTrack(const ldmx::SimParticle &particle, ldmx::Track &trk, const std::shared_ptr< Acts::Surface > &target_surface)
Use the vertex position of the SimParticle to extract (x_, y_, z_, px, py, pz, q) and create a track ...
std::string input_pass_name_
Pass name for the sim hit collections.
std::string recoil_sim_hits_coll_name_
Sim hits to check if the truth seed is findable.
void onNewRun(const ldmx::RunHeader &rh) override
onNewRun is the first function called for each processor after the conditions are fully configured an...
std::vector< int > pdg_ids_
pdg_ids of the particles we want to select for the seeds
void produce(framework::Event &event) override
Main loop that creates the seed tracks for both the tagger and recoil tracker.
int track_id_
Only select a particular trackID.
void configure(framework::config::Parameters &parameters) override
Callback for the EventProcessor to configure itself from the given set of parameters.
double pz_cut_
Ask for a minimum pz for the seeds.
TruthSeedProcessor(const std::string &name, framework::Process &process)
Constructor.
double p_cut_
Ask for a minimum p for the seeds.
void makeHitCountMap(const std::vector< ldmx::SimTrackerHit > &sim_hits, std::map< int, std::vector< int > > &hit_count_map)
Create a mapping from the selected scoring plane hit objects to the number of hits they associated pa...
std::string field_map_
Path to the magnetic field map.
std::string scoring_hits_coll_name_
Which scoring plane hits to use for the truth seeds generation.
std::string tagger_sim_hits_coll_name_
Sim hits to check if the truth seed is findable.
ldmx::Track taggerFullSeed(const ldmx::SimParticle &beam_electron, const int trackID, const ldmx::SimTrackerHit &hit, const std::map< int, std::vector< int > > &hit_count_map, const std::shared_ptr< Acts::Surface > &origin_surface, const std::shared_ptr< Acts::Surface > &target_surface)
This method retrieves the beam electron and forms a full seed The seed parameters are the truth param...
bool scoringPlaneHitFilter(const ldmx::SimTrackerHit &hit, const std::vector< ldmx::SimTrackerHit > &ecal_sp_hits)
Filter that checks if a scoring plane passes specified momentum cuts as well as if the associated Sim...
double p_cut_max_
Ask for a maximum p for the seeds.
int n_min_hits_tagger_
Minimum number of hits left in the recoil tracker to consider the seed as findable.
int n_min_hits_recoil_
Minimum number of hits left in the recoil tracker to consider the seed as findable.
ldmx::Track seedFromTruth(const ldmx::Track &tt, bool seed_smearing)
Create a track seed from a truth track applying a smearing to the truth parameters as well as an infl...