diff --git a/benchmarks/tracking/central_electrons.sh b/benchmarks/tracking/central_electrons.sh index 836518ff03b7d21bc5d9799149cb2f4f9659bce5..b897a9c15cd66f6d0c09e3ac6a9ed40d0722be25 100644 --- a/benchmarks/tracking/central_electrons.sh +++ b/benchmarks/tracking/central_electrons.sh @@ -71,7 +71,7 @@ if [[ -z "${REC_ONLY}" && -z "${ANALYSIS_ONLY}" ]] ; then ## generate the input events - root -b -q "benchmarks/tracking/scripts/gen_central_electrons.cxx(${JUGGLER_N_EVENTS}, \"${JUGGLER_FILE_NAME_TAG}.hepmc\")" + root -b -q "benchmarks/tracking/scripts/gen_central_electrons.cxx+(${JUGGLER_N_EVENTS}, \"${JUGGLER_FILE_NAME_TAG}.hepmc\")" if [[ "$?" -ne "0" ]] ; then echo "ERROR running script" exit 1 @@ -107,13 +107,13 @@ fi mkdir -p results/tracking -root -b -q "benchmarks/tracking/scripts/rec_central_electrons.cxx(\"${JUGGLER_REC_FILE}\")" +root -b -q "benchmarks/tracking/scripts/rec_central_electrons.cxx+(\"${JUGGLER_REC_FILE}\")" if [[ "$?" -ne "0" ]] ; then echo "ERROR running root script" exit 1 fi -#root -b -q "benchmarks/tracking/scripts/hits_central_electrons.cxx(\"${JUGGLER_SIM_FILE}\")" +#root -b -q "benchmarks/tracking/scripts/hits_central_electrons.cxx+(\"${JUGGLER_SIM_FILE}\")" #if [[ "$?" -ne "0" ]] ; then # echo "ERROR running root script" # exit 1 diff --git a/benchmarks/tracking/options/track_reconstruction.py b/benchmarks/tracking/options/track_reconstruction.py index 11f4862fb78f0bc88095b1e0f3489d24d703dc28..729021d2bf8086042d980efd1ff1709a0f372d44 100644 --- a/benchmarks/tracking/options/track_reconstruction.py +++ b/benchmarks/tracking/options/track_reconstruction.py @@ -99,7 +99,7 @@ algorithms.append( podioinput ) trk_b_coll = SimTrackerHitsCollector("trk_b_coll", inputSimTrackerHits = tracker_barrel_collections, - outputSimTrackerHits = "TrackerBarrelHits") + outputSimTrackerHits = "TrackerBarrelAllHits") algorithms.append( trk_b_coll ) trk_b_digi = TrackerDigi("trk_b_digi", inputHitCollection = trk_b_coll.outputSimTrackerHits, @@ -109,7 +109,7 @@ algorithms.append( trk_b_digi ) trk_ec_coll = SimTrackerHitsCollector("trk_ec_coll", inputSimTrackerHits = tracker_endcap_collections, - outputSimTrackerHits = "TrackerEndcapHits") + outputSimTrackerHits = "TrackerEndcapAllHits") algorithms.append( trk_ec_coll ) trk_ec_digi = TrackerDigi("trk_ec_digi", inputHitCollection = trk_ec_coll.outputSimTrackerHits, @@ -119,7 +119,7 @@ algorithms.append( trk_ec_digi ) vtx_b_coll = SimTrackerHitsCollector("vtx_b_coll", inputSimTrackerHits = vertex_barrel_collections, - outputSimTrackerHits = "VertexBarrelHits") + outputSimTrackerHits = "VertexBarrelAllHits") algorithms.append( vtx_b_coll ) vtx_b_digi = TrackerDigi("vtx_b_digi", inputHitCollection = vtx_b_coll.outputSimTrackerHits, @@ -130,7 +130,7 @@ algorithms.append( vtx_b_digi ) if 'acadia' in detector_version: vtx_ec_coll = SimTrackerHitsCollector("vtx_ec_coll", inputSimTrackerHits = vertex_endcap_collections, - outputSimTrackerHits = "VertexEndcapHits") + outputSimTrackerHits = "VertexEndcapAllHits") algorithms.append( vtx_ec_coll ) vtx_ec_digi = TrackerDigi("vtx_ec_digi", inputHitCollection = vtx_ec_coll.outputSimTrackerHits, @@ -140,7 +140,7 @@ if 'acadia' in detector_version: else: mm_b_coll = SimTrackerHitsCollector("mm_b_coll", inputSimTrackerHits = mpgd_barrel_collections, - outputSimTrackerHits = "MPGDTrackerBarrelHits") + outputSimTrackerHits = "MPGDTrackerBarrelAllHits") algorithms.append( mm_b_coll ) mm_b_digi = TrackerDigi("mm_b_digi", inputHitCollection = mm_b_coll.outputSimTrackerHits, @@ -150,7 +150,7 @@ else: gem_ec_coll = SimTrackerHitsCollector("gem_ec_coll", inputSimTrackerHits = gem_endcap_collections, - outputSimTrackerHits = "GEMTrackerEndcapHits") + outputSimTrackerHits = "GEMTrackerEndcapAllHits") algorithms.append( gem_ec_coll ) gem_ec_digi = TrackerDigi("gem_ec_digi", inputHitCollection = gem_ec_coll.outputSimTrackerHits, diff --git a/benchmarks/tracking/scripts/gen_central_electrons.cxx b/benchmarks/tracking/scripts/gen_central_electrons.cxx index 3e9d8c01034fe360ba166d707d7d209f9a40fec2..455c799dd598cc50ab70ba4be2d3ec5a54ae47a5 100644 --- a/benchmarks/tracking/scripts/gen_central_electrons.cxx +++ b/benchmarks/tracking/scripts/gen_central_electrons.cxx @@ -3,9 +3,11 @@ #include "HepMC3/WriterAscii.h" #include "HepMC3/Print.h" +#include "TRandom.h" + #include <iostream> -#include<random> -#include<cmath> +#include <random> +#include <cmath> #include <math.h> #include <TMath.h> diff --git a/benchmarks/tracking/scripts/gen_central_pions.cxx b/benchmarks/tracking/scripts/gen_central_pions.cxx index abf691b5a984ad23758d94d900b9fa74e438b874..0e314c539844a700cb2a8041f7250a403a5c8a33 100644 --- a/benchmarks/tracking/scripts/gen_central_pions.cxx +++ b/benchmarks/tracking/scripts/gen_central_pions.cxx @@ -3,9 +3,11 @@ #include "HepMC3/WriterAscii.h" #include "HepMC3/Print.h" +#include "TRandom.h" + #include <iostream> -#include<random> -#include<cmath> +#include <random> +#include <cmath> #include <math.h> #include <TMath.h> diff --git a/benchmarks/tracking/scripts/gen_multiple_tracks.cxx b/benchmarks/tracking/scripts/gen_multiple_tracks.cxx index f26840068ae6697d286e5f4c63f18e7d808798f7..a8251f09e11585047f42549aaf50402a7f320cd0 100644 --- a/benchmarks/tracking/scripts/gen_multiple_tracks.cxx +++ b/benchmarks/tracking/scripts/gen_multiple_tracks.cxx @@ -3,9 +3,11 @@ #include "HepMC3/WriterAscii.h" #include "HepMC3/Print.h" +#include "TRandom.h" + #include <iostream> -#include<random> -#include<cmath> +#include <random> +#include <cmath> #include <math.h> #include <TMath.h> diff --git a/benchmarks/tracking/scripts/hits_central_electrons.cxx b/benchmarks/tracking/scripts/hits_central_electrons.cxx index 493a35a4c4d3d5cd7f5a151c80352f404b7a6c4b..f94d3ec6de75f859a8b23bc2ac0fad259427c31b 100644 --- a/benchmarks/tracking/scripts/hits_central_electrons.cxx +++ b/benchmarks/tracking/scripts/hits_central_electrons.cxx @@ -2,7 +2,9 @@ #include "TCanvas.h" #include "TLegend.h" #include "TH1D.h" +#include "THStack.h" #include "TProfile.h" +#include "Math/Vector4D.h" #include <iostream> diff --git a/benchmarks/tracking/scripts/hits_central_pions.cxx b/benchmarks/tracking/scripts/hits_central_pions.cxx index ef7d3fefe38ee05a8e335c7b324f5112580a8ccd..58a3dab355f37505f4e6cf227872b3e5a7baae29 100644 --- a/benchmarks/tracking/scripts/hits_central_pions.cxx +++ b/benchmarks/tracking/scripts/hits_central_pions.cxx @@ -2,7 +2,9 @@ #include "TCanvas.h" #include "TLegend.h" #include "TH1D.h" +#include "THStack.h" #include "TProfile.h" +#include "Math/Vector4D.h" #include <iostream> diff --git a/benchmarks/tracking/scripts/rec_central_electrons.cxx b/benchmarks/tracking/scripts/rec_central_electrons.cxx index 4c7a76b64e38355c8468ef1be87c516db15bb8ef..ad241ebbb72ab670b0902ca717261056493db908 100644 --- a/benchmarks/tracking/scripts/rec_central_electrons.cxx +++ b/benchmarks/tracking/scripts/rec_central_electrons.cxx @@ -2,7 +2,9 @@ #include "TCanvas.h" #include "TLegend.h" #include "TH1D.h" +#include "THStack.h" #include "TProfile.h" +#include "Math/Vector4D.h" #include <iostream> diff --git a/benchmarks/tracking/scripts/rec_central_pions.cxx b/benchmarks/tracking/scripts/rec_central_pions.cxx index 102c79003996e852516eb5d5e111b38ea4b97e4b..588a5a02f2b9b529727c759da7bffe3a0b1f03d1 100644 --- a/benchmarks/tracking/scripts/rec_central_pions.cxx +++ b/benchmarks/tracking/scripts/rec_central_pions.cxx @@ -2,7 +2,9 @@ #include "TCanvas.h" #include "TLegend.h" #include "TH1D.h" +#include "THStack.h" #include "TProfile.h" +#include "Math/Vector4D.h" #include <iostream> diff --git a/benchmarks/tracking/scripts/rec_multiple_tracks.cxx b/benchmarks/tracking/scripts/rec_multiple_tracks.cxx index 819047625ea27c0e21d1afc6b8ab0bc8baa643d6..99f0ded5554aa553b26ba7dc3eb68e6e16cdfc82 100644 --- a/benchmarks/tracking/scripts/rec_multiple_tracks.cxx +++ b/benchmarks/tracking/scripts/rec_multiple_tracks.cxx @@ -2,7 +2,9 @@ #include "TCanvas.h" #include "TLegend.h" #include "TH1D.h" +#include "THStack.h" #include "TProfile.h" +#include "Math/Vector4D.h" #include <iostream>