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

fix: fill energy deposition for Geant4OpticalTracker #1068

Merged

Conversation

c-dilks
Copy link
Contributor

@c-dilks c-dilks commented Mar 1, 2023

Fix #1067

I'm not sure if this is the correct way to fix this, but it does restore the energy deposition distribution for the OpticalTracker example. In particular:

  • does hit->truth need to be filled too?
  • step->GetTotalEnergyDeposit() in the print statement is still always zero (but hit->energyDeposit looks correct)

BEGINRELEASENOTES

  • fix: fill energy deposition for Geant4SensitiveAction<Geant4OpticalTracker>

ENDRELEASENOTES

@MarkusFrankATcernch MarkusFrankATcernch enabled auto-merge (rebase) March 1, 2023 17:11
@MarkusFrankATcernch MarkusFrankATcernch merged commit 860bf45 into AIDASoft:master Mar 1, 2023
MarkusFrankATcernch added a commit to MarkusFrankATcernch/DD4hep that referenced this pull request Mar 1, 2023
@MarkusFrankATcernch
Copy link
Contributor

Hi,
Thanks for spotting this!

If I trace the changes down, then the difference in the energy deposit for optical photons in the OpticalTracker SD is:
-- BAD: h.deposit() aka G4Step::GetTotalEnergyDeposit()
-- GOOD: deposit from MC contribution: deposit = (h.trackDef() == G4OpticalPhoton::OpticalPhotonDefinition()) ? h.trkEnergy() : h.totalEnergy();
where totalEnergy = GetTotalEnergyDeposit and trkEnergy = track->GetTotalEnergy()
which of course makes a difference.

Is this correct ?
If YES, then one could do quite some optimization here, because the SD callback Geant4SensitiveAction<Geant4OpticalTracker>::process() does the same calculations
as Geant4HitData::extractContribution(...), which is called in addition.

MarkusFrankATcernch added a commit to MarkusFrankATcernch/DD4hep that referenced this pull request Mar 1, 2023
MarkusFrankATcernch added a commit to MarkusFrankATcernch/DD4hep that referenced this pull request Mar 1, 2023
MarkusFrankATcernch added a commit that referenced this pull request Mar 2, 2023
MarkusFrankATcernch added a commit that referenced this pull request Mar 2, 2023
@c-dilks
Copy link
Contributor Author

c-dilks commented Mar 2, 2023

Is this correct ?

I'm not sure. @wdconinc spent some time working on this SD action, so perhaps he could comment.

@c-dilks c-dilks deleted the fix-opticaltracker-edep branch March 2, 2023 20:34
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.

Energy deposition from Geant4SensitiveAction<Geant4OpticalTracker> is not filled
2 participants