12#include "G4DarkBreM/G4DarkBremsstrahlung.h"
14#include "SimCore/BiasOperators/XsecBiasingOperator.h"
15#include "SimCore/DetectorConstruction.h"
18#include "SimCore/G4User/RunAction.h"
19#include "SimCore/G4User/StackingAction.h"
20#include "SimCore/G4User/SteppingAction.h"
23#include "SimCore/ParallelWorld.h"
28#include "FTFP_BERT.hh"
29#include "G4GDMLParser.hh"
30#include "G4GenericBiasingPhysics.hh"
31#include "G4ParallelWorldPhysics.hh"
32#include "G4ProcessTable.hh"
33#include "G4VModularPhysicsList.hh"
42 auto root_primary_gen_use_seed{parameters.
get<
bool>(
"rootPrimaryGenUseSeed")};
50 p_list->SetVerboseLevel(0);
55 ldmx_log(debug) <<
"Parallel worlds physics list has been registered";
56 p_list->RegisterPhysics(
new G4ParallelWorldPhysics(
"ldmxParallelWorld"));
66 auto biasing_operators{
68 "biasing_operators", {})};
69 if (!biasing_operators.empty()) {
70 ldmx_log(info) <<
" Biasing enabled with " << biasing_operators.size()
75 if (not simcore::XsecBiasingOperator::Factory::get().make(
76 bop.get<std::string>(
"class_name"),
77 bop.get<std::string>(
"instance_name"), bop)) {
78 EXCEPTION_RAISE(
"UnableToCreate",
79 "Unable to create a XsecBiasingOperator of type " +
80 bop.get<std::string>(
"class_name"));
85 G4GenericBiasingPhysics* biasing_physics =
new G4GenericBiasingPhysics();
90 simcore::XsecBiasingOperator::Factory::get().apply(
91 [
this, biasing_physics](
auto bop) {
92 ldmx_log(info) <<
"Biasing operator '" << bop->GetName()
93 <<
"' set to bias " << bop->getParticleToBias();
94 biasing_physics->Bias(bop->getParticleToBias());
98 p_list->RegisterPhysics(biasing_physics);
101 this->SetUserInitialization(p_list);
110 ldmx_log(debug) <<
"Parallel worlds have been enabled";
112 auto validate_geometry{
parameters_.
get<
bool>(
"validate_detector")};
113 G4GDMLParser* pw_parser =
new G4GDMLParser();
123 G4RunManager::Initialize();
133 SetUserAction(primary_action);
134 SetUserAction(run_action);
135 SetUserAction(event_action);
136 SetUserAction(tracking_action);
137 SetUserAction(stepping_action);
138 SetUserAction(stacking_action);
141 auto user_actions{
parameters_.
get<std::vector<framework::config::Parameters>>(
143 for (
auto& user_action : user_actions) {
144 auto ua = UserAction::Factory::get().make(
145 user_action.get<std::string>(
"class_name"),
146 user_action.get<std::string>(
"instance_name"), user_action);
150 "Unable to create a UserAction of type " +
151 user_action.get<std::string>(
"class_name") +
152 ". Did you inherit from simcore::UserAction? "
153 "Do you have DECLARE_ACTION in your implementation (.cxx) file? "
154 "Did you include the fully-specified class name in your python "
155 "configuration class? "
156 "Did you specify the correct library in the python configuration "
159 for (
auto& type : ua.value()->getTypes()) {
160 if (type == simcore::TYPE::RUN) {
161 run_action->registerAction(ua.value());
162 }
else if (type == simcore::TYPE::EVENT) {
163 event_action->registerAction(ua.value());
164 }
else if (type == simcore::TYPE::TRACKING) {
165 tracking_action->registerAction(ua.value());
166 }
else if (type == simcore::TYPE::STEPPING) {
167 stepping_action->registerAction(ua.value());
168 }
else if (type == simcore::TYPE::STACKING) {
169 stacking_action->registerAction(ua.value());
171 EXCEPTION_RAISE(
"ActionType",
"Action type does not exist.");
179 G4RunManager::TerminateOneEvent();
184 static auto reactivate_dark_brem = [](G4ProcessManager* pman) {
185 for (
int i_proc{0}; i_proc < pman->GetProcessList()->size(); i_proc++) {
186 G4VProcess* p{(*(pman->GetProcessList()))[i_proc]};
187 if (p->GetProcessName().contains(G4DarkBremsstrahlung::PROCESS_NAME)) {
188 pman->SetProcessActivation(p,
true);
194 reactivate_dark_brem(G4Electron::Definition()->GetProcessManager());
195 ldmx_log(debug) <<
"Reset the dark brem process (if it was activated)";
Class which defines basic APrime physics.
Class which implements the Geant4 user event action.
Class used to enhanced the gamma physics list.
Class implementing the Geant4 primary generator action.
Class providing a Geant4 run manager implementation.
Class which implements the user tracking action.
Class encapsulating parameters for configuring a processor.
const T & get(const std::string &name) const
Retrieve the parameter of the given name.
Defines basic APrime physics.
Handle to the conditions system, provided at construction to classes which require it.
Implements the Geant4 detector construction.
extra gamma particle physics for simulation and sets up the photonuclear model to use from the config...
Allows the configuration of properties of kaons produced in the simulation, in particular setting the...
std::string parallel_world_path_
Path to GDML description of parallel world.
framework::config::Parameters parameters_
The set of parameters used to configure the RunManager.
void TerminateOneEvent()
Called at the end of each event.
void setupPhysics()
Initialize physics.
void setUseRootSeed(bool useIt=true)
Tell RunManager to use the seed from the root file.
bool is_pw_enabled_
Flag indicating whether a parallel world should be registered.
void Initialize()
Perform application initialization.
DetectorConstruction * getDetectorConstruction()
Get the user detector construction cast to a specific type.
G4PhysListFactory physics_list_factory_
Factory class for instantiating the physics list.
RunManager(framework::config::Parameters ¶meters, ConditionsInterface &)
Class constructor.
Implementation of user event action hook.
Implementation of Geant4 primary generator action.
Implementation of user run action hook.
Class implementing a user stacking action.
Implements the Geant4 user stepping action.
Implementation of user tracking action.
Dynamically loadable photonuclear models either from SimCore or external libraries implementing this ...