Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion SimG4Core/PhysicsLists/src/CMSHadronPhysicsFTFP_BERT106.cc
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
#include "G4BaryonConstructor.hh"
#include "G4ShortLivedConstructor.hh"

#include "G4HadronCaptureProcess.hh"
#include "G4NeutronRadCapture.hh"
#include "G4NeutronInelasticXS.hh"
#include "G4NeutronCaptureXS.hh"
Expand Down
5 changes: 2 additions & 3 deletions SimG4Core/PhysicsLists/src/MonopoleTransportation.cc
Original file line number Diff line number Diff line change
Expand Up @@ -398,8 +398,7 @@ G4VParticleChange* MonopoleTransportation::AlongStepDoIt(const G4Track& track, c
if ((verboseLevel > 1) || (endEnergy > fThreshold_Warning_Energy)) {
G4cout << " MonopoleTransportation is killing track that is looping or stuck " << G4endl << " This track has "
<< track.GetKineticEnergy() / MeV << " MeV energy." << G4endl;
G4cout << " Number of trials = " << fNoLooperTrials << " No of calls to AlongStepDoIt = " << noCalls
<< G4endl;
G4cout << " Number of trials = " << fNoLooperTrials << G4endl;
}
#endif
fNoLooperTrials = 0;
Expand All @@ -408,7 +407,7 @@ G4VParticleChange* MonopoleTransportation::AlongStepDoIt(const G4Track& track, c
#ifdef G4VERBOSE
if ((verboseLevel > 2)) {
G4cout << " MonopoleTransportation::AlongStepDoIt(): Particle looping - "
<< " Number of trials = " << fNoLooperTrials << " No of calls to = " << noCalls << G4endl;
<< " Number of trials = " << fNoLooperTrials << G4endl;
}
#endif
}
Expand Down