Skip to content
Merged
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
4 changes: 2 additions & 2 deletions src/QTNMPhysicsList.cc
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ void QTNMPhysicsList::ConstructProcess()
G4CoulombScattering* ss = new G4CoulombScattering();
G4EmMultiModel* mm = new G4EmMultiModel("CoulombSSModels");
// Elastic Scattering
G4eDPWACoulombScatteringModel* es = new G4eDPWACoulombScatteringModel(false, false, 0.0);
G4eDPWACoulombScatteringModel* es = new G4eDPWACoulombScatteringModel(false, false);
es->SetPolarAngleLimit(0.0); // No mixed model
mm->AddModel(es);
// Impact Ionisation
Expand All @@ -185,7 +185,7 @@ void QTNMPhysicsList::ConstructProcess()

// single scattering
ss = new G4CoulombScattering();
ss->AddEmModel(0, new G4eDPWACoulombScatteringModel(false, false, 0.0));
ss->AddEmModel(0, new G4eDPWACoulombScatteringModel(false, false));

// bremsstrahlung
brem = new G4eBremsstrahlung();
Expand Down
2 changes: 1 addition & 1 deletion test/Test0/src/ElasticScattering.cc
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ void ElasticScatteringList::ConstructProcess() {

// single scattering
G4CoulombScattering *ss = new G4CoulombScattering();
ss->AddEmModel(0, new G4eDPWACoulombScatteringModel(false, false, 0.0));
ss->AddEmModel(0, new G4eDPWACoulombScatteringModel(false, false));

ph->RegisterProcess(ss, particle);
}
2 changes: 1 addition & 1 deletion test/Test0/src/MultipleScattering.cc
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ void MultipleScatteringList::ConstructProcess() {
G4CoulombScattering* ss = new G4CoulombScattering();
G4EmMultiModel* mm = new G4EmMultiModel("CoulombSSModels");
// Elastic Scattering
G4eDPWACoulombScatteringModel* es = new G4eDPWACoulombScatteringModel(false, false, 0.0);
G4eDPWACoulombScatteringModel* es = new G4eDPWACoulombScatteringModel(false, false);
es->SetPolarAngleLimit(0.0); // No mixed model
mm->AddModel(es);
// Impact Ionisation
Expand Down