CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
QGSPCMS_BERT_HP.cc
Go to the documentation of this file.
1 #include "QGSPCMS_BERT_HP.hh"
5 
6 #include "G4DecayPhysics.hh"
7 #include "G4EmExtraPhysics.hh"
8 #include "G4IonPhysics.hh"
9 #include "G4QStoppingPhysics.hh"
10 #include "G4HadronElasticPhysics.hh"
11 
12 #include "G4DataQuestionaire.hh"
13 #include "HadronPhysicsQGSP_BERT_HP.hh"
14 
15 QGSPCMS_BERT_HP::QGSPCMS_BERT_HP(G4LogicalVolumeToDDLogicalPartMap& map,
17  sim::FieldBuilder *fieldBuilder_,
18  const edm::ParameterSet & p) : PhysicsList(map, table_, fieldBuilder_, p) {
19 
20  G4DataQuestionaire it(photon);
21 
22  int ver = p.getUntrackedParameter<int>("Verbosity",0);
23  bool emPhys = p.getUntrackedParameter<bool>("EMPhysics",true);
24  bool hadPhys = p.getUntrackedParameter<bool>("HadPhysics",true);
25  edm::LogInfo("PhysicsList") << "You are using the simulation engine: "
26  << "QGSP_BERT_HP 2.3 with Flags for EM Physics "
27  << emPhys << " and for Hadronic Physics "
28  << hadPhys << "\n";
29 
30  if (emPhys) {
31  // EM Physics
32  RegisterPhysics( new CMSEmStandardPhysics("standard EM",ver));
33 
34  // Synchroton Radiation & GN Physics
35  RegisterPhysics( new G4EmExtraPhysics("extra EM"));
36  }
37 
38  // Decays
39  RegisterPhysics( new G4DecayPhysics("decay",ver) );
40 
41  if (hadPhys) {
42  // Hadron Elastic scattering
43  RegisterPhysics( new G4HadronElasticPhysics("elastic",ver,true));
44 
45  // Hadron Physics
46  G4bool quasiElastic=true;
47  RegisterPhysics( new HadronPhysicsQGSP_BERT_HP("hadron",quasiElastic));
48  //RegisterPhysics( new HadronPhysicsQGSP_BERT_HP("hadron"));
49 
50  // Stopping Physics
51  RegisterPhysics( new G4QStoppingPhysics("stopping"));
52 
53  // Ion Physics
54  RegisterPhysics( new G4IonPhysics("ion"));
55  }
56 
57  // Monopoles
58  RegisterPhysics( new CMSMonopolePhysics(table_,fieldBuilder_,p));
59 }
60 
T getUntrackedParameter(std::string const &, T const &) const
HepPDT::ParticleDataTable ParticleDataTable
Table table_
Definition: Actions.cc:22