29 #include "HepPDT/ParticleDataTable.hh" 32 #include "G4GeometryManager.hh" 33 #include "G4StateManager.hh" 34 #include "G4ApplicationState.hh" 35 #include "G4MTRunManagerKernel.hh" 36 #include "G4UImanager.hh" 38 #include "G4EventManager.hh" 41 #include "G4TransportationManager.hh" 42 #include "G4ParticleTable.hh" 43 #include "G4CascadeInterface.hh" 44 #include "G4EmParameters.hh" 45 #include "G4HadronicParameters.hh" 46 #include "G4NuclearLevelData.hh" 48 #include "G4GDMLParser.hh" 49 #include "G4SystemOfUnits.hh" 51 #include "G4LogicalVolume.hh" 52 #include "G4LogicalVolumeStore.hh" 53 #include "G4PhysicalVolumeStore.hh" 54 #include "G4Region.hh" 55 #include "G4RegionStore.hh" 68 : m_managerInitialized(
false),
69 m_runTerminated(
false),
70 m_PhysicsTablesDir(
p.getUntrackedParameter<
std::
string>(
"PhysicsTablesDirectory",
"")),
71 m_StorePhysicsTables(
p.getUntrackedParameter<
bool>(
"StorePhysicsTables",
false)),
72 m_RestorePhysicsTables(
p.getUntrackedParameter<
bool>(
"RestorePhysicsTables",
false)),
87 m_kernel =
new G4MTRunManagerKernel();
89 double th =
p.getParameter<
double>(
"ThresholdForGeometryExceptions") * CLHEP::GeV;
90 bool tr =
p.getParameter<
bool>(
"TraceExceptions");
92 m_check =
p.getUntrackedParameter<
bool>(
"CheckGeometry",
false);
101 edm::LogWarning(
"SimG4CoreApplication") <<
"RunManagerMT::initG4 was already done - exit";
110 <<
"RunManagerMT: start initialising of geometry DD4hep: " << geoFromDD4hep <<
"\n" 111 <<
" cutsPerRegion: " <<
cuts <<
" cutForProton: " << protonCut <<
"\n" 112 <<
" G4 verbosity: " << verb;
117 G4UImanager::GetUIpointer()->SetCoutDestination(
m_UIsession);
118 G4UImanager::GetUIpointer()->SetMasterUIManager(
true);
121 G4VPhysicalVolume*
world =
m_world.get()->GetWorldVolume();
125 <<
"RunManagerMT: Define cuts: " <<
cuts <<
" Geant4 run manager verbosity: " << verb;
127 const G4RegionStore* regStore = G4RegionStore::GetInstance();
128 const G4PhysicalVolumeStore*
pvs = G4PhysicalVolumeStore::GetInstance();
129 const G4LogicalVolumeStore* lvs = G4LogicalVolumeStore::GetInstance();
130 unsigned int numPV =
pvs->size();
131 unsigned int numLV = lvs->size();
132 unsigned int nn = regStore->size();
134 <<
"RunManagerMT: " << numPV <<
" physical volumes; " << numLV <<
" logical volumes; " <<
nn <<
" regions.";
144 edm::LogVerbatim(
"SimG4CoreApplication") <<
"RunManagerMT: create PhysicsList";
146 std::unique_ptr<PhysicsListMakerBase> physicsMaker(
148 if (physicsMaker.get() ==
nullptr) {
149 throw cms::Exception(
"Configuration") <<
"Unable to find the Physics list requested";
154 if (phys ==
nullptr) {
155 throw cms::Exception(
"Configuration") <<
"Physics list construction failed!";
160 G4HadronicParameters::Instance()->SetVerboseLevel(verb);
161 G4EmParameters::Instance()->SetVerbose(verb);
162 G4EmParameters::Instance()->SetWorkerVerbose(
std::max(verb - 1, 0));
166 if (monopoleMass > 0.0) {
181 edm::LogVerbatim(
"SimG4CoreApplication") <<
"RunManagerMT: start initialisation of PhysicsList for master";
187 edm::LogVerbatim(
"SimG4CoreApplication") <<
"RunManagerMT: PhysicsList and cuts are defined";
191 edm::LogVerbatim(
"SimG4CoreApplication") <<
"RunManagerMT: Requested UI commands: ";
194 G4UImanager::GetUIpointer()->ApplyCommand(
command);
199 edm::LogVerbatim(
"SimG4CoreApplication") <<
"RunManagerMT: G4State is Init";
203 if (
m_kernel->RunInitialization()) {
206 throw cms::Exception(
"LogicError") <<
"G4RunManagerKernel initialization failed!";
210 std::ostringstream
dir;
214 G4UImanager::GetUIpointer()->ApplyCommand(
cmd);
218 G4NuclearLevelData::GetInstance()->UploadNuclearLevelData(84);
224 <<
"RunManagerMT: Physics is initilized, now initialise user actions, verb=" << verb;
230 if (!writeFile.empty()) {
232 gdml.SetRegionExport(
true);
233 gdml.SetEnergyCutsExport(
true);
234 gdml.Write(writeFile,
m_world->GetWorldVolume(),
true);
241 if (
m_check || !regionFile.empty()) {
246 G4HadronicParameters::Instance()->SetVerboseLevel(
std::max(verb - 1, 0));
257 G4cout <<
"RunManagerMT: initG4 done " << timer << G4endl;
272 G4GeometryManager::GetInstance()->OpenGeometry();
289 edm::LogVerbatim(
"SimG4CoreApplication") <<
"RunManagerMT:: terminateRun done";
void Connect(RunAction *)
void connect(Observer< const T *> *iObs)
does not take ownership of memory
const std::string m_PhysicsTablesDir
Log< level::Info, true > LogVerbatim
bool m_managerInitialized
T getParameter(std::string const &) const
void BeginOfRunAction(const G4Run *aRun) override
G4MTRunManagerKernel * m_kernel
SensitiveDetectorCatalog m_catalog
edm::ParameterSet m_pRunAction
def create(alignables, pedeDump, additionalData, outputFile, config)
HepPDT::ParticleDataTable ParticleDataTable
RunManagerMT(edm::ParameterSet const &)
SimActivityRegistry::EndOfRunSignal m_endOfRunSignal
G4StateManager * m_stateManager
BeginOfRunSignal beginOfRunSignal_
std::vector< std::string > m_G4Commands
void initializeUserActions()
Compact representation of the geometrical detector hierarchy.
T getUntrackedParameter(std::string const &, T const &) const
RunAction
list of unwanted particles (gluons and quarks)
TkSoA const *__restrict__ CAHitNtupletGeneratorKernelsGPU::QualityCuts cuts
EndOfRunSignal endOfRunSignal_
bool m_StorePhysicsTables
const DDDWorld & world() const
std::unique_ptr< PhysicsList > m_physicsList
std::unique_ptr< DDDWorld > m_world
edm::ParameterSet m_pPhysics
DDDWorldSignal dddWorldSignal_
bool m_RestorePhysicsTables
void initG4(const DDCompactView *, const cms::DDCompactView *, const HepPDT::ParticleDataTable *)
SimActivityRegistry::BeginOfRunSignal m_beginOfRunSignal
std::unique_ptr< SimRunInterface > m_runInterface
edm::ParameterSet m_g4overlap
Log< level::Warning, false > LogWarning
RunAction * m_userRunAction
CustomUIsession * m_UIsession
void EndOfRunAction(const G4Run *aRun) override
SimActivityRegistry m_registry