From b1f4b59481425526e1ebdb82918b56d1983ce909 Mon Sep 17 00:00:00 2001 From: Markus Dittmer <85581959+MarkusDittmer@users.noreply.github.com> Date: Fri, 31 Jan 2025 16:39:18 +0100 Subject: [PATCH] Update 31_radioactive_decays.md Added example line to run --- documentation/extra_doc/31_radioactive_decays.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/documentation/extra_doc/31_radioactive_decays.md b/documentation/extra_doc/31_radioactive_decays.md index 48ac63493..9362be848 100644 --- a/documentation/extra_doc/31_radioactive_decays.md +++ b/documentation/extra_doc/31_radioactive_decays.md @@ -23,6 +23,11 @@ Currently, there are two analysis modes: 2. Without the `--multiplicity_study` argument: Data pertaining to photons and decayed isotopes is saved to files. If you are using multithreaded mode, then each thread will produce its own file. +To run the Simulation use the examplary line below: + +`./OMSim_radioactive_decays --no_PMT_decays --efficiency_cut -n 1 --time_window 60 --temperature -30 -o outputname --environment 1 --threads 3 --detector_type 2` + + ### Developer Notes: Geant4 Dependencies and Modifications This simulation module requires modifications to several Geant4 classes to enable custom handling of decay times. Unfortunately, the Geant4 physics library is not designed with extensibility in mind, making inheritance or selective function overrides impractical. As a result, we had to copy and modify entire class implementations. This approach makes the module highly dependent on the specific Geant4 version being used.