Skip to content

Commit

Permalink
add support for alternative schemes of NPs for FTAG systematics (#1667)
Browse files Browse the repository at this point in the history
  • Loading branch information
gfrattar committed Dec 21, 2023
1 parent ce9087d commit 543ed9e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Root/BJetEfficiencyCorrector.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,10 @@ EL::StatusCode BJetEfficiencyCorrector :: initialize ()
ANA_CHECK( m_BJetEffSFTool_handle.setProperty("EfficiencyLightCalibrations", calibration));
}

ANA_CHECK( m_BJetEffSFTool_handle.setProperty("EigenvectorReductionB" , m_EigenvectorReductionB) );
ANA_CHECK( m_BJetEffSFTool_handle.setProperty("EigenvectorReductionC" , m_EigenvectorReductionC) );
ANA_CHECK( m_BJetEffSFTool_handle.setProperty("EigenvectorReductionLight" , m_EigenvectorReductionLight) );

ANA_CHECK( m_BJetEffSFTool_handle.retrieve());
ANA_MSG_DEBUG("Retrieved tool: " << m_BJetEffSFTool_handle);

Expand Down
5 changes: 5 additions & 0 deletions xAODAnaHelpers/BJetEfficiencyCorrector.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@ class BJetEfficiencyCorrector : public xAH::Algorithm
/// @brief Example: "410470;410250;410558;410464" (Pythia8,Sherpa22,Herwig7,MG)
std::string m_EfficiencyCalibration = "";

/// @brief To change NP scheme for b-tagging systematics - Loose is the default value in athena
std::string m_EigenvectorReductionB = "Loose";
std::string m_EigenvectorReductionC = "Loose";
std::string m_EigenvectorReductionLight = "Loose";

private:

/// @brief The decoration key written to passing objects
Expand Down

0 comments on commit 543ed9e

Please sign in to comment.