Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/Dockerfile_opengate_core
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ RUN yum install -y gcc wget git expat-devel fftw-devel qt6-qtbase-devel free

#Compile Geant4
&& cd /software/geant4 \
&& git clone --branch v11.4.0 https://github.com/Geant4/geant4.git --depth 1 src \
&& git clone --branch v11.4.2 https://github.com/Geant4/geant4.git --depth 1 src \
&& cd bin \
&& . /opt/rh/gcc-toolset-14/enable \
&& cmake -DCMAKE_CXX_FLAGS=-std=c++17 -DGEANT4_BUILD_MULTITHREADED=ON -DGEANT4_USE_GDML=ON -DGEANT4_INSTALL_DATA=OFF -DGEANT4_USE_QT=ON -DGEANT4_USE_OPENGL_X11=ON -DGEANT4_USE_QT_QT6=ON -DGEANT4_BUILD_TLS_MODEL=global-dynamic ../src \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Dockerfile_opengate_core_arm64
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN yum install -y gcc wget git expat-devel fftw-devel qt6-qtbase-devel free

#Compile Geant4
&& cd /software/geant4 \
&& git clone --branch v11.4.0 https://github.com/Geant4/geant4.git --depth 1 src \
&& git clone --branch v11.4.2 https://github.com/Geant4/geant4.git --depth 1 src \
&& cd bin \
&& . /opt/rh/gcc-toolset-14/enable \
&& cmake -DCMAKE_CXX_FLAGS=-std=c++17 -DGEANT4_BUILD_MULTITHREADED=ON -DGEANT4_USE_GDML=ON -DGEANT4_INSTALL_DATA=OFF -DGEANT4_USE_QT=ON -DGEANT4_USE_OPENGL_X11=ON -DGEANT4_USE_QT_QT6=ON -DGEANT4_BUILD_TLS_MODEL=global-dynamic ../src \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Dockerfile_opengate_core_novis
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ RUN yum install -y gcc wget git expat-devel fftw-devel freeglut-devel libXmu

#Compile Geant4
&& cd /software/geant4 \
&& git clone --branch v11.4.0 https://github.com/Geant4/geant4.git --depth 1 src \
&& git clone --branch v11.4.2 https://github.com/Geant4/geant4.git --depth 1 src \
&& cd bin \
&& cmake -DCMAKE_CXX_FLAGS=-std=c++17 -DGEANT4_BUILD_MULTITHREADED=ON -DGEANT4_USE_GDML=OFF -DGEANT4_INSTALL_DATA=OFF -DGEANT4_USE_QT=OFF -DGEANT4_USE_OPENGL_X11=OFF -DGEANT4_BUILD_TLS_MODEL=global-dynamic ../src \
&& make -j10 \
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ concurrency:
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

env:
GEANT4_VERSION: 'v11.4.0'
GEANT4_VERSION: 'v11.4.2'
ITK_VERSION: 'v5.4.4'

jobs:
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:

# ssh_session:
# env:
# GEANT4_VERSION: 'v11.4.0'
# GEANT4_VERSION: 'v11.4.2'
# ITK_VERSION: 'v5.4.4'
# runs-on: macos-13
# steps:
Expand Down
2 changes: 1 addition & 1 deletion opengate/tests/src/actors/test037_pet_hits_singles_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
gate.exception.warning(f"Check stats")
p = paths.gate / "output"
stats_ref = utility.read_stats_file(p / "stats1.txt")
is_ok = utility.assert_stats(stats, stats_ref, [0.028, 0.028, 0.053])
is_ok = utility.assert_stats(stats, stats_ref, [0.028, 0.028, 0.058])

# check root hits
hc = sim.get_actor("Hits")
Expand Down
2 changes: 1 addition & 1 deletion opengate/tests/src/physics/test013_phys_lists_4.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@
print("Reference file", f)
stats_ref = utility.read_stats_file(f)
print(stats_ref)
is_ok = utility.assert_stats(stats, stats_ref, tolerance=[0.12, 0.12, 0.16])
is_ok = utility.assert_stats(stats, stats_ref, tolerance=[0.12, 0.12, 0.19])

utility.test_ok(is_ok)
Loading