Skip to content
Snippets Groups Projects
Commit 2478a674 authored by Sylvester Joosten's avatar Sylvester Joosten
Browse files

debug

parent 914ea951
No related branches found
No related tags found
1 merge request!188start work on DummyFF benchmark
...@@ -3,4 +3,9 @@ tracking_ff: ...@@ -3,4 +3,9 @@ tracking_ff:
stage: run stage: run
timeout: 24 hours timeout: 24 hours
script: script:
- bash benchmarks/far_forward/dummy_ff.sh - export JUGGLER_N_EVENTS=$((${JUGGLER_N_EVENTS} * 10))
- export PARTS="proton"
- bash benchmarks/far_forward/dummy_ff.sh --particle ${PARTS}
#parallel:
#matrix:
#- PARTS: ["proton", "neutron", "pion+", "pion-", "kaon+", "kaon-", "photon"]
...@@ -61,7 +61,7 @@ print_env.sh ...@@ -61,7 +61,7 @@ print_env.sh
export DETECTOR_PATH=${DETECTOR_PATH} export DETECTOR_PATH=${DETECTOR_PATH}
if [[ ! -n "${JUGGLER_N_EVENTS}" ]] ; then if [[ ! -n "${JUGGLER_N_EVENTS}" ]] ; then
export JUGGLER_N_EVENTS=100 export JUGGLER_N_EVENTS=1000
fi fi
export JUGGLER_N_EVENTS=$(expr ${JUGGLER_N_EVENTS} \* 1) export JUGGLER_N_EVENTS=$(expr ${JUGGLER_N_EVENTS} \* 1)
......
...@@ -130,7 +130,7 @@ int rec_ff(const std::string& fname = "athena/rec_ff.root", const std::string& p ...@@ -130,7 +130,7 @@ int rec_ff(const std::string& fname = "athena/rec_ff.root", const std::string& p
auto h_angular = df0.Histo2D({"h_angular", ";#theta_{x} (mrad);#theta_{y} (mrad);", 60, -60, 60, 60, -60, 60}, auto h_angular = df0.Histo2D({"h_angular", ";#theta_{x} (mrad);#theta_{y} (mrad);", 60, -60, 60, 60, -60, 60},
"thx_mrad", "thy_mrad"); "thx_mrad", "thy_mrad");
auto h_thetap = auto h_thetap =
df0.Histo2D({"h_thetap", ";#theta_{with ion} (mrad);P (GeV);", 60, 0, 100, 60, -30, 30}, "p_rec", "theta_mrad"); df0.Histo2D({"h_thetap", ";P (GeV);#theta_{with ion} (mrad);", 60, 0, 100, 60, -60, 60}, "p_rec", "theta_mrad");
auto c = new TCanvas(); auto c = new TCanvas();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment