26 G4EventManager::GetEventManager()->GetUserInformation())
27 ->setDarkBremMaterialZ(element.GetZ());
41 ldmx_log(info) <<
"Configuration:" <<
" A' mass: " <<
ap_mass_ / MeV <<
" MeV"
42 <<
", Dark brem enabled: " << (
enable_ ?
"YES" :
"NO")
43 <<
", FCP enabled: " << (
fcp_enable_ ?
"YES" :
"NO")
44 <<
", FCP mass: " <<
fcp_mass_ / MeV <<
" MeV"
51 static const std::map<std::string, G4APrime::DecayMode> decay_lut = {
52 {
"no_decay", G4APrime::DecayMode::NoDecay},
53 {
"flat_decay", G4APrime::DecayMode::FlatDecay},
54 {
"geant_decay", G4APrime::DecayMode::GeantDecay}};
56 decay_lut.find(model.get<std::string>(
"decay_mode",
"no_decay"))};
57 if (decay_it == decay_lut.end()) {
60 "Unrecognized decay mode '" + model.get<std::string>(
"decay_mode") +
62 " options are 'no_decay', 'flat_decay', or 'geant_decay'.");
65 double ap_tau = model.get<
double>(
"ap_tau", -1.0);
78 ldmx_log(info) <<
"Initializing A' with:" <<
", Mass: " <<
ap_mass_ / MeV
79 <<
" MeV" <<
", PDG ID: 622" <<
", Lifetime (tau): " << ap_tau
81 << model.get<std::string>(
"decay_mode",
"no_decay")
82 <<
", Decay product ID: " << decay_id
86 G4APrime::Initialize(
ap_mass_, 622, ap_tau, decay_it->second, decay_id);
98 ldmx_log(trace) <<
"=== APrimePhysics::ConstructProcess ===";
102 <<
"Dark brem is enabled, setting up G4DarkBremsstrahlung...";
104 auto model_name{model.get<std::string>(
"name")};
105 if (model_name ==
"vertex_library" or model_name ==
"g4db") {
106 static const std::map<std::string, g4db::G4DarkBreMModel::ScalingMethod>
109 g4db::G4DarkBreMModel::ScalingMethod::ForwardOnly},
110 {
"cm_scaling", g4db::G4DarkBreMModel::ScalingMethod::CMScaling},
111 {
"undefined", g4db::G4DarkBreMModel::ScalingMethod::Undefined}};
112 auto scaling_method_it{method_lut.find(model.get<std::string>(
"method"))};
113 if (scaling_method_it == method_lut.end()) {
116 "Unrecognized scaling method '" + model.get<std::string>(
"method") +
118 " options are 'forward_only', 'cm_scaling', or 'undefined'.");
122 process_ = std::make_unique<G4DarkBremsstrahlung>(
123 std::make_shared<g4db::G4DarkBreMModel>(
124 model.get<std::string>(
"library_path"),
128 model.get<
double>(
"threshold"), model.get<
double>(
"epsilon"),
129 scaling_method_it->second,
130 g4db::G4DarkBreMModel::XsecMethod::Auto,
131 model.get<
double>(
"max_R_for_full", 50.0),
132 model.get<
int>(
"aprime_lhe_id", 1023),
134 model.get<
bool>(
"scale_APrime",
false),
135 model.get<
double>(
"dist_decay_min", 0.0),
136 model.get<
double>(
"dist_decay_max", 1.0)),
142 EXCEPTION_RAISE(
"BadConf",
143 "Unrecognized model name '" + model_name +
"'.");
145 ldmx_log(trace) <<
"Initialization of dark brem complete";
151 <<
"FCP is enabled, setting up A' -> fcp+ fcp- conversion process...";
152 G4ProcessManager* aprime_proc_man = G4APrime::APrime()->GetProcessManager();
153 if (aprime_proc_man ==
nullptr) {
154 ldmx_log(error) <<
"FATAL: Unable to access process manager for A'!";
155 EXCEPTION_RAISE(
"APrimePhysics",
156 "Was unable to access the process manager for A', "
157 "something is very wrong!");
159 ldmx_log(debug) <<
"Creating APrimeConversionToFCPs process...";
165 ldmx_log(debug) <<
"Applied cross section biasing factor: "
170 aprime_proc_man->SetProcessOrderingToFirst(
173 <<
"A' -> fcp+ fcp- conversion process registered successfully!";
175 ldmx_log(info) <<
"FCP not enabled, A' conversion process not registered";
Class which defines basic APrime physics.
Class encapsulating parameters for configuring a processor.
const T & get(const std::string &name) const
Retrieve the parameter of the given name.
Discrete process for A' -> fcp+ fcp- conversion in a nuclear field.
void setCrossSecFactor(G4double fac)
Set a factor to artificially scale the cross section.
Defines basic APrime physics.
bool fcp_enable_
is A' -> fcp conversion enabled for this run?
APrimeConversionToFCPs * fcp_conversion_process_
A' -> fcp conversion process (owned by G4 process manager after registration)
G4double fcp_xsec_factor_
cross section biasing factor for A' -> fcp conversion
framework::config::Parameters parameters_
Dark brem parameters to pass to the process (if enabled)
void ConstructParticle()
Construct particle.
G4double ap_mass_
the mass of the A' for this run
static const std::string NAME
The name of this physics constructor.
APrimePhysics(const framework::config::Parameters ¶ms)
Class constructor.
G4double fcp_mass_
mass of the fcp in MeV
bool enable_
is dark brem enabled for this run?
G4double fcp_charge_
charge of the fcp in units of e
void ConstructProcess()
Construct the process.
Dynamically loadable photonuclear models either from SimCore or external libraries implementing this ...
static void storeElementZ(const G4Element &element)
Store the atomic Z for the element in which the dark brem occurred.