From 9560a1a94a651893436013ea044fbe88f33917b4 Mon Sep 17 00:00:00 2001 From: Alex Jentsch <ajentsch@bnl.gov> Date: Wed, 8 Sep 2021 18:53:24 +0000 Subject: [PATCH] Wrong label for raw RP hits. --- benchmarks/far_forward/scripts/hits_far_forward_protons.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/benchmarks/far_forward/scripts/hits_far_forward_protons.cxx b/benchmarks/far_forward/scripts/hits_far_forward_protons.cxx index 2718a9fb..6b5dd524 100644 --- a/benchmarks/far_forward/scripts/hits_far_forward_protons.cxx +++ b/benchmarks/far_forward/scripts/hits_far_forward_protons.cxx @@ -105,11 +105,11 @@ int hits_far_forward_protons(const char* fname = "sim_far_forward_protons.root") //.Define("N_VtxBarrelHits",[](std::vector<eic::TrackerHitData> hits) { return hits.size();},{"VertexBarrelRecHits"}) .Define("N_BarrelHits", [](std::vector<dd4pod::TrackerHitData> hits) { return hits.size();}, {"TrackerBarrelHits"}) .Define("N_EndcapHits", [](std::vector<dd4pod::TrackerHitData> hits) { return hits.size();}, {"TrackerEndcapHits"}) - .Define("N_OMD_hits", [](std::vector<dd4pod::TrackerHitData> hits) { return hits.size();}, {"ForwardOffMTrackerHits"}) - .Define("N_RP_hits", [](std::vector<dd4pod::TrackerHitData> hits) { return hits.size();}, {"ForwardRomanPotsHits"}) + //.Define("N_OMD_hits", [](std::vector<dd4pod::TrackerHitData> hits) { return hits.size();}, {"ForwardOffMTrackerHits"}) + //.Define("N_RP_hits", [](std::vector<dd4pod::TrackerHitData> hits) { return hits.size();}, {"ForwardRomanPotsHits"}) ; - auto hBarrel_x_vs_y = df0.Histo2D({"hBarrel_x_vs_y", "; x ; y ", 100, -900, 900,100, -900, 900 }, "ForwardRomanPotsHits.position.x", "ForwardRomanPotsHits.position.y"); + auto hBarrel_x_vs_y = df0.Histo2D({"hBarrel_x_vs_y", "; x ; y ", 100, -900, 900,100, -900, 900 }, "ForwardRomanPotRawHits.position.x", "ForwardRomanPotRawHits.position.y"); auto hBarrel_N_vs_theta = df0.Histo1D({"hBarrel_N_vs_theta", "; #theta [deg.]", 20, 0, 180 }, "theta0", "N_BarrelHits"); auto hEndcap_N_vs_theta = df0.Histo1D({"hEndcap_N_vs_theta", "; #theta [deg.]", 20, 0, 180 }, "theta0", "N_EndcapHits"); -- GitLab