ATLAS Offline Software
Loading...
Searching...
No Matches
TauAnalysisTools::TauSelectionCutJetIDWP Class Reference

#include <TauSelectionCuts.h>

Inheritance diagram for TauAnalysisTools::TauSelectionCutJetIDWP:
Collaboration diagram for TauAnalysisTools::TauSelectionCutJetIDWP:

Public Member Functions

 TauSelectionCutJetIDWP (TauSelectionTool *tTST)
virtual void setAcceptInfo (asg::AcceptInfo &info) const override
virtual bool accept (const xAOD::TauJet &xTau, asg::AcceptData &accept) override
void writeControlHistograms ()
void fillHistogramCutPre (const xAOD::TauJet &xTau)
void fillHistogramCut (const xAOD::TauJet &xTau)
TH1F * CreateControlPlot (const char *sName, const char *sTitle, int iBins, double dXLow, double dXUp)
const std::string & getName ()
void setProperty (const std::string &name, const std::string &value)

Protected Member Functions

void declareProperty (const std::string &name, std::string &loc)
std::string getProperty (const std::string &name)

Protected Attributes

std::string m_sName
TH1F * m_hHistCutPre
TH1F * m_hHistCut
TauSelectionToolm_tTST
std::map< std::string, std::string & > m_mProperties

Private Member Functions

virtual void fillHistogram (const xAOD::TauJet &xTau, TH1F &hHist) const override

Detailed Description

Definition at line 137 of file TauSelectionCuts.h.

Constructor & Destructor Documentation

◆ TauSelectionCutJetIDWP()

TauSelectionCutJetIDWP::TauSelectionCutJetIDWP ( TauSelectionTool * tTST)

Definition at line 340 of file TauSelectionCuts.cxx.

341 : TauSelectionCut("CutJetIDWP", tTST)
342{
343 m_hHistCutPre = CreateControlPlot("hJetIDWP_pre","JetIDWP_pre;; events",8,-.5,7.5);
344 m_hHistCut = CreateControlPlot("hJetIDWP_cut","JetIDWP_cut;; events",8,-.5,7.5);
345 // only proceed if histograms are defined
346 if (!m_hHistCutPre or !m_hHistCut)
347 return;
348
349 m_hHistCutPre->GetXaxis()->SetBinLabel(1,"!VeryLoose");
350 m_hHistCutPre->GetXaxis()->SetBinLabel(2,"VeryLoose");
351 m_hHistCutPre->GetXaxis()->SetBinLabel(3,"!Loose");
352 m_hHistCutPre->GetXaxis()->SetBinLabel(4,"Loose");
353 m_hHistCutPre->GetXaxis()->SetBinLabel(5,"!Medium");
354 m_hHistCutPre->GetXaxis()->SetBinLabel(6,"Medium");
355 m_hHistCutPre->GetXaxis()->SetBinLabel(7,"!Tight");
356 m_hHistCutPre->GetXaxis()->SetBinLabel(8,"Tight");
357 m_hHistCut->GetXaxis()->SetBinLabel(1,"!VeryLoose");
358 m_hHistCut->GetXaxis()->SetBinLabel(2,"VeryLoose");
359 m_hHistCut->GetXaxis()->SetBinLabel(3,"!Loose");
360 m_hHistCut->GetXaxis()->SetBinLabel(4,"Loose");
361 m_hHistCut->GetXaxis()->SetBinLabel(5,"!Medium");
362 m_hHistCut->GetXaxis()->SetBinLabel(6,"Medium");
363 m_hHistCut->GetXaxis()->SetBinLabel(7,"!Tight");
364 m_hHistCut->GetXaxis()->SetBinLabel(8,"Tight");
365}
TauSelectionCut(const std::string &sName, TauAnalysisTools::TauSelectionTool *tTST)
TH1F * CreateControlPlot(const char *sName, const char *sTitle, int iBins, double dXLow, double dXUp)

Member Function Documentation

◆ accept()

bool TauSelectionCutJetIDWP::accept ( const xAOD::TauJet & xTau,
asg::AcceptData & accept )
overridevirtual

Implements TauAnalysisTools::TauSelectionCut.

Definition at line 394 of file TauSelectionCuts.cxx.

396{
397 // check Jet ID working point, if tau passes JetID working point then return true; false otherwise
398 bool bPass = false;
399 switch (m_tTST->m_iJetIDWP)
400 {
401 case JETIDNONE:
402 bPass = true;
403 break;
406 break;
407 case JETIDRNNLOOSE:
408 if (xTau.isTau(xAOD::TauJetParameters::JetRNNSigLoose)) bPass = true;
409 break;
410 case JETIDRNNMEDIUM:
411 if (xTau.isTau(xAOD::TauJetParameters::JetRNNSigMedium)) bPass = true;
412 break;
413 case JETIDRNNTIGHT:
414 if (xTau.isTau(xAOD::TauJetParameters::JetRNNSigTight)) bPass = true;
415 break;
417 static const SG::ConstAccessor<char> acc_gnTauVeryLoose("GNTauVL_v0prune");
418 if (!acc_gnTauVeryLoose.isAvailable(xTau)) m_tTST->msg() << MSG::WARNING << "GnTau VeryLoose WP not available" << endmsg;
419 else bPass = acc_gnTauVeryLoose(xTau);
420 break;
421 case JETIDGNTAULOOSE:
422 static const SG::ConstAccessor<char> acc_gnTauLoose("GNTauL_v0prune");
423 if (!acc_gnTauLoose.isAvailable(xTau)) m_tTST->msg() << MSG::WARNING << "GnTau Loose WP not available" << endmsg;
424 else bPass = acc_gnTauLoose(xTau);
425 break;
426 case JETIDGNTAUMEDIUM:
427 static const SG::ConstAccessor<char> acc_gnTauMedium("GNTauM_v0prune");
428 if (!acc_gnTauMedium.isAvailable(xTau)) m_tTST->msg() << MSG::WARNING << "GnTau Medium WP not available" << endmsg;
429 else bPass = acc_gnTauMedium(xTau);
430 break;
431 case JETIDGNTAUTIGHT:
432 static const SG::ConstAccessor<char> acc_gnTauTight("GNTauT_v0prune");
433 if (!acc_gnTauTight.isAvailable(xTau)) m_tTST->msg() << MSG::WARNING << "GnTau Tight WP not available" << endmsg;
434 else bPass = acc_gnTauTight(xTau);
435 break;
436 default:
437 m_tTST->msg() << MSG::WARNING << "The jet ID working point with the enum " << m_tTST->m_iJetIDWP << " is not available" << endmsg;
438 break;
439 }
440 if (bPass)
441 {
442 acceptData.setCutResult( "JetIDWP", true );
443 return true;
444 }
445 m_tTST->msg() << MSG::VERBOSE << "Tau failed JetIDWP requirement, tau transformed RNN score: " << xTau.discriminant(xAOD::TauJetParameters::RNNJetScoreSigTrans) << endmsg;
446 return false;
447}
#define endmsg
double discriminant(TauJetParameters::TauID discID) const
Get value of discriminant.
bool isTau(TauJetParameters::IsTauFlag flag) const
Get Flag for tau acceptance based on predefined arbitrary criteria.
@ RNNJetScoreSigTrans
RNN score which is signal transformed/flattened.
Definition TauDefs.h:92

◆ CreateControlPlot()

TH1F * TauSelectionCut::CreateControlPlot ( const char * sName,
const char * sTitle,
int iBins,
double dXLow,
double dXUp )
inherited

Definition at line 44 of file TauSelectionCuts.cxx.

45{
46 if (m_tTST->m_bCreateControlPlots)
47 {
48 TH1F* hHist = new TH1F(sName, sTitle, iBins, dXLow, dXUp);
49 hHist->SetDirectory(0);
50 return hHist;
51 }
52
53 return nullptr;
54}
TH1F(name, title, nxbins, bins_par2, bins_par3=None, path='', **kwargs)

◆ declareProperty()

void TauSelectionCut::declareProperty ( const std::string & name,
std::string & loc )
protectedinherited

Definition at line 79 of file TauSelectionCuts.cxx.

80{
81 std::pair<std::string, std::string&> p(name, loc);
82 m_mProperties.insert(p);
83}
std::map< std::string, std::string & > m_mProperties

◆ fillHistogram()

void TauSelectionCutJetIDWP::fillHistogram ( const xAOD::TauJet & xTau,
TH1F & hHist ) const
overrideprivatevirtual

Implements TauAnalysisTools::TauSelectionCut.

Definition at line 368 of file TauSelectionCuts.cxx.

369{
370 if(m_tTST->m_useGNTau){
371 static const SG::ConstAccessor<char> acc_gnTauVeryLoose("GNTauVL_v0prune");
372 static const SG::ConstAccessor<char> acc_gnTauLoose("GNTauL_v0prune");
373 static const SG::ConstAccessor<char> acc_gnTauMedium("GNTauM_v0prune");
374 static const SG::ConstAccessor<char> acc_gnTauTight("GNTauT_v0prune");
375 hHist.Fill(acc_gnTauVeryLoose(xTau));
376 hHist.Fill(acc_gnTauLoose(xTau)+2);
377 hHist.Fill(acc_gnTauMedium(xTau)+4);
378 hHist.Fill(acc_gnTauTight(xTau)+6);
379 } else {
384 }
385}

◆ fillHistogramCut()

void TauSelectionCut::fillHistogramCut ( const xAOD::TauJet & xTau)
inherited

Definition at line 63 of file TauSelectionCuts.cxx.

64{
66}
virtual void fillHistogram(const xAOD::TauJet &xTau, TH1F &hHist) const =0

◆ fillHistogramCutPre()

void TauSelectionCut::fillHistogramCutPre ( const xAOD::TauJet & xTau)
inherited

Definition at line 57 of file TauSelectionCuts.cxx.

58{
60}

◆ getName()

const std::string & TauAnalysisTools::TauSelectionCut::getName ( )
inlineinherited

Definition at line 42 of file TauSelectionCuts.h.

43 {
44 return m_sName;
45 };

◆ getProperty()

std::string TauSelectionCut::getProperty ( const std::string & name)
protectedinherited

Definition at line 86 of file TauSelectionCuts.cxx.

87{
88 std::map<std::string, std::string&>::iterator it = m_mProperties.find(name);
89 if(it == m_mProperties.end() )
90 throw std::runtime_error (("Undeclared property: " + name + "\n").c_str());
91
92 return it->second;
93}

◆ setAcceptInfo()

void TauSelectionCutJetIDWP::setAcceptInfo ( asg::AcceptInfo & info) const
overridevirtual

Implements TauAnalysisTools::TauSelectionCut.

Definition at line 388 of file TauSelectionCuts.cxx.

389{
390 info.addCut( "JetIDWP",
391 "Selection of taus according to their JetIDScore" );
392}

◆ setProperty()

void TauSelectionCut::setProperty ( const std::string & name,
const std::string & value )
inherited

Definition at line 70 of file TauSelectionCuts.cxx.

71{
72 std::map<std::string, std::string&>::iterator it = m_mProperties.find(name);
73 if(it == m_mProperties.end() )
74 throw std::runtime_error (("Undeclared property: " + name + "\n").c_str());
75 it->second = value;
76}

◆ writeControlHistograms()

void TauSelectionCut::writeControlHistograms ( )
inherited

Definition at line 37 of file TauSelectionCuts.cxx.

38{
39 m_hHistCutPre->Write();
40 m_hHistCut->Write();
41}

Member Data Documentation

◆ m_hHistCut

TH1F* TauAnalysisTools::TauSelectionCut::m_hHistCut
protectedinherited

Definition at line 53 of file TauSelectionCuts.h.

◆ m_hHistCutPre

TH1F* TauAnalysisTools::TauSelectionCut::m_hHistCutPre
protectedinherited

Definition at line 52 of file TauSelectionCuts.h.

◆ m_mProperties

std::map<std::string, std::string&> TauAnalysisTools::TauSelectionCut::m_mProperties
protectedinherited

Definition at line 58 of file TauSelectionCuts.h.

◆ m_sName

std::string TauAnalysisTools::TauSelectionCut::m_sName
protectedinherited

Definition at line 50 of file TauSelectionCuts.h.

◆ m_tTST

TauSelectionTool* TauAnalysisTools::TauSelectionCut::m_tTST
protectedinherited

Definition at line 55 of file TauSelectionCuts.h.


The documentation for this class was generated from the following files: