#include <TauSelectionCuts.h>
Definition at line 65 of file TauSelectionCuts.h.
◆ TauSelectionCutPt()
◆ accept()
Implements TauAnalysisTools::TauSelectionCut.
Definition at line 118 of file TauSelectionCuts.cxx.
120{
121
122 double pt = xTau.
pt() / 1000.;
123
124 if (
m_tTST->m_vPtRegion.size() == 1)
125 {
126 if ( pt >=
m_tTST->m_vPtRegion.at(0) )
127 {
128 acceptData.setCutResult( "Pt", true );
129 return true;
130 }
131 }
132 unsigned int iNumPtRegion =
m_tTST->m_vPtRegion.size()/2;
133 for( unsigned int iPtRegion = 0; iPtRegion < iNumPtRegion; iPtRegion++ )
134 {
135 if ( pt >=
m_tTST->m_vPtRegion.at(iPtRegion*2) and pt <= m_tTST->m_vPtRegion.at(iPtRegion*2+1))
136 {
137 acceptData.setCutResult( "Pt", true );
138 return true;
139 }
140 }
141 m_tTST->msg() << MSG::VERBOSE <<
"Tau failed pt requirement, tau pt [GeV]: " <<
pt <<
endmsg;
142 return false;
143}
virtual double pt() const
The transverse momentum ( ) of the particle.
◆ 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 |
◆ fillHistogram()
| void TauSelectionCutPt::fillHistogram |
( |
const xAOD::TauJet & | xTau, |
|
|
TH1F & | hHist ) const |
|
overrideprivatevirtual |
◆ fillHistogramCut()
| void TauSelectionCut::fillHistogramCut |
( |
const xAOD::TauJet & | xTau | ) |
|
|
inherited |
◆ fillHistogramCutPre()
| void TauSelectionCut::fillHistogramCutPre |
( |
const xAOD::TauJet & | xTau | ) |
|
|
inherited |
◆ getName()
| const std::string & TauAnalysisTools::TauSelectionCut::getName |
( |
| ) |
|
|
inlineinherited |
◆ 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);
90 throw std::runtime_error (("Undeclared property: " + name + "\n").c_str());
91
93}
◆ setAcceptInfo()
◆ 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);
74 throw std::runtime_error (("Undeclared property: " + name + "\n").c_str());
76}
◆ writeControlHistograms()
| void TauSelectionCut::writeControlHistograms |
( |
| ) |
|
|
inherited |
◆ m_hHistCut
| TH1F* TauAnalysisTools::TauSelectionCut::m_hHistCut |
|
protectedinherited |
◆ m_hHistCutPre
| TH1F* TauAnalysisTools::TauSelectionCut::m_hHistCutPre |
|
protectedinherited |
◆ m_mProperties
| std::map<std::string, std::string&> TauAnalysisTools::TauSelectionCut::m_mProperties |
|
protectedinherited |
◆ m_sName
| std::string TauAnalysisTools::TauSelectionCut::m_sName |
|
protectedinherited |
◆ m_tTST
The documentation for this class was generated from the following files: