Skip to content

Commit

Permalink
Merge pull request #46835 from ctdax/patch-2
Browse files Browse the repository at this point in the history
12_4_X Fixed FullModelHadronicProcess.cc energy deposit model
  • Loading branch information
cmsbuild authored Dec 3, 2024
2 parents 334629d + 3ec221f commit 51b204e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions SimG4Core/CustomPhysics/src/FullModelHadronicProcess.cc
Original file line number Diff line number Diff line change
Expand Up @@ -354,10 +354,7 @@ G4VParticleChange* FullModelHadronicProcess::PostStepDoIt(const G4Track& aTrack,
G4LorentzVector p_g_cms = gluinoMomentum; //gluino in CMS BEFORE collision
p_g_cms.boost(trafo_full_cms);

double e = cloud_p4_new.e() + gluinoMomentum.e();
if (outgoingRhadron)
e += outgoingRhadron->GetPDGMass();
G4LorentzVector p4_new(cloud_p4_new.v() + gluinoMomentum.v(), e);
G4LorentzVector p4_new(cloud_p4_new.v() + gluinoMomentum.v(), outgoingRhadron->GetPDGMass());
// G4cout<<"P4-diff: "<<(p4_new-cloud_p4_new-gluinoMomentum)/GeV<<", magnitude: "
// <<(p4_new-cloud_p4_new-gluinoMomentum).m()/MeV<<" MeV" <<G4endl;

Expand Down

0 comments on commit 51b204e

Please sign in to comment.