From c1e7589a7d8b98397368eae9adf5e20138831c66 Mon Sep 17 00:00:00 2001 From: Rosario Turrisi Date: Thu, 21 Jul 2022 10:14:54 +0000 Subject: [PATCH 1/3] Eta histos wider limits (now -2,2) --- DPG/Tasks/qaMatchEff.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DPG/Tasks/qaMatchEff.cxx b/DPG/Tasks/qaMatchEff.cxx index 7f929a55340..de3778ee875 100644 --- a/DPG/Tasks/qaMatchEff.cxx +++ b/DPG/Tasks/qaMatchEff.cxx @@ -40,15 +40,15 @@ struct qaMatchEff { // Histogram configuration // // histo x axes limits - Configurable etaMin{"eta-min", -0.8f, "Lower limit in eta"}; - Configurable etaMax{"eta-max", 0.8f, "Upper limit in eta"}; + Configurable etaMin{"eta-min", -2.0f, "Lower limit in eta"}; + Configurable etaMax{"eta-max", 2.0f, "Upper limit in eta"}; Configurable phiMin{"phi-min", 0.0f, "Lower limit in phi"}; Configurable phiMax{"phi-max", 1.0f * TwoPI, "Upper limit in phi"}; Configurable ptMin{"pt-min", 0.0f, "Lower limit in pT"}; Configurable ptMax{"pt-max", 15.f, "Upper limit in pT"}; // histos bins Configurable ptBins{"pt-bins", 16, "Number of pT bins"}; - Configurable etaBins{"eta-bins", 16, "Number of eta bins"}; + Configurable etaBins{"eta-bins", 40, "Number of eta bins"}; Configurable phiBins{"phi-bins", 18, "Number of phi bins"}; // histo axes // From 31458a1b7d4726ef3ec9643910a772d21e00df2c Mon Sep 17 00:00:00 2001 From: Rosario Turrisi Date: Thu, 21 Jul 2022 12:02:43 +0000 Subject: [PATCH 2/3] Eta histos wider limits (now -2,2) and smaller pt bins up to 0.5 Gev/c --- DPG/Tasks/qaMatchEff.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DPG/Tasks/qaMatchEff.cxx b/DPG/Tasks/qaMatchEff.cxx index de3778ee875..610c64f2c10 100644 --- a/DPG/Tasks/qaMatchEff.cxx +++ b/DPG/Tasks/qaMatchEff.cxx @@ -47,13 +47,13 @@ struct qaMatchEff { Configurable ptMin{"pt-min", 0.0f, "Lower limit in pT"}; Configurable ptMax{"pt-max", 15.f, "Upper limit in pT"}; // histos bins - Configurable ptBins{"pt-bins", 16, "Number of pT bins"}; + Configurable ptBins{"pt-bins", 29, "Number of pT bins"}; Configurable etaBins{"eta-bins", 40, "Number of eta bins"}; Configurable phiBins{"phi-bins", 18, "Number of phi bins"}; // histo axes // // non uniform pt binning - std::vector ptBinning = {0.0, 0.5, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0}; + std::vector ptBinning = {0.0, 0.05, 0.1, 0.15, 0.2, 0.25, 0.3, 0.35, 0.4, 0.45, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0}; AxisSpec axisPt{ptBinning, "#it{p}_{T} (GeV/#it{c})"}; // const AxisSpec axisPt{ptBins, ptMin, ptMax, "#it{p}_{T} (GeV/#it{c})"}; // From e1eff374596eb65f854e6fa2224bf2c393859bf8 Mon Sep 17 00:00:00 2001 From: Rosario Turrisi Date: Thu, 21 Jul 2022 12:08:38 +0000 Subject: [PATCH 3/3] Got read of unused configurables --- DPG/Tasks/qaMatchEff.cxx | 3 --- 1 file changed, 3 deletions(-) diff --git a/DPG/Tasks/qaMatchEff.cxx b/DPG/Tasks/qaMatchEff.cxx index 610c64f2c10..66ec62defe3 100644 --- a/DPG/Tasks/qaMatchEff.cxx +++ b/DPG/Tasks/qaMatchEff.cxx @@ -44,10 +44,7 @@ struct qaMatchEff { Configurable etaMax{"eta-max", 2.0f, "Upper limit in eta"}; Configurable phiMin{"phi-min", 0.0f, "Lower limit in phi"}; Configurable phiMax{"phi-max", 1.0f * TwoPI, "Upper limit in phi"}; - Configurable ptMin{"pt-min", 0.0f, "Lower limit in pT"}; - Configurable ptMax{"pt-max", 15.f, "Upper limit in pT"}; // histos bins - Configurable ptBins{"pt-bins", 29, "Number of pT bins"}; Configurable etaBins{"eta-bins", 40, "Number of eta bins"}; Configurable phiBins{"phi-bins", 18, "Number of phi bins"}; // histo axes