Add SimCalorimeterPulse
data type for storing simulated calorimeter pulses pre-digitization
#106
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Briefly, what does this PR introduce?
This PR adds a new data type,
edm4eic::SimCalorimeterPulse
, to represent simulated calorimeter pulses before digitization.The new structure is modeled consistently with
edm4hep::SimCalorimeterHit
and aligns with existing waveform structures such asedm4hep::RawTimeSeries
(generic digitization output) andedm4hep::TimeSeries
(generic measured time series).SimCalorimeterPulse
defines three one-to-many relations relations:SimCalorimeterHit
: Pulses can be constructed from contributions of one or more simulated calorimeter hits.SimCalorimeterPulse
: Pulses can be constructed out of other pulses.MCParticle
: Each pulse can be attributed to a single MCParticle (primary pulse), multiple MCParticles (overlayed pulses), or zero MCParticles (noise pulse).Storing calorimeter pulses at the simulation level ensures conceptual clarity and consistency within our data model. The simulated pulse data to be stored in this structure have no equivalent in real detector output, and are therefore not digitization output.
By using a Simulation structure, we gain direct
Relation
support with other simulation entities, enabling efficient backward navigation through the simulation chain. While Associations are used to link digitization and reconstruction structures to simulation, Relations are preferred for internal connections within the same domain (e.g. within Simulation or within Reconstruction). This design avoids introducing redundant Association types and keeps the data model consistent, clean and efficient.What kind of change does this PR introduce?
Please check if this PR fulfills the following:
Does this PR introduce breaking changes? What changes might users need to make to their code?
No
Does this PR change default behavior?
No