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

Handle ganged segmentations. #1384

Merged
merged 7 commits into from
Jan 16, 2025
Merged

Conversation

scott-snyder
Copy link
Contributor

@scott-snyder scott-snyder commented Jan 11, 2025

Some segmentations can gang together regions from multiple volumes (such as the Allegro ECal). In the calorimeter implementations of Geant4SensitiveAction, we were finding the hit position by first getting the local position from the segmentation, then converting to a global position using the transform obtained from the step. But if multiple volumes are ganged, this may not be correct: the volume which actually contains the hit may not be the same one which the segmentation used for its local coordinate system. In this case, we need to instead find the volID to use from the segmentation and get the transformation by looking it up in the volume manager.

However, not all segmentations properly implement the volumeID method needed for this, so this has to be opt-in. We add an isGanged() method to the Segmentation interface. If this is overridden with a method that returns true, then we proceed as described above. Otherwise, we preserve the present behavior.

Also factor out some duplicated code among the calorimeter implementations.

BEGINRELEASENOTES

  • DD4hep::Segmentations: add cellsSpanVolumes function to mark segmentations that that can have cells that span multiple volumes, such as the Allegro ECal.

ENDRELEASENOTES

Some segmentations can gang together regions from multiple volumes (such
as the Allegro ECal).  In the calorimeter implementations
of Geant4SensitiveAction, we were finding the hit position by first
getting the local position from the segmentation, then converting
to a global position using the transform obtained from the step.
But if multiple volumes are ganged, this may not be correct:
the volume which actually contains the hit may not be the same one
which the segmentation used for its local coordinate system.
In this case, we need to instead find the volID to use from
the segmentation and get the transformation by looking it up
in the volume manager.

However, not all segmentations properly implement the volumeID method
needed for this, so this has to be opt-in.  We add an isGanged()
method to the Segmentation interface.  If this is overridden with
a method that returns true, then we proceed as described above.
Otherwise, we preserve the present behavior.

Also factor out some duplicated code among the calorimeter implementations.
Copy link

github-actions bot commented Jan 11, 2025

Test Results

   14 files     14 suites   5h 26m 37s ⏱️
  369 tests   366 ✅ 0 💤 3 ❌
2 538 runs  2 529 ✅ 0 💤 9 ❌

For more details on these failures, see this check.

Results for commit 1b07e29.

♻️ This comment has been updated with latest results.

@andresailer
Copy link
Member

I think "gang" sounds too much like slang (pun intended) to be clearly understood

@scott-snyder
Copy link
Contributor Author

Thanks. I agree the naming's not great, but (as is often the case), it's
difficult to find something that's descriptive but not unwieldy.

What we're trying to get at here is, does the segmentation have cells
which can encompass multiple volumes; that is, can points from distinct
volumes be assigned to the same cell?

Some other possibilities might be:

bool cellsSpanVolumes()
bool canCellsSpanVolumes()
bool isMultiVolume()
bool multipleVolumesPerCell()

Do any of those sound ok to you?

@andresailer andresailer merged commit 9b9d43a into AIDASoft:master Jan 16, 2025
11 of 14 checks passed
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.

2 participants