Skip to content
Snippets Groups Projects

DRAFT:Check abs eta fix

Closed Bingxuan LIU requested to merge biliu/athena:checkAbsEtaFix into master
1 file
+ 2
1
Compare changes
  • Side-by-side
  • Inline
@@ -1917,7 +1917,8 @@ Analysis::CalibrationDataInterfaceROOT::checkAbsEta(const CalibrationDataVariabl
// Check whether the jet eta value is outside the range of validity, subject to the strategy
// specified in the configuration file.
bool pass = true;
if (m_absEtaStrategy == Ignore) return pass;
switch (m_absEtaStrategy) {
case GiveUp:
if (std::fabs(variables.jetEta) > m_maxAbsEta) {
Loading