CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
GFlash Class Reference

#include <GFlash.h>

Inheritance diagram for GFlash:
PhysicsList

Public Member Functions

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

Private Attributes

GflashHistogramtheHisto
 
edm::ParameterSet thePar
 

Detailed Description

Definition at line 11 of file GFlash.h.

Constructor & Destructor Documentation

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

Definition at line 23 of file GFlash.cc.

References GflashHistogram::bookHistogram(), edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), GflashHistogram::instance(), HLT_25ns14e33_v3_cff::region, GflashHistogram::setStoreFlag(), AlCaHLTBitMon_QueryRunRegistry::string, theHisto, and thePar.

26  : PhysicsList(map, table_, chordFinderSetter_, p),
27  thePar(p.getParameter<edm::ParameterSet>("GFlash")) {
28 
29  G4DataQuestionaire it(photon);
30 
31  //std::string hadronPhysics = thePar.getParameter<std::string>("GflashHadronPhysics");
32 
33  int ver = p.getUntrackedParameter<int>("Verbosity",0);
34  bool emPhys = p.getUntrackedParameter<bool>("EMPhysics",true);
35  bool hadPhys = p.getUntrackedParameter<bool>("HadPhysics",true);
36  bool tracking= p.getParameter<bool>("TrackingCut");
38  bool gem = thePar.getParameter<bool>("GflashEMShowerModel");
39  bool ghad = thePar.getParameter<bool>("GflashHadronShowerModel");
40 
41  edm::LogInfo("PhysicsList") << "You are using the simulation engine: "
42  << " + CMS GFLASH with Flags for EM Physics "
43  << gem << ", for Hadronic Physics "
44  << ghad
45  << " and tracking cut " << tracking
46  << " with special region " << region;
47 
48  RegisterPhysics(new ParametrisedPhysics("parametrised",thePar));
49 
50  if (emPhys) {
51  // EM Physics
52  RegisterPhysics( new CMSEmStandardPhysics95msc93("EM standard msc93",ver,region));
53 
54  // Synchroton Radiation & GN Physics
55  RegisterPhysics( new G4EmExtraPhysics(ver));
56  }
57 
58  // Decays
59  RegisterPhysics( new G4DecayPhysics(ver) );
60 
61  if (hadPhys) {
62  // Hadron Elastic scattering
63  RegisterPhysics( new G4HadronElasticPhysics(ver));
64 
65  // Hadron Physics
66  RegisterPhysics( new G4HadronPhysicsQGSP_FTFP_BERT(ver));
67  // Stopping Physics
68  RegisterPhysics( new G4StoppingPhysics(ver));
69 
70  // Ion Physics
71  RegisterPhysics( new G4IonPhysics(ver));
72 
73  // Neutron tracking cut
74  if (tracking) {
75  RegisterPhysics( new G4NeutronTrackingCut(ver));
76  }
77  /*
78  if(hadronPhysics=="QGSP_FTFP_BERT") {
79  RegisterPhysics( new HadronPhysicsQGSPCMS_FTFP_BERT_WP("hadron",quasiElastic));
80  }
81  else if(hadronPhysics=="QGSP_BERT") {
82  RegisterPhysics( new HadronPhysicsQGSP_BERT_WP("hadron",quasiElastic));
83  }
84  else if (hadronPhysics=="QGSP") {
85  RegisterPhysics( new HadronPhysicsQGSP_WP("hadron",quasiElastic));
86  }
87  else {
88  edm::LogInfo("PhysicsList") << hadronPhysics << " is not available for GflashHadronPhysics!"
89  << "... Using QGSP_FTFP_BERT\n";
90  RegisterPhysics( new HadronPhysicsQGSPCMS_FTFP_BERT_WP("hadron",quasiElastic));
91  }
92  // Stopping Physics
93  RegisterPhysics( new G4QStoppingPhysics("stopping"));
94 
95  // Ion Physics
96  RegisterPhysics( new G4IonPhysics("ion"));
97 
98  // Neutron tracking cut
99  if (tracking)
100  RegisterPhysics( new G4NeutronTrackingCut("Neutron tracking cut", ver));
101  */
102  }
103 
104  // Monopoles
105  RegisterPhysics( new CMSMonopolePhysics(table_,chordFinderSetter_,p));
106 
107  // singleton histogram object
108  if(thePar.getParameter<bool>("GflashHistogram")) {
110  theHisto->setStoreFlag(true);
111  theHisto->bookHistogram(thePar.getParameter<std::string>("GflashHistogramName"));
112  }
113 
114 }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
static GflashHistogram * instance()
edm::ParameterSet thePar
Definition: GFlash.h:19
void bookHistogram(std::string histFileName="gflash_histogram.root")
PhysicsList(G4LogicalVolumeToDDLogicalPartMap &map, const HepPDT::ParticleDataTable *table_, sim::ChordFinderSetter *chordFinderSetter_, const edm::ParameterSet &p)
Definition: PhysicsList.cc:8
Table table_
GflashHistogram * theHisto
Definition: GFlash.h:18
void setStoreFlag(bool flag)
GFlash::~GFlash ( )
virtual

Definition at line 116 of file GFlash.cc.

References edm::ParameterSet::getParameter(), theHisto, and thePar.

116  {
117 
118  if(thePar.getParameter<bool>("GflashHistogram")) {
119  if(theHisto) delete theHisto;
120  }
121 
122 }
T getParameter(std::string const &) const
edm::ParameterSet thePar
Definition: GFlash.h:19
GflashHistogram * theHisto
Definition: GFlash.h:18

Member Data Documentation

GflashHistogram* GFlash::theHisto
private

Definition at line 18 of file GFlash.h.

Referenced by GFlash(), and ~GFlash().

edm::ParameterSet GFlash::thePar
private

Definition at line 19 of file GFlash.h.

Referenced by GFlash(), and ~GFlash().