Skip to content

Commit

Permalink
Merge pull request #46728 from ctdax/master
Browse files Browse the repository at this point in the history
Work in progress! Update to FullModelHadronicProcess.cc energy deposit model
  • Loading branch information
cmsbuild authored Nov 21, 2024
2 parents 6017246 + 0ade249 commit 92333e3
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 92333e3

Please sign in to comment.