CMS 3D CMS Logo

CustomPhysics.cc
Go to the documentation of this file.
8 
9 #include "G4DecayPhysics.hh"
10 #include "G4EmExtraPhysics.hh"
11 #include "G4IonPhysics.hh"
12 #include "G4StoppingPhysics.hh"
13 #include "G4HadronElasticPhysics.hh"
14 #include "G4NeutronTrackingCut.hh"
15 
16 #include <CLHEP/Units/SystemOfUnits.h>
17 using CLHEP::ns;
18 
20  int ver = p.getUntrackedParameter<int>("Verbosity", 0);
21  bool tracking = p.getParameter<bool>("TrackingCut");
22  bool ssPhys = p.getUntrackedParameter<bool>("ExoticaPhysicsSS", false);
23  bool dbrem = p.getUntrackedParameter<bool>("DBrem", false);
24  double timeLimit = p.getParameter<double>("MaxTrackTime") * ns;
25  edm::LogInfo("PhysicsList") << "You are using the simulation engine: "
26  << "FTFP_BERT_EMM for regular particles \n"
27  << "CustomPhysicsList " << ssPhys << " for exotics; "
28  << " tracking cut " << tracking << " t(ns)= " << timeLimit / ns;
29  // EM Physics
30  RegisterPhysics(new CMSEmStandardPhysics(ver, p));
31 
32  // Synchroton Radiation & GN Physics
33  RegisterPhysics(new G4EmExtraPhysics(ver));
34 
35  // Decays
36  RegisterPhysics(new G4DecayPhysics(ver));
37 
38  // Hadron Elastic scattering
39  RegisterPhysics(new G4HadronElasticPhysics(ver));
40 
41  // Hadron Physics
42  RegisterPhysics(new CMSHadronPhysicsFTFP_BERT(ver));
43 
44  // Stopping Physics
45  RegisterPhysics(new G4StoppingPhysics(ver));
46 
47  // Ion Physics
48  RegisterPhysics(new G4IonPhysics(ver));
49 
50  // Neutron tracking cut
51  if (tracking) {
52  G4NeutronTrackingCut* ncut = new G4NeutronTrackingCut(ver);
53  ncut->SetTimeLimit(timeLimit);
54  RegisterPhysics(ncut);
55  }
56 
57  // Custom Physics
58  if (dbrem) {
59  RegisterPhysics(new APrimePhysics(p.getUntrackedParameter<double>("DBremMass"),
60  p.getUntrackedParameter<std::string>("DBremScaleFile"),
61  p.getUntrackedParameter<double>("DBremBiasFactor")));
62  } else if (ssPhys) {
63  RegisterPhysics(new CustomPhysicsListSS("custom", p));
64  } else {
65  RegisterPhysics(new CustomPhysicsList("custom", p));
66  }
67 }
CustomPhysics(const edm::ParameterSet &p)
Log< level::Info, false > LogInfo