28 #include "HepPDT/ParticleDataTable.hh" 31 #include "G4GeometryManager.hh" 32 #include "G4ScoringManager.hh" 33 #include "G4StateManager.hh" 34 #include "G4ApplicationState.hh" 35 #include "G4MTRunManagerKernel.hh" 36 #include "G4UImanager.hh" 40 #include "G4TransportationManager.hh" 41 #include "G4ParticleTable.hh" 42 #include "G4CascadeInterface.hh" 43 #include "G4EmParameters.hh" 44 #include "G4HadronicParameters.hh" 45 #include "G4NuclearLevelData.hh" 47 #include "G4GDMLParser.hh" 48 #include "G4SystemOfUnits.hh" 50 #include "G4LogicalVolume.hh" 51 #include "G4LogicalVolumeStore.hh" 52 #include "G4PhysicalVolumeStore.hh" 53 #include "G4Region.hh" 54 #include "G4RegionStore.hh" 67 : m_managerInitialized(
false),
68 m_runTerminated(
false),
69 m_PhysicsTablesDir(
p.getUntrackedParameter<
std::
string>(
"PhysicsTablesDirectory",
"")),
70 m_StorePhysicsTables(
p.getUntrackedParameter<
bool>(
"StorePhysicsTables",
false)),
71 m_RestorePhysicsTables(
p.getUntrackedParameter<
bool>(
"RestorePhysicsTables",
false)),
86 m_kernel =
new G4MTRunManagerKernel();
88 double th =
p.getParameter<
double>(
"ThresholdForGeometryExceptions") * CLHEP::GeV;
89 bool tr =
p.getParameter<
bool>(
"TraceExceptions");
91 m_check =
p.getUntrackedParameter<
bool>(
"CheckGeometry",
false);
100 edm::LogWarning(
"SimG4CoreApplication") <<
"RunManagerMT::initG4 was already done - exit";
109 <<
"RunManagerMT: start initialising of geometry DD4hep: " << geoFromDD4hep <<
"\n" 110 <<
" cutsPerRegion: " <<
cuts <<
" cutForProton: " << protonCut <<
"\n" 111 <<
" G4 verbosity: " << verb;
116 G4UImanager::GetUIpointer()->SetCoutDestination(
m_UIsession);
117 G4UImanager::GetUIpointer()->SetMasterUIManager(
true);
120 G4VPhysicalVolume*
world =
m_world.get()->GetWorldVolume();
124 <<
"RunManagerMT: Define cuts: " <<
cuts <<
" Geant4 run manager verbosity: " << verb;
126 const G4RegionStore* regStore = G4RegionStore::GetInstance();
127 const G4PhysicalVolumeStore*
pvs = G4PhysicalVolumeStore::GetInstance();
128 const G4LogicalVolumeStore* lvs = G4LogicalVolumeStore::GetInstance();
129 unsigned int numPV =
pvs->size();
130 unsigned int numLV = lvs->size();
131 unsigned int nn = regStore->size();
133 <<
"RunManagerMT: " << numPV <<
" physical volumes; " << numLV <<
" logical volumes; " <<
nn <<
" regions.";
143 edm::LogVerbatim(
"SimG4CoreApplication") <<
"RunManagerMT: create PhysicsList";
145 std::unique_ptr<PhysicsListMakerBase> physicsMaker(
147 if (physicsMaker.get() ==
nullptr) {
148 throw cms::Exception(
"Configuration") <<
"Unable to find the Physics list requested";
153 if (phys ==
nullptr) {
154 throw cms::Exception(
"Configuration") <<
"Physics list construction failed!";
159 G4HadronicParameters::Instance()->SetVerboseLevel(verb);
160 G4EmParameters::Instance()->SetVerbose(verb);
161 G4EmParameters::Instance()->SetWorkerVerbose(
std::max(verb - 1, 0));
165 if (monopoleMass > 0.0) {
180 edm::LogVerbatim(
"SimG4CoreApplication") <<
"RunManagerMT: start initialisation of PhysicsList for master";
186 edm::LogVerbatim(
"SimG4CoreApplication") <<
"RunManagerMT: PhysicsList and cuts are defined";
191 G4ScoringManager* scManager = G4ScoringManager::GetScoringManager();
192 scManager->SetVerboseLevel(1);
196 edm::LogVerbatim(
"SimG4CoreApplication") <<
"RunManagerMT: Requested UI commands: ";
199 G4UImanager::GetUIpointer()->ApplyCommand(
command);
206 edm::LogVerbatim(
"SimG4CoreApplication") <<
"RunManagerMT: G4State is Init";
209 G4EmParameters::Instance()->Dump();
213 if (
m_kernel->RunInitialization()) {
216 throw cms::Exception(
"LogicError") <<
"G4RunManagerKernel initialization failed!";
224 std::ostringstream
dir;
228 G4UImanager::GetUIpointer()->ApplyCommand(
cmd);
232 G4NuclearLevelData::GetInstance()->UploadNuclearLevelData(84);
238 <<
"RunManagerMT: Physics is initilized, now initialise user actions, verb=" << verb;
244 if (!writeFile.empty()) {
246 gdml.SetRegionExport(
true);
247 gdml.SetEnergyCutsExport(
true);
248 gdml.Write(writeFile,
m_world->GetWorldVolume(),
true);
256 if (
m_check || !regionFile.empty()) {
261 G4HadronicParameters::Instance()->SetVerboseLevel(
std::max(verb - 1, 0));
272 G4cout <<
"RunManagerMT: initG4 done " << timer << G4endl;
288 G4GeometryManager::GetInstance()->OpenGeometry();
307 edm::LogVerbatim(
"SimG4CoreApplication") <<
"RunManagerMT::terminateRun done";
311 const G4LogicalVolumeStore* lvs = G4LogicalVolumeStore::GetInstance();
312 int numLV = lvs->size();
316 for (
int i = 0;
i < numLV; ++
i) {
318 auto nd = lv->GetNoDaughters();
319 auto vox = lv->GetVoxelHeader();
320 auto sma = lv->GetSmartless();
321 auto reg = lv->GetRegion();
322 size_t nsl = (
nullptr == vox) ? 0 : vox->GetNoSlices();
326 edm::LogVerbatim(
"Voxels") <<
" " <<
i <<
". Nd=" << nd <<
" Nsl=" << nsl <<
" Smartless=" << sma <<
" " 327 << lv->GetName() <<
" Region: " <<
rname;
332 <<
"RunManagerMT: nLV=" << numLV <<
" NlvVox=" << nvox <<
" Nslices=" << nslice;
337 std::vector<std::string> rnames =
m_p.
getParameter<std::vector<std::string> >(
"VoxelRegions");
338 std::vector<double> rdensities =
m_p.
getParameter<std::vector<double> >(
"VoxelDensityPerRegion");
340 std::size_t
n = rnames.size();
341 if (
n == rdensities.size()) {
344 const G4LogicalVolumeStore* lvs = G4LogicalVolumeStore::GetInstance();
345 for (
auto& lv : *lvs) {
349 for (
int i = 0;
i <
nr; ++
i) {
350 if (nam == rnames[
i]) {
356 lv->SetSmartless(den);
359 <<
"RunManagerMT: default voxel density=" <<
density <<
"; number of regions with special density " <<
nr;
363 const G4RegionStore* regStore = G4RegionStore::GetInstance();
364 for (
auto&
r : *regStore) {
365 const G4String&
name =
r->GetName();
366 if (
name ==
"HGCalRegion" ||
name ==
"FastTimerRegionETL" ||
name ==
"FastTimerRegionBTL") {
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)
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
const G4String rname[NREG]
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