ATLAS Offline Software
Loading...
Searching...
No Matches
JetHistoTriggEfficiency Class Reference

#include <JetHistoTriggEfficiency.h>

Inheritance diagram for JetHistoTriggEfficiency:
Collaboration diagram for JetHistoTriggEfficiency:

Public Member Functions

 JetHistoTriggEfficiency (const std::string &type, const std::string &name, const IInterface *parent)
virtual ~JetHistoTriggEfficiency ()
virtual StatusCode initialize ()
virtual StatusCode processJetContainer (const JetMonitoringAlg &parentAlg, const xAOD::JetContainer &jets, const EventContext &ctx) const
ServiceHandle< StoreGateSvc > & evtStore ()
 The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.
const ServiceHandle< StoreGateSvc > & detStore () const
 The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.
virtual StatusCode sysInitialize () override
 Perform system initialization for an algorithm.
virtual StatusCode sysStart () override
 Handle START transition.
virtual std::vector< Gaudi::DataHandle * > inputHandles () const override
 Return this algorithm's input handles.
virtual std::vector< Gaudi::DataHandle * > outputHandles () const override
 Return this algorithm's output handles.
Gaudi::Details::PropertyBase & declareProperty (Gaudi::Property< T, V, H > &t)
void updateVHKA (Gaudi::Details::PropertyBase &)
MsgStream & msg () const
bool msgLvl (const MSG::Level lvl) const

Static Public Member Functions

static const InterfaceID & interfaceID ()

Protected Member Functions

void renounceArray (SG::VarHandleKeyArray &handlesArray)
 remove all handles from I/O resolution
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce (T &h)
void extraDeps_update_handler (Gaudi::Details::PropertyBase &ExtraDeps)
 Add StoreName to extra input/output deps as needed.

Private Types

typedef ServiceHandle< StoreGateSvcStoreGateSvc_t

Private Member Functions

Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

Gaudi::Property< std::string > m_group {this,"Group", "undefined"}
Gaudi::Property< std::string > m_probeTrigChain {this, "ProbeTrigChain", "_undefined_"}
Gaudi::Property< size_t > m_jetIndex {this, "Index",0}
Gaudi::Property< bool > m_sortJets {this,"SortJets", false}
ToolHandle< IJetSelectorm_selectTool
ToolHandle< IJetHistoVarToolm_jetVar
StoreGateSvc_t m_evtStore
 Pointer to StoreGate (event store by default)
StoreGateSvc_t m_detStore
 Pointer to StoreGate (detector store by default)
std::vector< SG::VarHandleKeyArray * > m_vhka
bool m_varHandleArraysDeclared

Detailed Description

Definition at line 19 of file JetHistoTriggEfficiency.h.

Member Typedef Documentation

◆ StoreGateSvc_t

typedef ServiceHandle<StoreGateSvc> AthCommonDataStore< AthCommonMsg< AlgTool > >::StoreGateSvc_t
privateinherited

Definition at line 388 of file AthCommonDataStore.h.

Constructor & Destructor Documentation

◆ JetHistoTriggEfficiency()

JetHistoTriggEfficiency::JetHistoTriggEfficiency ( const std::string & type,
const std::string & name,
const IInterface * parent )

Definition at line 11 of file JetHistoTriggEfficiency.cxx.

11 :
12 AthAlgTool( type, name, parent )
13 , m_selectTool(this)
14 , m_jetVar(this)
15{
16 declareInterface<IJetHistoFiller>(this);
17
18 declareProperty("Selector",m_selectTool);
20
21}
AthAlgTool()
Default constructor:
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)
ToolHandle< IJetSelector > m_selectTool
ToolHandle< IJetHistoVarTool > m_jetVar

◆ ~JetHistoTriggEfficiency()

virtual JetHistoTriggEfficiency::~JetHistoTriggEfficiency ( )
inlinevirtual

Definition at line 22 of file JetHistoTriggEfficiency.h.

22{}

Member Function Documentation

◆ declareGaudiProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< AlgTool > >::declareGaudiProperty ( Gaudi::Property< T, V, H > & hndl,
const SG::VarHandleKeyType &  )
inlineprivateinherited

specialization for handling Gaudi::Property<SG::VarHandleKey>

Definition at line 156 of file AthCommonDataStore.h.

158 {
160 hndl.value(),
161 hndl.documentation());
162
163 }

◆ declareProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< AlgTool > >::declareProperty ( Gaudi::Property< T, V, H > & t)
inlineinherited

Definition at line 145 of file AthCommonDataStore.h.

145 {
146 typedef typename SG::HandleClassifier<T>::type htype;
148 }
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>

◆ detStore()

const ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< AlgTool > >::detStore ( ) const
inlineinherited

The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 95 of file AthCommonDataStore.h.

◆ evtStore()

ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< AlgTool > >::evtStore ( )
inlineinherited

The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 85 of file AthCommonDataStore.h.

◆ extraDeps_update_handler()

void AthCommonDataStore< AthCommonMsg< AlgTool > >::extraDeps_update_handler ( Gaudi::Details::PropertyBase & ExtraDeps)
protectedinherited

Add StoreName to extra input/output deps as needed.

use the logic of the VarHandleKey to parse the DataObjID keys supplied via the ExtraInputs and ExtraOuputs Properties to add the StoreName if it's not explicitly given

◆ initialize()

StatusCode JetHistoTriggEfficiency::initialize ( )
virtual

Definition at line 24 of file JetHistoTriggEfficiency.cxx.

24 {
25 ATH_MSG_INFO(" initialize " );
26
27 if(m_selectTool.isEnabled()){
28 ATH_CHECK(m_selectTool.retrieve());
29 ATH_MSG_INFO( " pre-select jets with "<< m_selectTool->name() );
30 } else {m_selectTool.disable();}
31
32 ATH_CHECK(m_jetVar.retrieve());
33
34 return StatusCode::SUCCESS;
35}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_INFO(x)

◆ inputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< AlgTool > >::inputHandles ( ) const
overridevirtualinherited

Return this algorithm's input handles.

We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.

◆ interfaceID()

const InterfaceID & IJetHistoFiller::interfaceID ( )
inlinestaticinherited

Definition at line 28 of file IJetHistoFiller.h.

28{ return IID_IJetHistoFiller; }
static const InterfaceID IID_IJetHistoFiller("IJetHistoFiller", 1, 0)

◆ msg()

MsgStream & AthCommonMsg< AlgTool >::msg ( ) const
inlineinherited

Definition at line 24 of file AthCommonMsg.h.

24 {
25 return this->msgStream();
26 }

◆ msgLvl()

bool AthCommonMsg< AlgTool >::msgLvl ( const MSG::Level lvl) const
inlineinherited

Definition at line 30 of file AthCommonMsg.h.

30 {
31 return this->msgLevel(lvl);
32 }

◆ outputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< AlgTool > >::outputHandles ( ) const
overridevirtualinherited

Return this algorithm's output handles.

We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.

◆ processJetContainer()

StatusCode JetHistoTriggEfficiency::processJetContainer ( const JetMonitoringAlg & parentAlg,
const xAOD::JetContainer & jets,
const EventContext & ctx ) const
virtual

Implements IJetHistoFiller.

Definition at line 37 of file JetHistoTriggEfficiency.cxx.

37 {
38 if(jets.empty()) return StatusCode::SUCCESS;
39
40 // we assume this tool is invoked in an alg selecting a reference trigger.
41 ATH_MSG_DEBUG(" working on "<< m_probeTrigChain);
42 // check our probe trigger is enabled
43 static const SG::AuxElement::ConstAccessor< std::vector< std::string > > acc_disabledTriggers("disabledTriggers");
44 auto eventInfo = parentAlg.GetEventInfo(ctx);
45 if( acc_disabledTriggers.isAvailable( *eventInfo ) ) {
46 const std::vector<std::string> & disabledTriggers = acc_disabledTriggers( *eventInfo );
47 for( const std::string & s: disabledTriggers ) if (s==m_probeTrigChain) return StatusCode::SUCCESS;
48 }
49
50 // check trigger bits
51 const unsigned int probeBits = parentAlg.isPassedBits(m_probeTrigChain);
52
53
54 // disable the L1 test for probe chains with 'noalg' in the chain name
55 // such chains have no HLT cuts, so requiring L1 to pass results in 100% efficiency.
56 std::string sprob = m_probeTrigChain;
57 bool noalg = sprob.find("noalg") != std::string::npos;
58
59 if(!(probeBits & TrigDefs::L1_isPassedAfterVeto) and !noalg) return StatusCode::SUCCESS;
60 if( (probeBits & TrigDefs::EF_prescaled) ) return StatusCode::SUCCESS;
61
62
63 // Find the probe jet.
64 // --> choose the nth jet passing the pre-selection (where n=m_jetIndex)
65 const xAOD::Jet* probeJet = nullptr;
66 size_t npassed=0;
67 bool doJetSelect = m_selectTool.isEnabled();
68 if (!m_sortJets) {
69 for(const xAOD::Jet* j: jets){
70 if( doJetSelect && !m_selectTool->keep(*j) ) continue;
71 if(npassed==m_jetIndex) {probeJet = j; break; } // found !
72 npassed++;
73 }
74 } else { //first sort jets according to variable passed, then select the nth jet from the sorted container
75 std::list<const xAOD::Jet*> tmpList;
76 for(const xAOD::Jet* j: jets){
77 if( doJetSelect && !m_selectTool->keep(*j) ) continue;
78 tmpList.push_back(j);
79 }
80 auto sort = [this] (const xAOD::Jet * j1, const xAOD::Jet * j2) {return m_jetVar->value(*j1) > m_jetVar->value(*j2); } ;
81 tmpList.sort( sort );
82 for(const xAOD::Jet* j : tmpList ) {
83 if(npassed==m_jetIndex) {probeJet = j; break; } // found !
84 npassed++;
85 }
86 }
87
88 if(probeJet ==nullptr) return StatusCode::SUCCESS;
89
90 // trigger passed ?
91
92 bool trigPassed = parentAlg.isPassed(m_probeTrigChain);
93 ATH_MSG_DEBUG( " trigPassed "<< trigPassed << " " << m_jetVar->value(*probeJet) );
94 // ask the framework to fill our TEfficiency
95 auto trigpassS= Monitored::Scalar<bool>("trigPassed",trigPassed);
96
97 auto jetVarS= Monitored::Scalar<float>("jetVar",
98 m_jetVar->value(*probeJet) );
99
100 parentAlg.fill(m_group,trigpassS, jetVarS );
101
102 return StatusCode::SUCCESS;
103}
#define ATH_MSG_DEBUG(x)
void sort(typename DataModel_detail::iterator< DVL > beg, typename DataModel_detail::iterator< DVL > end)
Specialization of sort for DataVector/List.
SG::ReadHandle< xAOD::EventInfo > GetEventInfo(const EventContext &) const
Return a ReadHandle for an EventInfo object (get run/event numbers, etc.)
Gaudi::Property< std::string > m_probeTrigChain
Gaudi::Property< bool > m_sortJets
Gaudi::Property< std::string > m_group
Gaudi::Property< size_t > m_jetIndex
unsigned int isPassedBits(const std::string &c) const
bool isPassed(const std::string &c) const
SG::ConstAccessor< T, ALLOC > ConstAccessor
Definition AuxElement.h:569
void fill(const ToolHandle< GenericMonitoringTool > &groupHandle, std::vector< std::reference_wrapper< Monitored::IMonitoredVariable > > &&variables) const
Fills a vector of variables to a group by reference.
Jet_v1 Jet
Definition of the current "jet version".

◆ renounce()

std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > AthCommonDataStore< AthCommonMsg< AlgTool > >::renounce ( T & h)
inlineprotectedinherited

Definition at line 380 of file AthCommonDataStore.h.

381 {
382 h.renounce();
384 }
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce(T &h)

◆ renounceArray()

void AthCommonDataStore< AthCommonMsg< AlgTool > >::renounceArray ( SG::VarHandleKeyArray & handlesArray)
inlineprotectedinherited

remove all handles from I/O resolution

Definition at line 364 of file AthCommonDataStore.h.

364 {
366 }

◆ sysInitialize()

virtual StatusCode AthCommonDataStore< AthCommonMsg< AlgTool > >::sysInitialize ( )
overridevirtualinherited

Perform system initialization for an algorithm.

We override this to declare all the elements of handle key arrays at the end of initialization. See comments on updateVHKA.

Reimplemented in asg::AsgMetadataTool, AthCheckedComponent< AthAlgTool >, AthCheckedComponent<::AthAlgTool >, and DerivationFramework::CfAthAlgTool.

◆ sysStart()

virtual StatusCode AthCommonDataStore< AthCommonMsg< AlgTool > >::sysStart ( )
overridevirtualinherited

Handle START transition.

We override this in order to make sure that conditions handle keys can cache a pointer to the conditions container.

◆ updateVHKA()

void AthCommonDataStore< AthCommonMsg< AlgTool > >::updateVHKA ( Gaudi::Details::PropertyBase & )
inlineinherited

Definition at line 308 of file AthCommonDataStore.h.

308 {
309 // debug() << "updateVHKA for property " << p.name() << " " << p.toString()
310 // << " size: " << m_vhka.size() << endmsg;
311 for (auto &a : m_vhka) {
313 for (auto k : keys) {
314 k->setOwner(this);
315 }
316 }
317 }
std::vector< SG::VarHandleKeyArray * > m_vhka

Member Data Documentation

◆ m_detStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< AlgTool > >::m_detStore
privateinherited

Pointer to StoreGate (detector store by default)

Definition at line 393 of file AthCommonDataStore.h.

◆ m_evtStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< AlgTool > >::m_evtStore
privateinherited

Pointer to StoreGate (event store by default)

Definition at line 390 of file AthCommonDataStore.h.

◆ m_group

Gaudi::Property<std::string> JetHistoTriggEfficiency::m_group {this,"Group", "undefined"}
private

Definition at line 31 of file JetHistoTriggEfficiency.h.

31{this,"Group", "undefined"};

◆ m_jetIndex

Gaudi::Property<size_t> JetHistoTriggEfficiency::m_jetIndex {this, "Index",0}
private

Definition at line 33 of file JetHistoTriggEfficiency.h.

33{this, "Index",0};

◆ m_jetVar

ToolHandle<IJetHistoVarTool> JetHistoTriggEfficiency::m_jetVar
private

Definition at line 36 of file JetHistoTriggEfficiency.h.

◆ m_probeTrigChain

Gaudi::Property<std::string> JetHistoTriggEfficiency::m_probeTrigChain {this, "ProbeTrigChain", "_undefined_"}
private

Definition at line 32 of file JetHistoTriggEfficiency.h.

32{this, "ProbeTrigChain", "_undefined_"};

◆ m_selectTool

ToolHandle<IJetSelector> JetHistoTriggEfficiency::m_selectTool
private

Definition at line 35 of file JetHistoTriggEfficiency.h.

◆ m_sortJets

Gaudi::Property<bool> JetHistoTriggEfficiency::m_sortJets {this,"SortJets", false}
private

Definition at line 34 of file JetHistoTriggEfficiency.h.

34{this,"SortJets", false};

◆ m_varHandleArraysDeclared

bool AthCommonDataStore< AthCommonMsg< AlgTool > >::m_varHandleArraysDeclared
privateinherited

Definition at line 399 of file AthCommonDataStore.h.

◆ m_vhka

std::vector<SG::VarHandleKeyArray*> AthCommonDataStore< AthCommonMsg< AlgTool > >::m_vhka
privateinherited

Definition at line 398 of file AthCommonDataStore.h.


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