30 #include "HepPDT/ParticleDataTable.hh" 33 #include "G4GeometryManager.hh" 34 #include "G4ScoringManager.hh" 35 #include "G4StateManager.hh" 36 #include "G4ApplicationState.hh" 37 #include "G4MTRunManagerKernel.hh" 38 #include "G4UImanager.hh" 42 #include "G4TransportationManager.hh" 43 #include "G4ParticleTable.hh" 44 #include "G4CascadeInterface.hh" 45 #include "G4EmParameters.hh" 46 #include "G4HadronicParameters.hh" 47 #include "G4NuclearLevelData.hh" 48 #include "G4SystemOfUnits.hh" 49 #include "G4LogicalVolume.hh" 50 #include "G4LogicalVolumeStore.hh" 51 #include "G4PhysicalVolumeStore.hh" 52 #include "G4Region.hh" 53 #include "G4RegionStore.hh" 61 : m_PhysicsTablesDir(
p.getUntrackedParameter<
std::
string>(
"PhysicsTablesDirectory",
"")),
62 m_StorePhysicsTables(
p.getUntrackedParameter<
bool>(
"StorePhysicsTables",
false)),
63 m_RestorePhysicsTables(
p.getUntrackedParameter<
bool>(
"RestorePhysicsTables",
false)),
64 m_check(
p.getUntrackedParameter<
bool>(
"CheckGeometry")),
65 m_geoFromDD4hep(
p.getParameter<
bool>(
"g4GeometryDD4hepSource")),
66 m_score(
p.getParameter<
bool>(
"UseCommandBaseScorer")),
67 m_stepverb(
p.getUntrackedParameter<
int>(
"SteppingVerbosity", 0)),
68 m_regionFile(
p.getUntrackedParameter<
std::
string>(
"FileNameRegions",
"")),
77 m_kernel =
new G4MTRunManagerKernel();
79 double th =
p.getParameter<
double>(
"ThresholdForGeometryExceptions") * CLHEP::GeV;
80 bool tr =
p.getParameter<
bool>(
"TraceExceptions");
86 G4UImanager::GetUIpointer()->SetCoutDestination(
m_UIsession);
87 G4UImanager::GetUIpointer()->SetMasterUIManager(
true);
96 edm::LogWarning(
"SimG4CoreApplication") <<
"RunManagerMT::initG4 was already done - exit";
103 <<
"RunManagerMT: start initialising of geometry DD4hep: " <<
m_geoFromDD4hep <<
"\n" 104 <<
" cutsPerRegion: " <<
cuts <<
" cutForProton: " << protonCut <<
"\n" 105 <<
" G4 verbosity: " << verb;
111 G4VPhysicalVolume*
world =
m_world.get()->GetWorldVolume();
115 <<
"RunManagerMT: Define cuts: " <<
cuts <<
" Geant4 run manager verbosity: " << verb;
117 const G4RegionStore* regStore = G4RegionStore::GetInstance();
118 const G4PhysicalVolumeStore*
pvs = G4PhysicalVolumeStore::GetInstance();
119 const G4LogicalVolumeStore* lvs = G4LogicalVolumeStore::GetInstance();
120 unsigned int numPV =
pvs->size();
121 unsigned int numLV = lvs->size();
122 unsigned int nn = regStore->size();
124 <<
"RunManagerMT: " << numPV <<
" physical volumes; " << numLV <<
" logical volumes; " <<
nn <<
" regions.";
134 edm::LogVerbatim(
"SimG4CoreApplication") <<
"RunManagerMT: create PhysicsList";
136 std::unique_ptr<PhysicsListMakerBase> physicsMaker(
138 if (physicsMaker.get() ==
nullptr) {
139 throw cms::Exception(
"Configuration") <<
"Unable to find the Physics list requested";
144 if (phys ==
nullptr) {
145 throw cms::Exception(
"Configuration") <<
"Physics list construction failed!";
150 G4HadronicParameters::Instance()->SetVerboseLevel(verb);
151 G4EmParameters::Instance()->SetVerbose(verb);
152 G4EmParameters::Instance()->SetWorkerVerbose(
std::max(verb - 1, 0));
156 if (monopoleMass > 0.0) {
171 edm::LogVerbatim(
"SimG4CoreApplication") <<
"RunManagerMT: start initialisation of PhysicsList for master";
177 edm::LogVerbatim(
"SimG4CoreApplication") <<
"RunManagerMT: PhysicsList and cuts are defined";
181 G4ScoringManager* scManager = G4ScoringManager::GetScoringManager();
182 scManager->SetVerboseLevel(1);
186 edm::LogVerbatim(
"SimG4CoreApplication") <<
"RunManagerMT: Requested UI commands: ";
189 G4UImanager::GetUIpointer()->ApplyCommand(
command);
196 edm::LogVerbatim(
"SimG4CoreApplication") <<
"RunManagerMT: G4State is Init";
199 G4EmParameters::Instance()->Dump();
203 if (
m_kernel->RunInitialization()) {
206 throw cms::Exception(
"LogicError") <<
"G4RunManagerKernel initialization failed!";
214 std::ostringstream
dir;
218 G4UImanager::GetUIpointer()->ApplyCommand(
cmd);
222 G4NuclearLevelData::GetInstance()->UploadNuclearLevelData(84);
228 <<
"RunManagerMT: Physics is initilized, now initialise user actions, verb=" << verb;
241 G4HadronicParameters::Instance()->SetVerboseLevel(
std::max(verb - 1, 0));
252 G4cout <<
"RunManagerMT: initG4 done " << timer << G4endl;
268 G4GeometryManager::GetInstance()->OpenGeometry();
287 edm::LogVerbatim(
"SimG4CoreApplication") <<
"RunManagerMT::terminateRun done";
291 const G4LogicalVolumeStore* lvs = G4LogicalVolumeStore::GetInstance();
292 int numLV = lvs->size();
296 for (
int i = 0;
i < numLV; ++
i) {
298 auto nd = lv->GetNoDaughters();
299 auto vox = lv->GetVoxelHeader();
300 auto sma = lv->GetSmartless();
301 auto reg = lv->GetRegion();
302 size_t nsl = (
nullptr == vox) ? 0 : vox->GetNoSlices();
306 edm::LogVerbatim(
"Voxels") <<
" " <<
i <<
". Nd=" << nd <<
" Nsl=" << nsl <<
" Smartless=" << sma <<
" " 307 << lv->GetName() <<
" Region: " <<
rname;
312 <<
"RunManagerMT: nLV=" << numLV <<
" NlvVox=" << nvox <<
" Nslices=" << nslice;
317 std::vector<std::string> rnames =
m_Init.
getParameter<std::vector<std::string> >(
"VoxelRegions");
318 std::vector<double> rdensities =
m_Init.
getParameter<std::vector<double> >(
"VoxelDensityPerRegion");
320 std::size_t
n = rnames.size();
321 if (
n == rdensities.size()) {
324 const G4LogicalVolumeStore* lvs = G4LogicalVolumeStore::GetInstance();
325 for (
auto const& lv : *lvs) {
329 for (
int i = 0;
i <
nr; ++
i) {
330 if (nam == rnames[
i]) {
336 lv->SetSmartless(den);
339 <<
"RunManagerMT: default voxel density=" <<
density <<
"; number of regions with special density " <<
nr;
343 const G4RegionStore* regStore = G4RegionStore::GetInstance();
344 for (
auto const&
r : *regStore) {
345 const G4String&
name =
r->GetName();
346 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]
edm::ParameterSet m_CheckOverlap
std::unique_ptr< SimRunInterface > m_runInterface
Log< level::Warning, false > LogWarning
RunAction * m_userRunAction
CustomUIsession * m_UIsession
void EndOfRunAction(const G4Run *aRun) override
SimActivityRegistry m_registry