Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Jan 13, 2025
1 parent d01aa7c commit 5d4d2bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/scripts/clicRec_e4h_input.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ cd CLICPerformance/clicConfig
if [ "$2" = "--iosvc" ]; then
iosvc="_iosvc"
echo "Running with IO service"
file_arg = "--IOSvc.Input=$1"
file_arg="--IOSvc.Input=$1"
elif [ -n "$2" ]; then
echo "Wrong argument $2"
else
echo "Running without IO service"
file_arg = "EventDataSvc.input=$1"
file_arg="EventDataSvc.input=$1"
fi
k4run $EXAMPLE_DIR/clicRec_e4h_input.py $file_arg --rec-output Output_REC_e4h_input$iosvc.slcio --dst-output Output_DST_e4h_input$iosvc.slcio
k4run $EXAMPLE_DIR/clicRec_e4h_input.py ${file_arg} --rec-output Output_REC_e4h_input$iosvc.slcio --dst-output Output_DST_e4h_input$iosvc.slcio

input_num_events=$(python $TEST_DIR/python/root_num_events.py $1)
output_num_events=$(python $TEST_DIR/python/root_num_events.py my_output.root)
Expand Down

0 comments on commit 5d4d2bd

Please sign in to comment.