Skip to content

Commit

Permalink
Removed sampling fractions array
Browse files Browse the repository at this point in the history
  • Loading branch information
kjvbrt authored and vvolkl committed Oct 20, 2021
1 parent d9f06aa commit 6a4d83e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
4 changes: 0 additions & 4 deletions RecCalorimeter/src/components/CorrectCaloClusters.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
6 changes: 0 additions & 6 deletions RecCalorimeter/src/components/CorrectCaloClusters.h
Original file line number Diff line number Diff line change
Expand Up @@ -162,12 +162,6 @@ class CorrectCaloClusters : public GaudiAlgorithm {
Gaudi::Property<std::vector<size_t>> 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<std::vector<std::vector<double>>> 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<std::vector<std::vector<double>>> m_upstreamParams {
Expand Down

0 comments on commit 6a4d83e

Please sign in to comment.