ldmx-sw icon indicating copy to clipboard operation
ldmx-sw copied to clipboard

Seeding and Truth information improvements

Open pbutti opened this issue 1 year ago • 1 comments

There are some issues with the seeding in the tagger and recoil volumes that need to be investigated. However the current processors are rather confusing in terms of functionalities and implementations. Additionally, we should have a better handle on the technical efficiency.

--- Implementation changes The TruthSeedProcessor should made clear that it provides both truth tracks and seeds. The way seed tracks are provided for recoil and tagger tracker will differ, so I think:

  • Make 1 base class for the TruthSeedProcessor
  • Make 2 derived classes for the Tagger and Recoil respectively.

--- Setup a truth track analysis Check the Nhits distribution on the electron beam Survival rate of electrons to the target surface ...

pbutti avatar Mar 22 '24 15:03 pbutti

One should also have

  event.add("beamElectrons", beam_electrons);
  event.add("TaggerTruthTracks", tagger_truth_tracks);
  event.add("RecoilTruthTracks", recoil_truth_tracks);
  event.add("TaggerTruthSeeds", tagger_truth_seeds);
  event.add("RecoilTruthSeeds", recoil_truth_seeds);

configurable in the next iteration of this producer

tvami avatar Jun 27 '25 21:06 tvami