Import Geant4 11.4.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2025-06-26 09:17:29 +02:00
parent 20a218bbe1
commit a499fb82e9
1941 changed files with 203285 additions and 95593 deletions
@@ -0,0 +1,16 @@
"""
** setup **
creates necessary folders
"""
import os
from core.constants import INIT_DIR, GLOBAL_CHECKPOINT_DIR, CONV_DIR, VALID_DIR, GEN_DIR
for folder in [INIT_DIR, # Directory to load the full simulation dataset
GLOBAL_CHECKPOINT_DIR, # Directory to save VAE checkpoints
CONV_DIR, # Directory to save model after conversion to a format that can be used in C++
VALID_DIR, # Directory to save validation plots
GEN_DIR, # Directory to save VAE generated showers
]:
os.system(f"mkdir {folder}")