CMS 3D CMS Logo

List of all members | Public Member Functions
FTFPCMS_BERT_EMZ Class Reference

#include <FTFPCMS_BERT_EMZ.h>

Inheritance diagram for FTFPCMS_BERT_EMZ:
PhysicsList

Public Member Functions

 FTFPCMS_BERT_EMZ (G4LogicalVolumeToDDLogicalPartMap &map, const HepPDT::ParticleDataTable *table_, sim::ChordFinderSetter *chordFinderSetter_, const edm::ParameterSet &p)
 
- Public Member Functions inherited from PhysicsList
 PhysicsList (G4LogicalVolumeToDDLogicalPartMap &map, const HepPDT::ParticleDataTable *table_, sim::ChordFinderSetter *chordFinderSetter_, const edm::ParameterSet &p)
 
void SetCuts () override
 
 ~PhysicsList () override
 

Detailed Description

Definition at line 15 of file FTFPCMS_BERT_EMZ.h.

Constructor & Destructor Documentation

FTFPCMS_BERT_EMZ::FTFPCMS_BERT_EMZ ( G4LogicalVolumeToDDLogicalPartMap map,
const HepPDT::ParticleDataTable table_,
sim::ChordFinderSetter chordFinderSetter_,
const edm::ParameterSet p 
)

Definition at line 17 of file FTFPCMS_BERT_EMZ.cc.

References edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), and muons2muons_cfi::photon.

21  : PhysicsList(map, table_, chordFinderSetter_, p) {
22 
23  G4DataQuestionaire it(photon);
24 
25  int ver = p.getUntrackedParameter<int>("Verbosity",0);
26  bool emPhys = p.getUntrackedParameter<bool>("EMPhysics",true);
27  bool hadPhys = p.getUntrackedParameter<bool>("HadPhysics",true);
28  bool tracking= p.getParameter<bool>("TrackingCut");
29  double timeLimit = p.getParameter<double>("MaxTrackTime")*ns;
30  edm::LogInfo("PhysicsList") << "You are using the simulation engine: "
31  << "FTFP_BERT_EMZ \n Flags for EM Physics "
32  << emPhys << ", for Hadronic Physics "
33  << hadPhys << " and tracking cut " << tracking
34  << " t(ns)= " << timeLimit/ns;
35 
36  if (emPhys) {
37  // EM Physics
38  RegisterPhysics(new G4EmStandardPhysics_option4(ver));
39 
40  // Synchroton Radiation & GN Physics
41  G4EmExtraPhysics* gn = new G4EmExtraPhysics(ver);
42  RegisterPhysics(gn);
43  }
44 
45  // Decays
46  this->RegisterPhysics( new G4DecayPhysics(ver) );
47 
48  if (hadPhys) {
49  G4HadronicProcessStore::Instance()->SetVerbose(ver);
50 
51  // Hadron Elastic scattering
52  RegisterPhysics( new G4HadronElasticPhysics(ver));
53 
54  // Hadron Physics
55  RegisterPhysics( new G4HadronPhysicsFTFP_BERT(ver));
56 
57  // Stopping Physics
58  RegisterPhysics( new G4StoppingPhysics(ver));
59 
60  // Ion Physics
61  RegisterPhysics( new G4IonPhysics(ver));
62 
63  // Neutron tracking cut
64  if (tracking) {
65  G4NeutronTrackingCut* ncut= new G4NeutronTrackingCut(ver);
66  ncut->SetTimeLimit(timeLimit);
67  RegisterPhysics(ncut);
68  }
69  }
70 
71  // Monopoles
72  RegisterPhysics( new CMSMonopolePhysics(table_,chordFinderSetter_,p));
73 }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
PhysicsList(G4LogicalVolumeToDDLogicalPartMap &map, const HepPDT::ParticleDataTable *table_, sim::ChordFinderSetter *chordFinderSetter_, const edm::ParameterSet &p)
Definition: PhysicsList.cc:3
Table table_