Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add SimCalorimeterPulse data type for storing simulated calorimeter pulses pre-digitization #106

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

sly2j
Copy link
Contributor

@sly2j sly2j commented Apr 1, 2025

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 as edm4hep::RawTimeSeries (generic digitization output) and edm4hep::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?

  • Bug fix (issue #__)
  • New feature (issue #__)
  • Documentation update
  • Other: __

Please check if this PR fulfills the following:

  • Tests for the changes have been added
  • Documentation has been added / updated
  • Changes have been communicated to collaborators

Does this PR introduce breaking changes? What changes might users need to make to their code?

No

Does this PR change default behavior?

No

@sly2j sly2j requested a review from a team as a code owner April 1, 2025 18:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants