ATLAS Offline Software
Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes | Friends | List of all members
LArG4FastSimSvc Class Reference

Class for fast simulation option service. More...

#include <LArG4FastSimSvc.h>

Inheritance diagram for LArG4FastSimSvc:
Collaboration diagram for LArG4FastSimSvc:

Public Member Functions

StatusCode queryInterface (const InterfaceID &riid, void **ppvIF)
 Query interface. More...
 
virtual StatusCode initialize ()
 
virtual StatusCode finalize ()
 
virtual bool flagToShowerLib (const G4ParticleDefinition &particleType) const
 get switch for frozen showers More...
 
virtual double maxEneToShowerLib (const G4ParticleDefinition &particleType) const
 get lower energy limit for frozen showers More...
 
virtual double minEneToShowerLib (const G4ParticleDefinition &particleType) const
 get upper energy limit for frozen showers More...
 
virtual bool ContainLow () const
 Apply check containment at low eta. More...
 
virtual bool ContainHigh () const
 Apply check containment at high eta. More...
 
virtual bool ContainCrack () const
 Apply check containment in crack region. More...
 
virtual bool generateFSStartingPoints () const
 
virtual bool generateFSStartingPoint (const HepMC::GenEvent *ge)
 
virtual float generateFSStartingPointsRatio () const
 
virtual int DetectorTag () const
 
 LArG4FastSimSvc (const std::string &name, ISvcLocator *sl)
 Standard Constructor. More...
 
virtual ~LArG4FastSimSvc ()
 Standard Destructor. More...
 
MsgStream & msg () const
 
MsgStream & msg (const MSG::Level lvl) const
 
bool msgLvl (const MSG::Level lvl) const
 

Static Public Member Functions

static const InterfaceID & interfaceID ()
 Retrieve interface ID. More...
 

Private Member Functions

void print () const
 dump object content More...
 

Private Attributes

bool m_e_FlagShowerLib
 switch for electron frozen showers
More...
 
double m_e_MinEneShowerLib
 lower energy limit for electron frozen showers More...
 
double m_e_MaxEneShowerLib
 upper energy limit for electron frozen showers More...
 
bool m_g_FlagShowerLib
 switch for photon frozen showers
More...
 
double m_g_MaxEneShowerLib
 lower energy limit for photon frozen showers
More...
 
double m_g_MinEneShowerLib
 upper energy limit for photon frozen showers
More...
 
bool m_Neut_FlagShowerLib
 switch for neutron frozen showers More...
 
double m_Neut_MinEneShowerLib
 lower energy limit for neutron frozen showers More...
 
double m_Neut_MaxEneShowerLib
 upper energy limit for neutron frozen showers More...
 
bool m_Pion_FlagShowerLib
 switch for pion frozen showers More...
 
double m_Pion_MinEneShowerLib
 lower energy limit for pion frozen showers More...
 
double m_Pion_MaxEneShowerLib
 upper energy limit for pion frozen showers More...
 
bool m_containLow
 switch for containment check at low eta More...
 
bool m_containHigh
 switch for containment check at high eta More...
 
bool m_containCrack
 switch for containment check in crack region More...
 
StringProperty m_generated_starting_points_file
 switch for shower starting point record More...
 
float m_generated_starting_points_ratio
 switch for shower starting point record More...
 
bool m_generate_starting_points
 
HepMC::IO_GenEvent * m_starting_points_file
 
int m_detector_tag
 name for the detector tag for the ShowerLibSvc More...
 
std::string m_detector_tag_str
 
std::map< std::string, int > m_detmap
 

Friends

class SvcFactory< LArG4FastSimSvc >
 

Detailed Description

Class for fast simulation option service.

Author
Wolfgang Ehrenfeld, University of Hamburg, Germany
Zachary Marshal

Definition at line 42 of file LArG4FastSimSvc.h.

Constructor & Destructor Documentation

◆ LArG4FastSimSvc()

LArG4FastSimSvc::LArG4FastSimSvc ( const std::string &  name,
ISvcLocator *  sl 
)

Standard Constructor.

Definition at line 19 of file LArG4FastSimSvc.cxx.

20  : AthService(name,sl),
25 {
26  declareProperty("EFlagToShowerLib", m_e_FlagShowerLib = true, "Switch for e+/- frozen showers");
27  declareProperty("EMinEneShowerLib", m_e_MinEneShowerLib = 0.0*CLHEP::GeV, "Minimum energy for e+/- frozen showers");
28  declareProperty("EMaxEneShowerLib", m_e_MaxEneShowerLib = 1.0*CLHEP::GeV, "Maximum energy for e+/- frozen showers");
29 
30  declareProperty("GFlagToShowerLib", m_g_FlagShowerLib = true, "Switch for photon frozen showers");
31  declareProperty("GMinEneShowerLib", m_g_MinEneShowerLib = 0.*CLHEP::GeV, "Minimum energy for photon frozen showers");
32  declareProperty("GMaxEneShowerLib", m_g_MaxEneShowerLib = 0.010*CLHEP::GeV, "Maximum energy for photon frozen showers");
33 
34  declareProperty("NeutFlagToShowerLib", m_Neut_FlagShowerLib = true, "Switch for neutron frozen showers");
35  declareProperty("NeutMinEneShowerLib", m_Neut_MinEneShowerLib = 0.0*CLHEP::GeV, "Minimum energy for neutron frozen showers");
36  declareProperty("NeutMaxEneShowerLib", m_Neut_MaxEneShowerLib = 0.1*CLHEP::GeV, "Maximum energy for neutron frozen showers");
37 
38  declareProperty("PionFlagToShowerLib", m_Pion_FlagShowerLib = true, "Switch for neutron frozen showers");
39  declareProperty("PionMinEneShowerLib", m_Pion_MinEneShowerLib = 0.0*CLHEP::GeV, "Minimum energy for neutron frozen showers");
40  declareProperty("PionMaxEneShowerLib", m_Pion_MaxEneShowerLib = 2.0*CLHEP::GeV, "Maximum energy for neutron frozen showers");
41 
42  declareProperty("ContainLow", m_containLow = true, "Switch for containment at low eta");
43  declareProperty("ContainHigh", m_containHigh = true, "Switch for containment at high eta");
44  declareProperty("ContainCrack", m_containCrack = true, "Switch for containment in the crack region");
45 
46  declareProperty("GeneratedStartingPointsFile", m_generated_starting_points_file = "", "Name of file for generated SPs. Do not touch until you want to produce a new library");
47  declareProperty("GeneratedStartingPointsRatio", m_generated_starting_points_ratio = 0.02, "Ratio of SPs that goes to output");
48 
49  /* BE SURE THIS ONE IS THE SAME AS IN LArG4ShowerLibSvc!!! */
50  enum DETECTOR {EMB=100000,EMEC=200000,FCAL1=300000,FCAL2=400000,FCAL3=500000,HECLOC=600000,HEC=700000};
51 
52  m_detmap["EMB"]=EMB;
53  m_detmap["EMEC"]=EMEC;
54  m_detmap["FCAL1"]=FCAL1;
55  m_detmap["FCAL2"]=FCAL2;
56  m_detmap["FCAL3"]=FCAL3;
57  m_detmap["HECLOC"]=HECLOC;
58  m_detmap["HEC"]=HEC;
59 
60 }

◆ ~LArG4FastSimSvc()

LArG4FastSimSvc::~LArG4FastSimSvc ( )
virtual

Standard Destructor.

Definition at line 64 of file LArG4FastSimSvc.cxx.

65 {
66 }

Member Function Documentation

◆ ContainCrack()

bool LArG4FastSimSvc::ContainCrack ( ) const
inlinevirtual

Apply check containment in crack region.

Implements ILArG4FastSimSvc.

Definition at line 160 of file LArG4FastSimSvc.h.

◆ ContainHigh()

bool LArG4FastSimSvc::ContainHigh ( ) const
inlinevirtual

Apply check containment at high eta.

Implements ILArG4FastSimSvc.

Definition at line 159 of file LArG4FastSimSvc.h.

◆ ContainLow()

bool LArG4FastSimSvc::ContainLow ( ) const
inlinevirtual

Apply check containment at low eta.

Implements ILArG4FastSimSvc.

Definition at line 158 of file LArG4FastSimSvc.h.

◆ DetectorTag()

int LArG4FastSimSvc::DetectorTag ( ) const
inlinevirtual

Implements ILArG4FastSimSvc.

Definition at line 164 of file LArG4FastSimSvc.h.

164 { return m_detector_tag; }

◆ finalize()

StatusCode LArG4FastSimSvc::finalize ( )
virtual

Definition at line 104 of file LArG4FastSimSvc.cxx.

105 {
106  msg(MSG::INFO) << "Finalizing fast simulation service. " << endmsg;
107 
109  delete m_starting_points_file;
110  }
111  return StatusCode::SUCCESS;
112 }

◆ flagToShowerLib()

bool LArG4FastSimSvc::flagToShowerLib ( const G4ParticleDefinition &  particleType) const
inlinevirtual

get switch for frozen showers

Implements ILArG4FastSimSvc.

Definition at line 114 of file LArG4FastSimSvc.h.

115 {
116  if ( &particleType == G4Electron::ElectronDefinition() ||
117  &particleType == G4Positron::PositronDefinition() ) {
118  return m_e_FlagShowerLib;
119  } else if ( &particleType == G4Gamma::GammaDefinition() ) {
120  return m_g_FlagShowerLib;
121  } else if ( &particleType == G4Neutron::NeutronDefinition() ) {
122  return m_Neut_FlagShowerLib;
123  } else if ( &particleType == G4PionPlus::PionPlusDefinition() ||
124  &particleType == G4PionMinus::PionMinusDefinition() ) {
125  return m_Pion_FlagShowerLib;
126  } else return false;
127 }

◆ generateFSStartingPoint()

bool LArG4FastSimSvc::generateFSStartingPoint ( const HepMC::GenEvent *  ge)
virtual

Implements ILArG4FastSimSvc.

Definition at line 165 of file LArG4FastSimSvc.cxx.

166 {
168  return false;
169  m_starting_points_file->write_event(ge);
170  return true;
171 }

◆ generateFSStartingPoints()

bool LArG4FastSimSvc::generateFSStartingPoints ( ) const
inlinevirtual

Implements ILArG4FastSimSvc.

Definition at line 162 of file LArG4FastSimSvc.h.

162 { return m_generate_starting_points; }

◆ generateFSStartingPointsRatio()

float LArG4FastSimSvc::generateFSStartingPointsRatio ( ) const
inlinevirtual

Implements ILArG4FastSimSvc.

Definition at line 163 of file LArG4FastSimSvc.h.

◆ initialize()

StatusCode LArG4FastSimSvc::initialize ( )
virtual

Definition at line 69 of file LArG4FastSimSvc.cxx.

70 {
71  msg(MSG::INFO) << "Initializing" << endmsg;
72 
73  if (name().find("EMB") != std::string::npos) {
74  m_detector_tag_str = "EMB";
75  } else if (name().find("EMEC") != std::string::npos) {
76  m_detector_tag_str = "EMEC";
77  } else if (name().find("FCAL2") != std::string::npos) {
78  m_detector_tag_str = "FCAL2";
79  } else if (name().find("FCAL") != std::string::npos) {
80  m_detector_tag_str = "FCAL1";
81  } else if (name().find("HEC") != std::string::npos) {
82  m_detector_tag_str = "HEC";
83  } else if (name().find("DeadMaterial") != std::string::npos) {
84  m_detector_tag_str = "DM";
85  } else {
86  m_detector_tag_str = "UNKNOWN";
87  }
88  m_detector_tag = 0;
89  if (m_detmap.find(m_detector_tag_str) != m_detmap.end()){
91  }
93 
95  m_starting_points_file = new HepMC::IO_GenEvent(m_generated_starting_points_file.value().c_str(),std::ios::out);
96  }
97  // list all properties
98  this->print();
99 
100  return StatusCode::SUCCESS;
101 }

◆ interfaceID()

static const InterfaceID& LArG4FastSimSvc::interfaceID ( )
inlinestatic

Retrieve interface ID.

Definition at line 47 of file LArG4FastSimSvc.h.

47 { return IID_ILArG4FastSimSvc; }

◆ maxEneToShowerLib()

double LArG4FastSimSvc::maxEneToShowerLib ( const G4ParticleDefinition &  particleType) const
inlinevirtual

get lower energy limit for frozen showers

Implements ILArG4FastSimSvc.

Definition at line 143 of file LArG4FastSimSvc.h.

144 {
145  if ( &particleType == G4Electron::ElectronDefinition() ||
146  &particleType == G4Positron::PositronDefinition() ) {
147  return m_e_MaxEneShowerLib;
148  } else if ( &particleType == G4Gamma::GammaDefinition() ) {
149  return m_g_MaxEneShowerLib;
150  } else if ( &particleType == G4Neutron::NeutronDefinition() ) {
151  return m_Neut_MaxEneShowerLib;
152  } else if ( &particleType == G4PionPlus::PionPlusDefinition() ||
153  &particleType == G4PionMinus::PionMinusDefinition() ) {
154  return m_Pion_MaxEneShowerLib;
155  } else return 0.0;
156 }

◆ minEneToShowerLib()

double LArG4FastSimSvc::minEneToShowerLib ( const G4ParticleDefinition &  particleType) const
inlinevirtual

get upper energy limit for frozen showers

Implements ILArG4FastSimSvc.

Definition at line 128 of file LArG4FastSimSvc.h.

129 {
130  if ( &particleType == G4Electron::ElectronDefinition() ||
131  &particleType == G4Positron::PositronDefinition() ) {
132  return m_e_MinEneShowerLib;
133  } else if ( &particleType == G4Gamma::GammaDefinition() ) {
134  return m_g_MinEneShowerLib;
135  } else if ( &particleType == G4Neutron::NeutronDefinition() ) {
136  return m_Neut_MinEneShowerLib;
137  } else if ( &particleType == G4PionPlus::PionPlusDefinition() ||
138  &particleType == G4PionMinus::PionMinusDefinition() ) {
139  return m_Pion_MinEneShowerLib;
140  } else return 0.0;
141 }

◆ msg() [1/2]

MsgStream& AthCommonMsg< Service >::msg ( ) const
inlineinherited

Definition at line 24 of file AthCommonMsg.h.

24  {
25  return this->msgStream();
26  }

◆ msg() [2/2]

MsgStream& AthCommonMsg< Service >::msg ( const MSG::Level  lvl) const
inlineinherited

Definition at line 27 of file AthCommonMsg.h.

27  {
28  return this->msgStream(lvl);
29  }

◆ msgLvl()

bool AthCommonMsg< Service >::msgLvl ( const MSG::Level  lvl) const
inlineinherited

Definition at line 30 of file AthCommonMsg.h.

30  {
31  return this->msgLevel(lvl);
32  }

◆ print()

void LArG4FastSimSvc::print ( ) const
private

dump object content

Definition at line 130 of file LArG4FastSimSvc.cxx.

131 {
132  msg(MSG::INFO) << "List of Frozen Shower options:" << endmsg;
133  msg(MSG::INFO) << "Detector tag is " << m_detector_tag_str << endmsg;
135  msg(MSG::INFO) << "Starting points will be saved to " << m_generated_starting_points_file.value() << endmsg;
136  }
137 
138  if (this->m_e_FlagShowerLib) {
139  msg(MSG::INFO) << "Electrons energy range [MeV] for Frozen Showers ["
140  << this->m_e_MinEneShowerLib << " -- " << this->m_e_MaxEneShowerLib << "]" << endmsg;
141  } else {
142  msg(MSG::INFO) << "Electrons wont be parameterized" << endmsg;
143  }
144 
145  if (this->m_g_FlagShowerLib) {
146  msg(MSG::INFO) << "Photons energy range [MeV] for Frozen Showers ["
147  << this->m_g_MinEneShowerLib << " -- " << this->m_g_MaxEneShowerLib << "]" << endmsg;
148  } else {
149  msg(MSG::INFO) << "Photons wont be parameterized" << endmsg;
150  }
151 
152  if (this->m_Neut_FlagShowerLib) {
153  msg(MSG::INFO) << "Neutrons energy range [MeV] for Frozen Showers ["
154  << this->m_Neut_MinEneShowerLib << " -- " << this->m_Neut_MaxEneShowerLib << "]" << endmsg;
155  } else {
156  msg(MSG::INFO) << "Neutrons wont be parameterized" << endmsg;
157  }
158 
159  // the containment checks
160  msg(MSG::INFO) << "Containment check at low eta: " << (this->m_containLow ? "YES" : "NO") << endmsg;
161  msg(MSG::INFO) << "Containment check at crack eta: " << (this->m_containCrack ? "YES" : "NO") << endmsg;
162  msg(MSG::INFO) << "Containment check at high eta: " << (this->m_containHigh ? "YES" : "NO") << endmsg;
163 }

◆ queryInterface()

StatusCode LArG4FastSimSvc::queryInterface ( const InterfaceID &  riid,
void **  ppvIF 
)

Query interface.

Definition at line 116 of file LArG4FastSimSvc.cxx.

117 {
118  if ( IID_ILArG4FastSimSvc == riid ) {
119  *ppvInterface = (ILArG4FastSimSvc*)this;
120  }
121  else {
122  // Interface is not directly available: try out a base class
123  return AthService::queryInterface(riid, ppvInterface);
124  }
125  addRef();
126  return StatusCode::SUCCESS;
127 }

Friends And Related Function Documentation

◆ SvcFactory< LArG4FastSimSvc >

friend class SvcFactory< LArG4FastSimSvc >
friend

Definition at line 67 of file LArG4FastSimSvc.h.

Member Data Documentation

◆ m_containCrack

bool LArG4FastSimSvc::m_containCrack
private

switch for containment check in crack region

Definition at line 100 of file LArG4FastSimSvc.h.

◆ m_containHigh

bool LArG4FastSimSvc::m_containHigh
private

switch for containment check at high eta

Definition at line 99 of file LArG4FastSimSvc.h.

◆ m_containLow

bool LArG4FastSimSvc::m_containLow
private

switch for containment check at low eta

Definition at line 98 of file LArG4FastSimSvc.h.

◆ m_detector_tag

int LArG4FastSimSvc::m_detector_tag
private

name for the detector tag for the ShowerLibSvc

Definition at line 106 of file LArG4FastSimSvc.h.

◆ m_detector_tag_str

std::string LArG4FastSimSvc::m_detector_tag_str
private

Definition at line 107 of file LArG4FastSimSvc.h.

◆ m_detmap

std::map<std::string,int> LArG4FastSimSvc::m_detmap
private

Definition at line 108 of file LArG4FastSimSvc.h.

◆ m_e_FlagShowerLib

bool LArG4FastSimSvc::m_e_FlagShowerLib
private

switch for electron frozen showers

Definition at line 82 of file LArG4FastSimSvc.h.

◆ m_e_MaxEneShowerLib

double LArG4FastSimSvc::m_e_MaxEneShowerLib
private

upper energy limit for electron frozen showers

Definition at line 84 of file LArG4FastSimSvc.h.

◆ m_e_MinEneShowerLib

double LArG4FastSimSvc::m_e_MinEneShowerLib
private

lower energy limit for electron frozen showers

Definition at line 83 of file LArG4FastSimSvc.h.

◆ m_g_FlagShowerLib

bool LArG4FastSimSvc::m_g_FlagShowerLib
private

switch for photon frozen showers

Definition at line 86 of file LArG4FastSimSvc.h.

◆ m_g_MaxEneShowerLib

double LArG4FastSimSvc::m_g_MaxEneShowerLib
private

lower energy limit for photon frozen showers

Definition at line 87 of file LArG4FastSimSvc.h.

◆ m_g_MinEneShowerLib

double LArG4FastSimSvc::m_g_MinEneShowerLib
private

upper energy limit for photon frozen showers

Definition at line 88 of file LArG4FastSimSvc.h.

◆ m_generate_starting_points

bool LArG4FastSimSvc::m_generate_starting_points
private

Definition at line 104 of file LArG4FastSimSvc.h.

◆ m_generated_starting_points_file

StringProperty LArG4FastSimSvc::m_generated_starting_points_file
private

switch for shower starting point record

Definition at line 102 of file LArG4FastSimSvc.h.

◆ m_generated_starting_points_ratio

float LArG4FastSimSvc::m_generated_starting_points_ratio
private

switch for shower starting point record

Definition at line 103 of file LArG4FastSimSvc.h.

◆ m_Neut_FlagShowerLib

bool LArG4FastSimSvc::m_Neut_FlagShowerLib
private

switch for neutron frozen showers

Definition at line 90 of file LArG4FastSimSvc.h.

◆ m_Neut_MaxEneShowerLib

double LArG4FastSimSvc::m_Neut_MaxEneShowerLib
private

upper energy limit for neutron frozen showers

Definition at line 92 of file LArG4FastSimSvc.h.

◆ m_Neut_MinEneShowerLib

double LArG4FastSimSvc::m_Neut_MinEneShowerLib
private

lower energy limit for neutron frozen showers

Definition at line 91 of file LArG4FastSimSvc.h.

◆ m_Pion_FlagShowerLib

bool LArG4FastSimSvc::m_Pion_FlagShowerLib
private

switch for pion frozen showers

Definition at line 94 of file LArG4FastSimSvc.h.

◆ m_Pion_MaxEneShowerLib

double LArG4FastSimSvc::m_Pion_MaxEneShowerLib
private

upper energy limit for pion frozen showers

Definition at line 96 of file LArG4FastSimSvc.h.

◆ m_Pion_MinEneShowerLib

double LArG4FastSimSvc::m_Pion_MinEneShowerLib
private

lower energy limit for pion frozen showers

Definition at line 95 of file LArG4FastSimSvc.h.

◆ m_starting_points_file

HepMC::IO_GenEvent* LArG4FastSimSvc::m_starting_points_file
private

Definition at line 105 of file LArG4FastSimSvc.h.


The documentation for this class was generated from the following files:
AthService::AthService
AthService()
LArG4FastSimSvc::m_containLow
bool m_containLow
switch for containment check at low eta
Definition: LArG4FastSimSvc.h:98
LArG4FastSimSvc::m_detector_tag_str
std::string m_detector_tag_str
Definition: LArG4FastSimSvc.h:107
LArSamples::HEC
@ HEC
Definition: CaloId.h:26
LArG4FastSimSvc::m_e_MinEneShowerLib
double m_e_MinEneShowerLib
lower energy limit for electron frozen showers
Definition: LArG4FastSimSvc.h:83
LArG4FastSimSvc::m_generated_starting_points_file
StringProperty m_generated_starting_points_file
switch for shower starting point record
Definition: LArG4FastSimSvc.h:102
find
std::string find(const std::string &s)
return a remapped string
Definition: hcg.cxx:135
LArG4FastSimSvc::m_detector_tag
int m_detector_tag
name for the detector tag for the ShowerLibSvc
Definition: LArG4FastSimSvc.h:106
LArG4FastSimSvc::m_Neut_MinEneShowerLib
double m_Neut_MinEneShowerLib
lower energy limit for neutron frozen showers
Definition: LArG4FastSimSvc.h:91
LArG4FastSimSvc::print
void print() const
dump object content
Definition: LArG4FastSimSvc.cxx:130
LArG4FastSimSvc::m_detmap
std::map< std::string, int > m_detmap
Definition: LArG4FastSimSvc.h:108
python.AthDsoLogger.out
out
Definition: AthDsoLogger.py:71
CaloCell_ID_FCS::FCAL1
@ FCAL1
Definition: FastCaloSim_CaloCell_ID.h:41
LArG4FastSimSvc::m_containHigh
bool m_containHigh
switch for containment check at high eta
Definition: LArG4FastSimSvc.h:99
LArG4FastSimSvc::m_starting_points_file
HepMC::IO_GenEvent * m_starting_points_file
Definition: LArG4FastSimSvc.h:105
particleType
Definition: particleType.h:29
LArG4FastSimSvc::m_containCrack
bool m_containCrack
switch for containment check in crack region
Definition: LArG4FastSimSvc.h:100
LArSamples::EMEC
@ EMEC
Definition: CaloId.h:25
ILArG4FastSimSvc
Definition: ILArG4FastSimSvc.h:15
LArG4FastSimSvc::m_Pion_MinEneShowerLib
double m_Pion_MinEneShowerLib
lower energy limit for pion frozen showers
Definition: LArG4FastSimSvc.h:95
LArSamples::EMB
@ EMB
Definition: CaloId.h:25
endmsg
#define endmsg
Definition: AnalysisConfig_Ntuple.cxx:63
LArG4FastSimSvc::m_g_MaxEneShowerLib
double m_g_MaxEneShowerLib
lower energy limit for photon frozen showers
Definition: LArG4FastSimSvc.h:87
LArG4FastSimSvc::m_Pion_MaxEneShowerLib
double m_Pion_MaxEneShowerLib
upper energy limit for pion frozen showers
Definition: LArG4FastSimSvc.h:96
LArG4FastSimSvc::m_generated_starting_points_ratio
float m_generated_starting_points_ratio
switch for shower starting point record
Definition: LArG4FastSimSvc.h:103
LArG4FastSimSvc::m_Neut_FlagShowerLib
bool m_Neut_FlagShowerLib
switch for neutron frozen showers
Definition: LArG4FastSimSvc.h:90
LArG4FastSimSvc::m_Pion_FlagShowerLib
bool m_Pion_FlagShowerLib
switch for pion frozen showers
Definition: LArG4FastSimSvc.h:94
LArG4FastSimSvc::m_generate_starting_points
bool m_generate_starting_points
Definition: LArG4FastSimSvc.h:104
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
LArG4FastSimSvc::m_g_FlagShowerLib
bool m_g_FlagShowerLib
switch for photon frozen showers
Definition: LArG4FastSimSvc.h:86
LArG4FastSimSvc::m_e_FlagShowerLib
bool m_e_FlagShowerLib
switch for electron frozen showers
Definition: LArG4FastSimSvc.h:82
LArG4FastSimSvc::m_g_MinEneShowerLib
double m_g_MinEneShowerLib
upper energy limit for photon frozen showers
Definition: LArG4FastSimSvc.h:88
AthCommonMsg< Service >::msg
MsgStream & msg() const
Definition: AthCommonMsg.h:24
declareProperty
#define declareProperty(n, p, h)
Definition: BaseFakeBkgTool.cxx:15
CaloCell_ID_FCS::FCAL2
@ FCAL2
Definition: FastCaloSim_CaloCell_ID.h:42
LArG4FastSimSvc::m_Neut_MaxEneShowerLib
double m_Neut_MaxEneShowerLib
upper energy limit for neutron frozen showers
Definition: LArG4FastSimSvc.h:92
GeV
#define GeV
Definition: CaloTransverseBalanceVecMon.cxx:30
LArG4FastSimSvc::m_e_MaxEneShowerLib
double m_e_MaxEneShowerLib
upper energy limit for electron frozen showers
Definition: LArG4FastSimSvc.h:84