-
Notifications
You must be signed in to change notification settings - Fork 103
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
Conversation
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.
Test Results 14 files 14 suites 5h 26m 37s ⏱️ For more details on these failures, see this check. Results for commit 1b07e29. ♻️ This comment has been updated with latest results. |
I think "gang" sounds too much like slang (pun intended) to be clearly understood |
Thanks. I agree the naming's not great, but (as is often the case), it's What we're trying to get at here is, does the segmentation have cells Some other possibilities might be: bool cellsSpanVolumes() Do any of those sound ok to you? |
Co-authored-by: Andre Sailer <[email protected]>
Co-authored-by: Andre Sailer <[email protected]>
Co-authored-by: Andre Sailer <[email protected]>
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
ENDRELEASENOTES