Hello,
To study the detector response, we used to select the photon conversion (to e+ e-) event using the following lines of codes,
for (G4Track* daughterTrack : *fpTrackingManager->GimmeSecondaries()) {
if (daughterTrack->GetCreatorProcess()->GetProcessSubType() == fGammaConversion) {
However, starting with Geant4 v 10.5, this line of code is giving us fGammaGeneralProcess instead of fGammaConversion. It seems that there was a certain functionality we missed to include when the Geant4 was upgraded in our system. What would be the best way to remedy the situation and get the correct process type (aka fGammaConversion)? Thanks in advance.
Regards,
Doris