Skip to content
Snippets Groups Projects
Commit a4e71eb8 authored by Mikael Martensson's avatar Mikael Martensson
Browse files

Changed TauSelectionTool in tau physics validation to ToolHandles

parent 7bc84d81
9 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!28528Revert 63f845ae,!27054Atr20369 210,!26342Monopole: Handle fractionally charged particles,!24236Apply r21 changes of tau physics validation to master
...@@ -10,6 +10,47 @@ if recFlags.doTruth(): ...@@ -10,6 +10,47 @@ if recFlags.doTruth():
tool1.TauContainerName = "TauJets" tool1.TauContainerName = "TauJets"
tool1.TruthParticleContainerName = "TruthParticles" tool1.TruthParticleContainerName = "TruthParticles"
# configuration of the truth matching tool
tool1.TauTruthMatchingTool.TruthElectronContainerName = "TruthElectrons"
tool1.TauTruthMatchingTool.TruthMuonContainerName = "MuonTruthParticles"
tool1.TauTruthMatchingTool.WriteTruthTaus = True
# Trigger loading of TauAnalysisTools to make ID enums visible
import cppyy
try:
print("Successfully loaded TauAnalysisToolsDict")
cppyy.loadDictionary('TauAnalysisToolsDict')
except:
print("Could not load TauAnalysisToolsDict")
pass
from ROOT import TauAnalysisTools
# configuration of the 'primitive' tau selection
tool1.PrimitiveTauSelectionTool.ConfigPath = ""
tool1.PrimitiveTauSelectionTool.SelectionCuts \
= int(TauAnalysisTools.CutAbsEta | TauAnalysisTools.CutAbsCharge |
TauAnalysisTools.CutNTrack)
tool1.PrimitiveTauSelectionTool.PtMin = 0.0
tool1.PrimitiveTauSelectionTool.JetIDWP = TauAnalysisTools.JETIDNONE
tool1.PrimitiveTauSelectionTool.EleOLR = False
tool1.PrimitiveTauSelectionTool.NTracks = (0, 1, 2, 3, 4, 5)
tool1.PrimitiveTauSelectionTool.AbsCharges = (0, 1, 2, 3)
tool1.PrimitiveTauSelectionTool.AbsEtaRegion = (0.0, 10.0)
tool1.PrimitiveTauSelectionTool.OutputLevel = DEBUG
# configuration of the 'nominal' tau selection
tool1.NominalTauSelectionTool.ConfigPath = ""
tool1.NominalTauSelectionTool.SelectionCuts \
= int(TauAnalysisTools.CutPt | TauAnalysisTools.CutAbsEta |
TauAnalysisTools.CutAbsCharge | TauAnalysisTools.CutNTrack)
tool1.NominalTauSelectionTool.PtMin = 2000000.0
tool1.NominalTauSelectionTool.JetIDWP = TauAnalysisTools.JETIDNONE
tool1.NominalTauSelectionTool.EleOLR = False
tool1.NominalTauSelectionTool.NTracks = (0, 1, 2, 3, 4, 5)
tool1.NominalTauSelectionTool.AbsCharges = (0, 1, 2, 3)
tool1.NominalTauSelectionTool.AbsEtaRegion = (0.0, 1.37, 1.52, 2.5)
tool1.NominalTauSelectionTool.OutputLevel = DEBUG
monMan = CfgMgr.AthenaMonManager("PhysValMonManager") monMan = CfgMgr.AthenaMonManager("PhysValMonManager")
monMan.AthenaMonTools += [ tool1 ] monMan.AthenaMonTools += [ tool1 ]
...@@ -157,6 +157,8 @@ typedef enum e_DataPeriodBinning ...@@ -157,6 +157,8 @@ typedef enum e_DataPeriodBinning
PeriodBinningD_EFH23J_G = 3 PeriodBinningD_EFH23J_G = 3
} DataPeriodBinning; } DataPeriodBinning;
struct ROOT6_NamespaceAutoloadHook{};
} }
#endif // TAUANALYSISTOOLS_ENUMS_H #endif // TAUANALYSISTOOLS_ENUMS_H
...@@ -13,6 +13,8 @@ ...@@ -13,6 +13,8 @@
<class name="TauAnalysisTools::DiTauTruthMatchingTool" /> <class name="TauAnalysisTools::DiTauTruthMatchingTool" />
<function pattern="TauAnalysisTools::split*"/> <function pattern="TauAnalysisTools::split*"/>
<function pattern="TauAnalysisTools::testFileForEOFContainsCharacters*"/> <function pattern="TauAnalysisTools::testFileForEOFContainsCharacters*"/>
<enum name="TauAnalysisTools::e_JETID" />
<enum name="TauAnalysisTools::SelectionCuts" />
<!-- Suppress the unwanted classes found by ROOT 6. --> <!-- Suppress the unwanted classes found by ROOT 6. -->
<!-- Hopefully we can remove these extra lines at one point... --> <!-- Hopefully we can remove these extra lines at one point... -->
......
...@@ -17,8 +17,8 @@ ...@@ -17,8 +17,8 @@
// Local includes // Local includes
#include "AthenaMonitoring/ManagedMonitorToolBase.h" #include "AthenaMonitoring/ManagedMonitorToolBase.h"
#include "TauValidationPlots.h" #include "TauValidationPlots.h"
#include "TauAnalysisTools/TauTruthMatchingTool.h" #include "TauAnalysisTools/ITauTruthMatchingTool.h"
#include "TauAnalysisTools/TauSelectionTool.h" #include "TauAnalysisTools/ITauSelectionTool.h"
#include <TLorentzVector.h> #include <TLorentzVector.h>
//Additional includes //Additional includes
...@@ -84,10 +84,10 @@ class PhysValTau ...@@ -84,10 +84,10 @@ class PhysValTau
std::vector<size_t> m_matched_itr; std::vector<size_t> m_matched_itr;
// Tool used for truth-matching // Tool used for truth-matching
TauAnalysisTools::TauTruthMatchingTool m_truthTool; ToolHandle<TauAnalysisTools::ITauTruthMatchingTool> m_truthTool;
// Tool used to select "primitive" and "nominal" taus // Tool used to select "primitive" and "nominal" taus
TauAnalysisTools::TauSelectionTool m_primTauSel; ToolHandle<TauAnalysisTools::ITauSelectionTool> m_primTauSel;
TauAnalysisTools::TauSelectionTool m_nomiTauSel; ToolHandle<TauAnalysisTools::ITauSelectionTool> m_nomiTauSel;
//Histograms //Histograms
// general tau all prongs plots // general tau all prongs plots
......
...@@ -37,14 +37,20 @@ PhysValTau::PhysValTau(const std::string& type, ...@@ -37,14 +37,20 @@ PhysValTau::PhysValTau(const std::string& type,
const std::string& name, const std::string& name,
const IInterface* parent) : const IInterface* parent) :
ManagedMonitorToolBase(type, name, parent), ManagedMonitorToolBase(type, name, parent),
m_truthTool("TauTruthMatchingTool"), m_truthTool("TauAnalysisTools::TauTruthMatchingTool/"
m_primTauSel("PrimitiveTauSelectionTool"), "TauTruthMatchingTool", this),
m_nomiTauSel("NominalTauSelectionTool") m_primTauSel("TauAnalysisTools::TauSelectionTool/"
"PrimitiveTauSelectionTool", this),
m_nomiTauSel("TauAnalysisTools::TauSelectionTool/"
"NominalTauSelectionTool", this)
{ {
declareProperty("TauContainerName", m_TauJetContainerName = "TauRecContainer"); declareProperty("TauContainerName", m_TauJetContainerName = "TauRecContainer");
declareProperty("TruthParticleContainerName", m_TruthParticleContainerName = "TruthParticle"); declareProperty("TruthParticleContainerName", m_TruthParticleContainerName = "TruthParticle");
declareProperty("TauDetailsContainerName", m_TauDetailsContainerName = "TauRecDetailsContainer"); declareProperty("TauDetailsContainerName", m_TauDetailsContainerName = "TauRecDetailsContainer");
declareProperty("isMC", m_isMC = false); declareProperty("isMC", m_isMC = false);
declareProperty("TauTruthMatchingTool", m_truthTool);
declareProperty("PrimitiveTauSelectionTool", m_primTauSel);
declareProperty("NominalTauSelectionTool", m_nomiTauSel);
} }
// Destructor // Destructor
...@@ -60,30 +66,11 @@ StatusCode PhysValTau::initialize() ...@@ -60,30 +66,11 @@ StatusCode PhysValTau::initialize()
ATH_CHECK(ManagedMonitorToolBase::initialize()); ATH_CHECK(ManagedMonitorToolBase::initialize());
if ( m_isMC ) { if ( m_isMC ) {
CHECK(m_truthTool.setProperty("TruthElectronContainerName", ATH_CHECK(m_truthTool.retrieve());
"TruthElectrons"));
CHECK(m_truthTool.setProperty("TruthMuonContainerName",
"MuonTruthParticles"));
CHECK(m_truthTool.setProperty("WriteTruthTaus", true));
CHECK(m_truthTool.sysInitialize());
} }
// setup a "primitive" tau selection tool with basically no cuts // selections are configured in PhysicsValidation job options
CHECK(m_primTauSel.setProperty("PtMin",0.0)); ATH_CHECK(m_primTauSel.retrieve());
CHECK(m_primTauSel.setProperty("JetIDWP",int(TauAnalysisTools::JETIDNONE))); ATH_CHECK(m_nomiTauSel.retrieve());
CHECK(m_primTauSel.setProperty("EleOLR",false));
CHECK(m_primTauSel.setProperty("NTracks",std::vector<int>{0,1,2,3,4,5}));
CHECK(m_primTauSel.setProperty("AbsCharges",std::vector<int>{0,1,2,3}));
CHECK(m_primTauSel.setProperty("AbsEtaRegion",std::vector<double>{0.0,10.0}));
m_primTauSel.msg().setLevel(MSG::DEBUG);
CHECK(m_primTauSel.initialize());
// setup a "nominal" tau selection tool (just eta and pt cuts)
CHECK(m_nomiTauSel.setProperty("PtMin",20.0));
CHECK(m_nomiTauSel.setProperty("JetIDWP",int(TauAnalysisTools::JETIDNONE)));
CHECK(m_nomiTauSel.setProperty("EleOLR",false));
CHECK(m_nomiTauSel.setProperty("NTracks",std::vector<int>{0,1,2,3,4,5}));
CHECK(m_nomiTauSel.setProperty("AbsCharges",std::vector<int>{0,1,2,3}));
m_nomiTauSel.msg().setLevel(MSG::DEBUG);
CHECK(m_nomiTauSel.initialize());
return StatusCode::SUCCESS; return StatusCode::SUCCESS;
} }
...@@ -107,7 +94,7 @@ StatusCode PhysValTau::bookHistograms() ...@@ -107,7 +94,7 @@ StatusCode PhysValTau::bookHistograms()
StatusCode PhysValTau::fillHistograms() StatusCode PhysValTau::fillHistograms()
{ {
ATH_MSG_INFO ("Filling hists " << name() << "..."); ATH_MSG_INFO ("Filling hists " << name() << "...");
// Retrieve tau container: // Retrieve tau container:
...@@ -135,8 +122,8 @@ StatusCode PhysValTau::fillHistograms() ...@@ -135,8 +122,8 @@ StatusCode PhysValTau::fillHistograms()
// Loop through reco tau jet container // Loop through reco tau jet container
for (auto tau : *taus) { for (auto tau : *taus) {
if ( m_detailLevel < 10 ) continue; if ( m_detailLevel < 10 ) continue;
if ( m_primTauSel.accept(*tau) ) continue; if ( !static_cast<bool>(m_primTauSel->accept(*tau)) ) continue;
asg::AcceptData nominal = m_nomiTauSel.accept(*tau); bool nominal = static_cast<bool>(m_nomiTauSel->accept(*tau));
// fill histograms for reconstructed taus // fill histograms for reconstructed taus
m_oTauValidationPlots->m_oRecoTauAllProngsPlots.fill(*tau); m_oTauValidationPlots->m_oRecoTauAllProngsPlots.fill(*tau);
...@@ -171,12 +158,11 @@ StatusCode PhysValTau::fillHistograms() ...@@ -171,12 +158,11 @@ StatusCode PhysValTau::fillHistograms()
if ( !m_isMC ) continue; if ( !m_isMC ) continue;
ATH_MSG_DEBUG("Trying to truth-match tau"); ATH_MSG_DEBUG("Trying to truth-match tau");
auto trueTau = m_truthTool.getTruth(*tau); auto trueTau = m_truthTool->getTruth(*tau);
// Fill truth and fake histograms // Fill truth and fake histograms
if ( (bool)tau->auxdata<char>("IsTruthMatched") ) { if ( (bool)tau->auxdata<char>("IsTruthMatched") ) {
ATH_MSG_DEBUG("Tau is truth-matched"); ATH_MSG_DEBUG("Tau is truth-matched");
// std::cout << "Truth pdgId = " << trueTau->pdgId() << std::endl;
if ( trueTau->isTau() ) { if ( trueTau->isTau() ) {
if ( (bool)trueTau->auxdata<char>("IsHadronicTau") ) { if ( (bool)trueTau->auxdata<char>("IsHadronicTau") ) {
ATH_MSG_DEBUG("Tau is hadronic tau"); ATH_MSG_DEBUG("Tau is hadronic tau");
...@@ -209,7 +195,7 @@ StatusCode PhysValTau::fillHistograms() ...@@ -209,7 +195,7 @@ StatusCode PhysValTau::fillHistograms()
} }
xAOD::TauJetParameters::DecayMode trueMode xAOD::TauJetParameters::DecayMode trueMode
= m_truthTool.getDecayMode(*trueTau); = m_truthTool->getDecayMode(*trueTau);
m_oTauValidationPlots->m_oMigrationPlots.fill(*tau, trueMode); m_oTauValidationPlots->m_oMigrationPlots.fill(*tau, trueMode);
if ( nominal ) { if ( nominal ) {
m_oTauValidationPlots->m_oMigrationPlotsNom.fill(*tau, trueMode); m_oTauValidationPlots->m_oMigrationPlotsNom.fill(*tau, trueMode);
...@@ -226,7 +212,6 @@ StatusCode PhysValTau::fillHistograms() ...@@ -226,7 +212,6 @@ StatusCode PhysValTau::fillHistograms()
if ( truth->status() != 1 ) continue; if ( truth->status() != 1 ) continue;
if ( truth->pt() < 10000.0 ) continue; if ( truth->pt() < 10000.0 ) continue;
if ( tau->p4().DeltaR(truth->p4()) > 0.2 ) continue; if ( tau->p4().DeltaR(truth->p4()) > 0.2 ) continue;
std::cout << "Found electron!" << std::endl;
// OK, now it probably is an electron // OK, now it probably is an electron
isElectron = true; isElectron = true;
break; break;
......
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