CMS 3D CMS Logo

List of all members | Public Member Functions
FTFPCMS_BERT_EMM_TRK Class Reference

#include <FTFPCMS_BERT_EMM_TRK.h>

Inheritance diagram for FTFPCMS_BERT_EMM_TRK:
PhysicsList

Public Member Functions

 FTFPCMS_BERT_EMM_TRK (const edm::ParameterSet &p)
 
- Public Member Functions inherited from PhysicsList
 PhysicsList (const edm::ParameterSet &p)
 
void SetCuts () override
 
 ~PhysicsList () override
 

Detailed Description

Definition at line 7 of file FTFPCMS_BERT_EMM_TRK.h.

Constructor & Destructor Documentation

FTFPCMS_BERT_EMM_TRK::FTFPCMS_BERT_EMM_TRK ( const edm::ParameterSet p)

Definition at line 16 of file FTFPCMS_BERT_EMM_TRK.cc.

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

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