From 6a4d83e59f0b49ef2411f7703dba43a08a63ea02 Mon Sep 17 00:00:00 2001 From: Juraj Smiesko Date: Mon, 27 Sep 2021 20:33:49 +0200 Subject: [PATCH] Removed sampling fractions array --- RecCalorimeter/src/components/CorrectCaloClusters.cpp | 4 ---- RecCalorimeter/src/components/CorrectCaloClusters.h | 6 ------ 2 files changed, 10 deletions(-) diff --git a/RecCalorimeter/src/components/CorrectCaloClusters.cpp b/RecCalorimeter/src/components/CorrectCaloClusters.cpp index 9ba08fa3..6c8776ed 100644 --- a/RecCalorimeter/src/components/CorrectCaloClusters.cpp +++ b/RecCalorimeter/src/components/CorrectCaloClusters.cpp @@ -70,10 +70,6 @@ StatusCode CorrectCaloClusters::initialize() { error() << "Sizes of systemIDs vector and firstLayerIDs vector does not match, exiting!" << endmsg; return StatusCode::FAILURE; } - if (m_systemIDs.size() != m_samplingFractions.size()) { - error() << "Sizes of systemIDs vector and samplingFractions vector does not match, exiting!" << endmsg; - return StatusCode::FAILURE; - } if (m_systemIDs.size() != m_upstreamFormulas.size()) { error() << "Sizes of systemIDs vector and upstreamFormulas vector does not match, exiting!" << endmsg; return StatusCode::FAILURE; diff --git a/RecCalorimeter/src/components/CorrectCaloClusters.h b/RecCalorimeter/src/components/CorrectCaloClusters.h index 72109c76..c003c8c5 100644 --- a/RecCalorimeter/src/components/CorrectCaloClusters.h +++ b/RecCalorimeter/src/components/CorrectCaloClusters.h @@ -162,12 +162,6 @@ class CorrectCaloClusters : public GaudiAlgorithm { Gaudi::Property> m_lastLayerIDs { this, "lastLayerIDs", {7}, "IDs of last layers in the systems" }; - /// Values of sampling fractions used for energy calibration of the systems - Gaudi::Property>> m_samplingFractions { - this, "samplingFractions", - {{0.299041341789, 0.1306220735, 0.163243999965, 0.186360269398, - 0.203778124831, 0.216211280314, 0.227140796653, 0.243315422934}}, - "Values of sampling fractions used in energy calibration of the systems"}; /// Upstream correction parameters (a, b, c, ...) Gaudi::Property>> m_upstreamParams {