Please fill out the following information to help in answering your question, and also see tips for posting code snippets. If you don’t provide this information it will take more time to help with your problem!
Geant4 Version: 11.3.2
Operating System:
Compiler/Version:
CMake Version:
I try to add new lines for a normal cell in lem1.csv and I copy the same file with rename it with my modification in the same its path radiobiology/data/rbe/lem1_modify.csv
‘‘‘
build-radiobiology % ls
CMakeCache.txt Makefile data radiobiology
CMakeFiles cmake_install.cmake macro
sarahabdelaziz@Sarahs-MacBook-Pro build-radiobiology % nano macro/defaultMacro.mac
‘‘‘
‘‘‘
RBE
/rbe/reset
/rbe/verbose 1
#/rbe/loadLemTable data/rbe/lem1.csv
/rbe/loadLemTable data/rbe/lem1_modify.csv # Sarah add
/rbe/calculate true
#U87
#/rbe/cellLine U87
/rbe/cellLine CA1_Neuron
/rbe/print
‘‘‘
I got an error.
‘‘‘
→ G4TaskRunManager::CreateAndStartWorkers() → Initializing workers…
G4WT3 > Accumulable registered as “Dose”
G4WT1 > Accumulable registered as “Dose”
G4WT3 > Accumulable registered as “LET”
G4WT0 > Accumulable registered as “Dose”
G4WT3 > Accumulable registered as “RBE”
G4WT2 > Accumulable registered as “Dose”
G4WT0 > Accumulable registered as “LET”
G4WT2 > Accumulable registered as “LET”
G4WT0 > Accumulable registered as “RBE”
G4WT2 > Accumulable registered as “RBE”
G4WT1 > Accumulable registered as “LET”
G4WT1 > Accumulable registered as “RBE”
****** Parameters of the class Dose *******
** Verbose level = 1 **********************
** Initialized = true *********************
** Saved = false **************************
** Calculation enabled = true *************
******* Parameters of the class LET *******
** Verbose level = 1 **********************
** Initialized = true *********************
** Saved = false **************************
** Calculation enabled = true *************
-------- EEEE ------- G4Exception-START -------- EEEE -------
*** G4Exception : ColumnNotPresent
issued by : RBE::LoadLEMTable
Column alpha_x not present in the LEM table file.
*** Fatal Exception *** core dump ***
**** Track information is not available at this moment
**** Step information is not available at this moment
-------- EEEE -------- G4Exception-END --------- EEEE -------
*** G4Exception: Aborting execution ***
zsh: abort ./radiobiology macro/defaultMacro.mac
‘‘‘
I try to do this
‘‘‘
head -n 1 data/rbe/lem1_modify.csv | od -c
0000000 \t a l p h a _ x \t b e t a _ x \t
0000020 r _ n u c l e u s \t D _ t \t s p
0000040 e c i f i c _ e n e r g y \t l e
0000060 t \t a l p h a \t b e t a \t a l p
0000100 h a _ s i g m a \t b e t a _ s i
0000120 g m a \t c e l l \t p a r t i c l
0000140 e \t R B E _ a l p h a \n
0000154
sarahabdelaziz@Sarahs-MacBook-Pro radiobiology % sed -i ‘’ ‘1s/^\t//’ data/rbe/lem1_modify.csv
sarahabdelaziz@Sarahs-MacBook-Pro radiobiology % head -n 1 data/rbe/lem1_modify.csv | od -c
0000000 a l p h a _ x \t b e t a _ x \t r
0000020 _ n u c l e u s \t D _ t \t s p e
0000040 c i f i c _ e n e r g y \t l e t
0000060 \t a l p h a \t b e t a \t a l p h
0000100 a _ s i g m a \t b e t a _ s i g
0000120 m a \t c e l l \t p a r t i c l e
0000140 \t R B E _ a l p h a \n
0000153
‘‘‘
But I got the same problem. Could you help me, please?
I try by delete quotes in the txt file and again compile radiobiology but I got
‘‘‘
→ G4TaskRunManager::CreateAndStartWorkers() → Initializing workers…
G4WT1 > Accumulable registered as “Dose”
G4WT2 > Accumulable registered as “Dose”
G4WT1 > Accumulable registered as “LET”
G4WT1 > Accumulable registered as “RBE”
G4WT2 > Accumulable registered as “LET”
G4WT2 > Accumulable registered as “RBE”
G4WT0 > Accumulable registered as “Dose”
G4WT3 > Accumulable registered as “Dose”
G4WT0 > Accumulable registered as “LET”
G4WT0 > Accumulable registered as “RBE”
G4WT3 > Accumulable registered as “LET”
G4WT3 > Accumulable registered as “RBE”
****** Parameters of the class Dose *******
** Verbose level = 1 **********************
** Initialized = true *********************
** Saved = false **************************
** Calculation enabled = true *************
******* Parameters of the class LET *******
** Verbose level = 1 **********************
** Initialized = true *********************
** Saved = false **************************
** Calculation enabled = true *************
zsh: segmentation fault ./radiobiology macro/defaultMacro.mac
sarahabdelaziz@Sarahs-MacBook-Pro build-radiobiology %
‘‘‘
@bmorgan @cirrone @lpandola and @ivana
Thanks
Sarah