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

Run2-sim04 Update Geant4 production Physics List for HGCal #16258

Merged
merged 1 commit into from Oct 23, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions SimG4Core/PhysicsLists/src/CMSEmStandardPhysicsLPM.cc
Expand Up @@ -166,6 +166,8 @@ void CMSEmStandardPhysicsLPM::ConstructProcess() {

G4Region* aRegion =
G4RegionStore::GetInstance()->GetRegion("HcalRegion");
G4Region* bRegion =
G4RegionStore::GetInstance()->GetRegion("HGCalRegion");

aParticleIterator->reset();
while( (*aParticleIterator)() ){
Expand Down Expand Up @@ -195,6 +197,7 @@ void CMSEmStandardPhysicsLPM::ConstructProcess() {
msc->AddEmModel(0, msc1);
msc->AddEmModel(0, msc2);
msc->AddEmModel(-1, msc3, aRegion);
if (bRegion) msc->AddEmModel(-1, msc3, bRegion);

G4eCoulombScatteringModel* ssm = new G4eCoulombScatteringModel();
G4CoulombScattering* ss = new G4CoulombScattering();
Expand Down Expand Up @@ -225,6 +228,7 @@ void CMSEmStandardPhysicsLPM::ConstructProcess() {
msc->AddEmModel(0, msc1);
msc->AddEmModel(0, msc2);
msc->AddEmModel(-1, msc3, aRegion);
if (bRegion) msc->AddEmModel(-1, msc3, bRegion);

G4eCoulombScatteringModel* ssm = new G4eCoulombScatteringModel();
G4CoulombScattering* ss = new G4CoulombScattering();
Expand Down