Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implementation of the biological dose actor (BioDoseActor) #671

Merged
merged 12 commits into from
Apr 2, 2024
Merged
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,8 @@ jobs:
t30_dna,
t31_vpgTLE-tt,
t32_isotopes,
t33_invert_filter]
t33_invert_filter,
t34_biodose_actor]

steps:
- name: Checkout github repo
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
build/
_build/
_wiki/
*~
Expand All @@ -19,3 +20,4 @@ cmake-build-*
/source/io_old/
/source/save_bug/

.cache/
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ Miklavec Mojca
Mouton Claire
Padilla Fatima
Patay Gergely
Pereda Alexis
Perez Hector
Pommranz Christian
Pike Lucy
Expand Down
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ ELSE()
ENDIF()
set(CMAKE_CXX_STANDARD ${Geant4_CXX_STANDARD})

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

#=========================================================
# Refuse to build with MT geant4, allow dev override
IF(Geant4_multithreaded_FOUND)
Expand Down
Loading
Loading