.CloverDetectorConstruction.cc.swp | ||
.Detector_Parameters.hh.swp | ||
.gitignore | ||
analysis.C | ||
Analyzer_C_ACLiC_dict_rdict.pcm | ||
Analyzer_C.d | ||
Analyzer_C.so | ||
Analyzer.C | ||
Analyzer.h | ||
Clarion2.png | ||
Clover_GEANT4_Simulation.pptx | ||
clover.cc | ||
clover.png | ||
CloverActionInitialization.cc | ||
CloverActionInitialization.hh | ||
CloverCrystalHit.cc | ||
CloverCrystalHit.hh | ||
CloverCrystalSD.cc | ||
CloverCrystalSD.hh | ||
CloverDetectorConstruction.cc | ||
CloverDetectorConstruction.hh | ||
CloverEventAction.cc | ||
CloverEventAction.hh | ||
CloverPhysicsList.cc | ||
CloverPhysicsList.hh | ||
CloverPrimaryGeneratorAction.cc | ||
CloverPrimaryGeneratorAction.hh | ||
CloverRunAction.cc | ||
CloverRunAction.hh | ||
CMakeLists.txt | ||
Detector_Parameters.hh | ||
init_vis.mac | ||
my.in | ||
my.wrl | ||
README.md | ||
vis.mac |
About
This is a geant4 simulation for the Clarion2 gamma-detector array. It based on https://github.com/goluckyryan/HPGeClover.
Build the code
Once downloaded the code, create a new folder for the build.
>mkdir Clarion2_build
>cd Clarion2_build
>cmake <path/to/CLARION2_GEANT4
>make
you should have the '''clover''' created.
to run in interactive mode
>./clover
to run in bash mode
>./clover <in_file>
KNOWN BUGS
- Segfault at exit program
- Some of the Clovers seems to be not at the right orientation, especially at the upstream.
To build GEANT4 11.2.0 in Ubuntu 22.04
Visuailization
I pick the Qt + openGL as the visualiization, for that we need
>sudo apt install qt6-base-dev libqt6charts6-dev qt6-3d-dev
the openGL should come with Ubuntu 22.04
Steps
>sudo apt install libexpat1-dev libxmu-dev linxkbcommon-dev
>cd Downloads
>wget https://gitlab.cern.ch/geant4/geant4/-/archive/v11.2.0/geant4-v11.2.0.tar.gz
>tar xzf geant4-v11.2.0.tar.gz
>mkdir geant4-v11.2.0_build
>cd geant4-v11.2.0_build
>cmake -DGEANT4_INSTALL_DATA=On -DCMAKE_INSTALL_PREFIX=/opt/geant4-v11.2.0 -DGEANT4_USE_OPENGL_X11=ON -DGEANT4_USE_QT=ON -DGEANT4_USE_QT_QT6=ON ../geant4-v11.2.0
>make -j10
>sudo make install
>echo 'source /opt/geant4-v11.2.0/bin/geant4.sh' >> ~/.bashrc