test
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 Member Functions | Private Attributes | Friends
RunManagerMT Class Reference

#include <RunManagerMT.h>

Public Member Functions

void abortRun (bool softAbort=false)
 
const SensitiveDetectorCatalogcatalog () const
 
sim::ChordFinderSetterchordFinderSetterForWorker () const
 
void Connect (RunAction *)
 
const std::vector< std::string > & G4Commands () const
 
void initG4 (const DDCompactView *pDD, const MagneticField *pMF, const HepPDT::ParticleDataTable *fPDGTable)
 
void initializeUserActions ()
 
PhysicsListphysicsListForWorker () const
 
 RunManagerMT (edm::ParameterSet const &p)
 
void stopG4 ()
 
const DDDWorldworld () const
 
 ~RunManagerMT ()
 

Private Member Functions

void DumpMagneticField (const G4Field *) const
 
void terminateRun ()
 

Private Attributes

SensitiveDetectorCatalog m_catalog
 
bool m_check
 
std::unique_ptr
< sim::ChordFinderSetter
m_chordFinderSetter
 
G4Run * m_currentRun
 
sim::FieldBuilderm_fieldBuilder
 
std::string m_FieldFile
 
std::vector< std::string > m_G4Commands
 
edm::ParameterSet m_g4overlap
 
G4MTRunManagerKernel * m_kernel
 
bool m_managerInitialized
 
edm::ParameterSet m_p
 
edm::ParameterSet m_pField
 
std::unique_ptr< PhysicsListm_physicsList
 
const std::string m_PhysicsTablesDir
 
edm::ParameterSet m_pPhysics
 
std::unique_ptr
< DDG4ProductionCuts
m_prodCuts
 
edm::ParameterSet m_pRunAction
 
bool m_pUseMagneticField
 
std::string m_RegionFile
 
SimActivityRegistry m_registry
 
bool m_RestorePhysicsTables
 
std::unique_ptr< SimRunInterfacem_runInterface
 
bool m_runTerminated
 
bool m_StorePhysicsTables
 
std::unique_ptr< CustomUIsessionm_UIsession
 
RunActionm_userRunAction
 
std::unique_ptr< DDDWorldm_world
 
std::string m_WriteFile
 

Friends

class RunManagerMTWorker
 

Detailed Description

Definition at line 60 of file RunManagerMT.h.

Constructor & Destructor Documentation

RunManagerMT::RunManagerMT ( edm::ParameterSet const &  p)
explicit

Definition at line 61 of file RunManagerMT.cc.

References edm::ParameterSet::getUntrackedParameter(), m_check, m_currentRun, m_FieldFile, m_kernel, m_RegionFile, m_UIsession, m_WriteFile, and AlCaHLTBitMon_QueryRunRegistry::string.

61  :
62  m_managerInitialized(false),
63  m_runTerminated(false),
64  m_pUseMagneticField(p.getParameter<bool>("UseMagneticField")),
65  m_PhysicsTablesDir(p.getParameter<std::string>("PhysicsTablesDirectory")),
66  m_StorePhysicsTables(p.getParameter<bool>("StorePhysicsTables")),
67  m_RestorePhysicsTables(p.getParameter<bool>("RestorePhysicsTables")),
68  m_pField(p.getParameter<edm::ParameterSet>("MagneticField")),
69  m_pPhysics(p.getParameter<edm::ParameterSet>("Physics")),
70  m_pRunAction(p.getParameter<edm::ParameterSet>("RunAction")),
71  m_g4overlap(p.getParameter<edm::ParameterSet>("G4CheckOverlap")),
72  m_G4Commands(p.getParameter<std::vector<std::string> >("G4Commands")),
73  m_p(p),m_fieldBuilder(nullptr)
74 {
75  m_currentRun = nullptr;
76  m_UIsession.reset(new CustomUIsession());
77  m_kernel = new G4MTRunManagerKernel();
78 
79  m_check = p.getUntrackedParameter<bool>("CheckOverlap",false);
80  m_WriteFile = p.getUntrackedParameter<std::string>("FileNameGDML","");
81  m_FieldFile = p.getUntrackedParameter<std::string>("FileNameField","");
82  m_RegionFile = p.getUntrackedParameter<std::string>("FileNameRegions","");
83 }
const std::string m_PhysicsTablesDir
Definition: RunManagerMT.h:122
bool m_managerInitialized
Definition: RunManagerMT.h:115
G4MTRunManagerKernel * m_kernel
Definition: RunManagerMT.h:111
edm::ParameterSet m_pRunAction
Definition: RunManagerMT.h:128
bool m_runTerminated
Definition: RunManagerMT.h:116
sim::FieldBuilder * m_fieldBuilder
Definition: RunManagerMT.h:138
std::vector< std::string > m_G4Commands
Definition: RunManagerMT.h:130
std::unique_ptr< CustomUIsession > m_UIsession
Definition: RunManagerMT.h:113
G4Run * m_currentRun
Definition: RunManagerMT.h:119
std::string m_RegionFile
Definition: RunManagerMT.h:143
std::string m_WriteFile
Definition: RunManagerMT.h:142
bool m_pUseMagneticField
Definition: RunManagerMT.h:117
edm::ParameterSet m_p
Definition: RunManagerMT.h:131
bool m_StorePhysicsTables
Definition: RunManagerMT.h:123
std::string m_FieldFile
Definition: RunManagerMT.h:141
edm::ParameterSet m_pField
Definition: RunManagerMT.h:126
edm::ParameterSet m_pPhysics
Definition: RunManagerMT.h:127
bool m_RestorePhysicsTables
Definition: RunManagerMT.h:124
edm::ParameterSet m_g4overlap
Definition: RunManagerMT.h:129
RunManagerMT::~RunManagerMT ( )

Definition at line 85 of file RunManagerMT.cc.

References m_runTerminated, and terminateRun().

86 {
87  if(!m_runTerminated) { terminateRun(); }
88  G4StateManager::GetStateManager()->SetNewState(G4State_Quit);
89  G4GeometryManager::GetInstance()->OpenGeometry();
90 }
void terminateRun()
bool m_runTerminated
Definition: RunManagerMT.h:116

Member Function Documentation

void RunManagerMT::abortRun ( bool  softAbort = false)
inline

Definition at line 78 of file RunManagerMT.h.

Referenced by ExceptionHandler::Notify().

78 {}
const SensitiveDetectorCatalog& RunManagerMT::catalog ( ) const
inline

Definition at line 84 of file RunManagerMT.h.

References m_catalog.

Referenced by RunManagerMTWorker::initializeThread().

84  {
85  return m_catalog;
86  }
SensitiveDetectorCatalog m_catalog
Definition: RunManagerMT.h:136
sim::ChordFinderSetter* RunManagerMT::chordFinderSetterForWorker ( ) const
inline

Definition at line 103 of file RunManagerMT.h.

References m_chordFinderSetter.

Referenced by RunManagerMTWorker::initializeThread().

103  {
104  return m_chordFinderSetter.get();
105  }
std::unique_ptr< sim::ChordFinderSetter > m_chordFinderSetter
Definition: RunManagerMT.h:139
void RunManagerMT::Connect ( RunAction runAction)

Definition at line 232 of file RunManagerMT.cc.

References SimActivityRegistry::beginOfRunSignal_, sim_act::Signaler< T >::connect(), SimActivityRegistry::endOfRunSignal_, RunAction::m_beginOfRunSignal, RunAction::m_endOfRunSignal, and m_registry.

Referenced by SimRunInterface::Connect(), and initializeUserActions().

233 {
236 }
SimActivityRegistry::EndOfRunSignal m_endOfRunSignal
Definition: RunAction.h:26
BeginOfRunSignal beginOfRunSignal_
EndOfRunSignal endOfRunSignal_
void connect(Observer< const T * > *iObs)
does not take ownership of memory
Definition: Signaler.h:59
SimActivityRegistry::BeginOfRunSignal m_beginOfRunSignal
Definition: RunAction.h:25
SimActivityRegistry m_registry
Definition: RunManagerMT.h:135
void RunManagerMT::DumpMagneticField ( const G4Field *  field) const
private

Definition at line 256 of file RunManagerMT.cc.

References funct::cos(), runTauDisplay::dr, groupFilesInBlocks::fout, i, j, m_FieldFile, GenerateHcalLaserBadRunList::out, phi, point, alignCSCRings::r, funct::sin(), z, and SiStripMonitorClusterAlca_cfi::zmax.

Referenced by initG4().

257 {
258  std::ofstream fout(m_FieldFile.c_str(), std::ios::out);
259  if(fout.fail()){
260  edm::LogWarning("SimG4CoreApplication")
261  << " RunManager WARNING : "
262  << "error opening file <" << m_FieldFile << "> for magnetic field";
263  } else {
264  double rmax = 9000*mm;
265  double zmax = 16000*mm;
266 
267  double dr = 5*cm;
268  double dz = 20*cm;
269 
270  int nr = (int)(rmax/dr);
271  int nz = 2*(int)(zmax/dz);
272 
273  double r = 0.0;
274  double z0 = -zmax;
275  double z;
276 
277  double phi = 0.0;
278  double cosf = cos(phi);
279  double sinf = sin(phi);
280 
281  double point[4] = {0.0,0.0,0.0,0.0};
282  double bfield[3] = {0.0,0.0,0.0};
283 
284  fout << std::setprecision(6);
285  for(int i=0; i<=nr; ++i) {
286  z = z0;
287  for(int j=0; j<=nz; ++j) {
288  point[0] = r*cosf;
289  point[1] = r*sinf;
290  point[2] = z;
291  field->GetFieldValue(point, bfield);
292  fout << "R(mm)= " << r/mm << " phi(deg)= " << phi/degree
293  << " Z(mm)= " << z/mm << " Bz(tesla)= " << bfield[2]/tesla
294  << " Br(tesla)= " << (bfield[0]*cosf + bfield[1]*sinf)/tesla
295  << " Bphi(tesla)= " << (bfield[0]*sinf - bfield[1]*cosf)/tesla
296  << G4endl;
297  z += dz;
298  }
299  r += dr;
300  }
301 
302  fout.close();
303  }
304 }
int i
Definition: DBlmapReader.cc:9
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
int j
Definition: DBlmapReader.cc:9
std::string m_FieldFile
Definition: RunManagerMT.h:141
*vegas h *****************************************************used in the default bin number in original ***version of VEGAS is ***a higher bin number might help to derive a more precise ***grade subtle point
Definition: invegas.h:5
const std::vector<std::string>& RunManagerMT::G4Commands ( ) const
inline

Definition at line 88 of file RunManagerMT.h.

References m_G4Commands.

Referenced by RunManagerMTWorker::initializeThread().

88  {
89  return m_G4Commands;
90  }
std::vector< std::string > m_G4Commands
Definition: RunManagerMT.h:130
void RunManagerMT::initG4 ( const DDCompactView pDD,
const MagneticField pMF,
const HepPDT::ParticleDataTable fPDGTable 
)

Definition at line 92 of file RunManagerMT.cc.

References RunAction::BeginOfRunAction(), sim::FieldBuilder::build(), trackerTree::check(), cmsHarvester::cmd, edm::errors::Configuration, beamerCreator::create(), SimActivityRegistry::dddWorldSignal_, dir, DumpMagneticField(), Exception, g, reco::get(), edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), recoMuon::in, initializeUserActions(), edm::errors::LogicError, m_catalog, m_check, m_chordFinderSetter, m_currentRun, m_fieldBuilder, m_FieldFile, m_G4Commands, m_g4overlap, m_kernel, m_managerInitialized, m_p, m_pField, m_physicsList, m_PhysicsTablesDir, m_pPhysics, m_prodCuts, m_pUseMagneticField, m_RegionFile, m_registry, m_RestorePhysicsTables, m_StorePhysicsTables, m_userRunAction, m_world, m_WriteFile, map_, bookConverter::max, G4RegionReporter::ReportRegions(), and AlCaHLTBitMon_QueryRunRegistry::string.

94 {
95  if (m_managerInitialized) return;
96 
97  edm::LogInfo("SimG4CoreApplication")
98  << "RunManagerMT: start initialisation of geometry";
99 
100  // DDDWorld: get the DDCV from the ES and use it to build the World
102  m_world.reset(new DDDWorld(pDD, map_, m_catalog, false));
104 
105  // setup the magnetic field
106  edm::LogInfo("SimG4CoreApplication")
107  << "RunManagerMT: start initialisation of magnetic field";
108 
110  {
111  const GlobalPoint g(0.,0.,0.);
112 
115  G4TransportationManager * tM =
116  G4TransportationManager::GetTransportationManager();
117  m_fieldBuilder->build( tM->GetFieldManager(),
118  tM->GetPropagatorInField());
119  if("" != m_FieldFile) {
120  DumpMagneticField(tM->GetFieldManager()->GetDetectorField());
121  }
122  }
123 
124  // Create physics list
125  edm::LogInfo("SimG4CoreApplication")
126  << "RunManagerMT: create PhysicsList";
127 
128  std::unique_ptr<PhysicsListMakerBase>
129  physicsMaker(PhysicsListFactory::get()->create(
130  m_pPhysics.getParameter<std::string> ("type")));
131  if (physicsMaker.get()==nullptr) {
133  << "Unable to find the Physics list requested";
134  }
135  m_physicsList =
136  physicsMaker->make(map_,fPDGTable,m_chordFinderSetter.get(),m_pPhysics,m_registry);
137 
138  PhysicsList* phys = m_physicsList.get();
139  if (phys==nullptr) {
141  "Physics list construction failed!");
142  }
143 
144  // adding GFlash, Russian Roulette for eletrons and gamma,
145  // step limiters on top of any Physics Lists
146  phys->RegisterPhysics(new ParametrisedEMPhysics("EMoptions",m_pPhysics));
147 
148  m_physicsList->ResetStoredInAscii();
150  m_physicsList->SetPhysicsTableRetrieved(m_PhysicsTablesDir);
151  }
152  edm::LogInfo("SimG4CoreApplication")
153  << "RunManagerMT: start initialisation of PhysicsList for master";
154 
155  int verb = std::max(m_pPhysics.getUntrackedParameter<int>("Verbosity",0),
156  m_p.getParameter<int>("SteppingVerbosity"));
157 
158  m_physicsList->SetDefaultCutValue(m_pPhysics.getParameter<double>("DefaultCutValue")*CLHEP::cm);
159  m_physicsList->SetCutsWithDefault();
160  m_prodCuts.reset(new DDG4ProductionCuts(map_, verb, m_pPhysics));
161  m_prodCuts->update();
162 
163  m_kernel->SetPhysics(phys);
164  m_kernel->InitializePhysics();
165  m_kernel->SetUpDecayChannels();
166 
167  // The following line was with the following comment in
168  // G4MTRunManager::InitializePhysics() in 10.00.p01; in practice
169  // needed to initialize certain singletons during the master thread
170  // initialization in order to avoid races later...
171  //
172  //BERTINI, this is needed to create pseudo-particles, to be removed
173  G4CascadeInterface::Initialize();
174 
175  if (m_kernel->RunInitialization()) { m_managerInitialized = true; }
176  else {
178  "G4RunManagerKernel initialization failed!");
179  }
180 
181  if (m_StorePhysicsTables) {
182  std::ostringstream dir;
183  dir << m_PhysicsTablesDir << '\0';
184  std::string cmd = std::string("/control/shell mkdir -p ")+m_PhysicsTablesDir;
185  if (!std::ifstream(dir.str().c_str(), std::ios::in))
186  G4UImanager::GetUIpointer()->ApplyCommand(cmd);
187  m_physicsList->StorePhysicsTable(m_PhysicsTablesDir);
188  }
189 
191 
192  if(0 < m_G4Commands.size()) {
193  G4cout << "RunManagerMT: Requested UI commands: " << G4endl;
194  for (unsigned it=0; it<m_G4Commands.size(); ++it) {
195  G4cout << " " << m_G4Commands[it] << G4endl;
196  G4UImanager::GetUIpointer()->ApplyCommand(m_G4Commands[it]);
197  }
198  }
199 
200  if(verb > 1) { m_physicsList->DumpCutValuesTable(); }
201 
202  // geometry dump
203  if("" != m_WriteFile) {
204  G4GDMLParser gdml(new G4GDMLReadStructure(), new CMSGDMLWriteStructure());
205  gdml.Write(m_WriteFile, m_world->GetWorldVolume(), true);
206  }
207 
208  // G4Region dump
209  if("" != m_RegionFile) {
210  G4RegionReporter rrep;
212  }
213 
214  // Intersection check
216 
217  // If the Geant4 particle table is needed, decomment the lines below
218  //
219  //G4ParticleTable::GetParticleTable()->DumpTable("ALL");
220  //
221  G4StateManager::GetStateManager()->SetNewState(G4State_GeomClosed);
222  m_currentRun = new G4Run();
224 }
const std::string m_PhysicsTablesDir
Definition: RunManagerMT.h:122
bool m_managerInitialized
Definition: RunManagerMT.h:115
T getParameter(std::string const &) const
Map map_
T getUntrackedParameter(std::string const &, T const &) const
std::unique_ptr< DDG4ProductionCuts > m_prodCuts
Definition: RunManagerMT.h:134
G4MTRunManagerKernel * m_kernel
Definition: RunManagerMT.h:111
SensitiveDetectorCatalog m_catalog
Definition: RunManagerMT.h:136
sim::FieldBuilder * m_fieldBuilder
Definition: RunManagerMT.h:138
std::vector< std::string > m_G4Commands
Definition: RunManagerMT.h:130
G4Run * m_currentRun
Definition: RunManagerMT.h:119
std::string m_RegionFile
Definition: RunManagerMT.h:143
void initializeUserActions()
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e g
Definition: Activities.doc:4
std::string m_WriteFile
Definition: RunManagerMT.h:142
void build(G4FieldManager *fM=nullptr, G4PropagatorInField *fP=nullptr, ChordFinderSetter *setter=nullptr)
Definition: FieldBuilder.cc:41
bool m_pUseMagneticField
Definition: RunManagerMT.h:117
edm::ParameterSet m_p
Definition: RunManagerMT.h:131
void DumpMagneticField(const G4Field *) const
bool m_StorePhysicsTables
Definition: RunManagerMT.h:123
std::unique_ptr< PhysicsList > m_physicsList
Definition: RunManagerMT.h:114
std::string m_FieldFile
Definition: RunManagerMT.h:141
edm::ParameterSet m_pField
Definition: RunManagerMT.h:126
std::unique_ptr< DDDWorld > m_world
Definition: RunManagerMT.h:133
edm::ParameterSet m_pPhysics
Definition: RunManagerMT.h:127
void BeginOfRunAction(const G4Run *aRun)
Definition: RunAction.cc:22
DDDWorldSignal dddWorldSignal_
bool m_RestorePhysicsTables
Definition: RunManagerMT.h:124
std::unique_ptr< sim::ChordFinderSetter > m_chordFinderSetter
Definition: RunManagerMT.h:139
void ReportRegions(const std::string &ss)
string cmd
self.logger.debug(&quot;Path is now `%s&#39;&quot; % \ path)
edm::ParameterSet m_g4overlap
Definition: RunManagerMT.h:129
dbl *** dir
Definition: mlp_gen.cc:35
RunAction * m_userRunAction
Definition: RunManagerMT.h:118
T get(const Candidate &c)
Definition: component.h:55
SimActivityRegistry m_registry
Definition: RunManagerMT.h:135
void RunManagerMT::initializeUserActions ( )

Definition at line 226 of file RunManagerMT.cc.

References Connect(), m_pRunAction, m_runInterface, and m_userRunAction.

Referenced by initG4().

226  {
227  m_runInterface.reset(new SimRunInterface(this, true));
230 }
void Connect(RunAction *)
edm::ParameterSet m_pRunAction
Definition: RunManagerMT.h:128
std::unique_ptr< SimRunInterface > m_runInterface
Definition: RunManagerMT.h:120
RunAction * m_userRunAction
Definition: RunManagerMT.h:118
PhysicsList* RunManagerMT::physicsListForWorker ( ) const
inline

Definition at line 95 of file RunManagerMT.h.

References m_physicsList.

Referenced by RunManagerMTWorker::initializeThread().

95  {
96  return m_physicsList.get();
97  }
std::unique_ptr< PhysicsList > m_physicsList
Definition: RunManagerMT.h:114
void RunManagerMT::stopG4 ( )

Definition at line 238 of file RunManagerMT.cc.

References m_runTerminated, and terminateRun().

239 {
240  G4StateManager::GetStateManager()->SetNewState(G4State_Quit);
241  if(!m_runTerminated) { terminateRun(); }
242 }
void terminateRun()
bool m_runTerminated
Definition: RunManagerMT.h:116
void RunManagerMT::terminateRun ( )
private

Definition at line 244 of file RunManagerMT.cc.

References RunAction::EndOfRunAction(), m_currentRun, m_kernel, m_runTerminated, and m_userRunAction.

Referenced by stopG4(), and ~RunManagerMT().

244  {
245  if(m_userRunAction) {
247  delete m_userRunAction;
248  m_userRunAction = nullptr;
249  }
250  if(m_kernel && !m_runTerminated) {
251  m_kernel->RunTermination();
252  }
253  m_runTerminated = true;
254 }
G4MTRunManagerKernel * m_kernel
Definition: RunManagerMT.h:111
bool m_runTerminated
Definition: RunManagerMT.h:116
G4Run * m_currentRun
Definition: RunManagerMT.h:119
void EndOfRunAction(const G4Run *aRun)
Definition: RunAction.cc:40
RunAction * m_userRunAction
Definition: RunManagerMT.h:118
const DDDWorld& RunManagerMT::world ( ) const
inline

Definition at line 80 of file RunManagerMT.h.

References m_world.

Referenced by RunManagerMTWorker::initializeThread().

80  {
81  return *m_world;
82  }
std::unique_ptr< DDDWorld > m_world
Definition: RunManagerMT.h:133

Friends And Related Function Documentation

friend class RunManagerMTWorker
friend

Definition at line 62 of file RunManagerMT.h.

Member Data Documentation

SensitiveDetectorCatalog RunManagerMT::m_catalog
private

Definition at line 136 of file RunManagerMT.h.

Referenced by catalog(), and initG4().

bool RunManagerMT::m_check
private

Definition at line 125 of file RunManagerMT.h.

Referenced by initG4(), and RunManagerMT().

std::unique_ptr<sim::ChordFinderSetter> RunManagerMT::m_chordFinderSetter
private

Definition at line 139 of file RunManagerMT.h.

Referenced by chordFinderSetterForWorker(), and initG4().

G4Run* RunManagerMT::m_currentRun
private

Definition at line 119 of file RunManagerMT.h.

Referenced by initG4(), RunManagerMT(), and terminateRun().

sim::FieldBuilder* RunManagerMT::m_fieldBuilder
private

Definition at line 138 of file RunManagerMT.h.

Referenced by initG4().

std::string RunManagerMT::m_FieldFile
private

Definition at line 141 of file RunManagerMT.h.

Referenced by DumpMagneticField(), initG4(), and RunManagerMT().

std::vector<std::string> RunManagerMT::m_G4Commands
private

Definition at line 130 of file RunManagerMT.h.

Referenced by G4Commands(), and initG4().

edm::ParameterSet RunManagerMT::m_g4overlap
private

Definition at line 129 of file RunManagerMT.h.

Referenced by initG4().

G4MTRunManagerKernel* RunManagerMT::m_kernel
private

Definition at line 111 of file RunManagerMT.h.

Referenced by initG4(), RunManagerMT(), and terminateRun().

bool RunManagerMT::m_managerInitialized
private

Definition at line 115 of file RunManagerMT.h.

Referenced by initG4().

edm::ParameterSet RunManagerMT::m_p
private

Definition at line 131 of file RunManagerMT.h.

Referenced by initG4().

edm::ParameterSet RunManagerMT::m_pField
private

Definition at line 126 of file RunManagerMT.h.

Referenced by initG4().

std::unique_ptr<PhysicsList> RunManagerMT::m_physicsList
private

Definition at line 114 of file RunManagerMT.h.

Referenced by initG4(), and physicsListForWorker().

const std::string RunManagerMT::m_PhysicsTablesDir
private

Definition at line 122 of file RunManagerMT.h.

Referenced by initG4().

edm::ParameterSet RunManagerMT::m_pPhysics
private

Definition at line 127 of file RunManagerMT.h.

Referenced by initG4().

std::unique_ptr<DDG4ProductionCuts> RunManagerMT::m_prodCuts
private

Definition at line 134 of file RunManagerMT.h.

Referenced by initG4().

edm::ParameterSet RunManagerMT::m_pRunAction
private

Definition at line 128 of file RunManagerMT.h.

Referenced by initializeUserActions().

bool RunManagerMT::m_pUseMagneticField
private

Definition at line 117 of file RunManagerMT.h.

Referenced by initG4().

std::string RunManagerMT::m_RegionFile
private

Definition at line 143 of file RunManagerMT.h.

Referenced by initG4(), and RunManagerMT().

SimActivityRegistry RunManagerMT::m_registry
private

Definition at line 135 of file RunManagerMT.h.

Referenced by Connect(), and initG4().

bool RunManagerMT::m_RestorePhysicsTables
private

Definition at line 124 of file RunManagerMT.h.

Referenced by initG4().

std::unique_ptr<SimRunInterface> RunManagerMT::m_runInterface
private

Definition at line 120 of file RunManagerMT.h.

Referenced by initializeUserActions().

bool RunManagerMT::m_runTerminated
private

Definition at line 116 of file RunManagerMT.h.

Referenced by stopG4(), terminateRun(), and ~RunManagerMT().

bool RunManagerMT::m_StorePhysicsTables
private

Definition at line 123 of file RunManagerMT.h.

Referenced by initG4().

std::unique_ptr<CustomUIsession> RunManagerMT::m_UIsession
private

Definition at line 113 of file RunManagerMT.h.

Referenced by RunManagerMT().

RunAction* RunManagerMT::m_userRunAction
private

Definition at line 118 of file RunManagerMT.h.

Referenced by initG4(), initializeUserActions(), and terminateRun().

std::unique_ptr<DDDWorld> RunManagerMT::m_world
private

Definition at line 133 of file RunManagerMT.h.

Referenced by initG4(), and world().

std::string RunManagerMT::m_WriteFile
private

Definition at line 142 of file RunManagerMT.h.

Referenced by initG4(), and RunManagerMT().