Skip to content
Snippets Groups Projects
Commit c0fe6359 authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'clean_ditaueffcorr' into 'main'

cleaning unused/unsupported properties from DiTauEfficiencyCorrectionsTool

See merge request atlas/athena!68051
parents f7fafa52 ffd1dec5
No related branches found
No related tags found
1 merge request!68051cleaning unused/unsupported properties from DiTauEfficiencyCorrectionsTool
/**
*
* @copyright Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
* @copyright Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
*
* @file DiTauEfficiencyCorrectionsTool.cxx
* @brief Class for ditau efficiency correction scale factors and uncertainties
......@@ -29,9 +29,7 @@ DiTauEfficiencyCorrectionsTool::DiTauEfficiencyCorrectionsTool( const std::strin
, m_bIsConfigured(false)
{
declareProperty( "EfficiencyCorrectionTypes", m_vEfficiencyCorrectionTypes = {} );
declareProperty( "InputFilePathRecoHadTau", m_sInputFilePathRecoHadTau = "" );
declareProperty( "InputFilePathJetIDHadTau", m_sInputFilePathJetIDHadTau = "" );
declareProperty( "VarNameRecoHadTau", m_sVarNameRecoHadTau = "" );
declareProperty( "VarNameJetIDHadTau", m_sVarNameJetIDHadTau = "" );
declareProperty( "RecommendationTag", m_sRecommendationTag = "2017-moriond" );
declareProperty( "JetIDLevel", m_iJetIDLevel = (int)JETIDBDTTIGHT );
......@@ -111,8 +109,7 @@ void DiTauEfficiencyCorrectionsTool::printConfig() const
for (auto iEfficiencyCorrectionType : m_vEfficiencyCorrectionTypes) {
ATH_MSG_DEBUG( " EfficiencyCorrectionTypes " << iEfficiencyCorrectionType );
}
ATH_MSG_DEBUG( " InputFilePathRecoHadTau " << m_sInputFilePathRecoHadTau );
ATH_MSG_DEBUG( " VarNameRecoHadTau " << m_sVarNameRecoHadTau );
ATH_MSG_DEBUG( " InputFilePathJetIDHadTau " << m_sInputFilePathJetIDHadTau );
ATH_MSG_DEBUG( " VarNameJetIDHadTau " << m_sVarNameJetIDHadTau );
ATH_MSG_DEBUG( " RecommendationTag " << m_sRecommendationTag );
}
......
/**
*
* @copyright Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
* @copyright Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
*
* @file DiTauEfficiencyCorrectionsTool.h
* @author Guillermo Hamity (ghamity@cern.ch)
......@@ -112,9 +112,7 @@ private:
std::vector<int> m_vEfficiencyCorrectionTypes;
std::vector< asg::AnaToolHandle<IDiTauEfficiencyCorrectionsTool>* > m_vCommonEfficiencyTools;
std::string m_sInputFilePathRecoHadTau;
std::string m_sInputFilePathJetIDHadTau;
std::string m_sVarNameRecoHadTau;
std::string m_sVarNameJetIDHadTau;
std::string m_sRecommendationTag;
bool m_bSkipTruthMatchCheck;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment