ATLAS Offline Software
Loading...
Searching...
No Matches
TrigEventSelectionAlg.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
3*/
4
6
7#ifndef TRIGGER_ANALYSIS_ALGORITHMS__TRIG_EVENT_SELECTION_ALG_H
8#define TRIGGER_ANALYSIS_ALGORITHMS__TRIG_EVENT_SELECTION_ALG_H
9
11#include <AsgTools/ToolHandle.h>
15#include <AsgTools/PropertyWrapper.h> //Gaudi::Property
16#include <vector>
17#include <string>
18
19namespace CP
20{
22 {
23 public:
24 TrigEventSelectionAlg(const std::string &name,
25 ISvcLocator *svcLoc = nullptr);
26
27 virtual StatusCode initialize() final;
28 virtual StatusCode execute() final;
29 virtual StatusCode finalize() final;
30
31 private:
33 ToolHandle<Trig::ITrigDecisionTool> m_trigDecisionTool;
34
36 Gaudi::Property<std::vector<std::string>> m_trigList {this, "triggers", {}, "trigger selection list"};
37
39 Gaudi::Property<std::string> m_selectionDecoration {this, "selectionDecoration", "", "the decoration the trigger pass status"};
40
42 Gaudi::Property<bool> m_noFilter {this, "noFilter", false, "whether to not apply an event filter"};
43
45 Gaudi::Property<bool> m_noL1 {this, "noL1", false, "whether to not require L1 decision"};
46
48 std::vector<SG::Decorator<bool>> m_selectionAccessors;
49
51 FilterReporterParams m_filterParams {this, "TriggerEventSelection", "trigger event selection"};
52 };
53}
54
55#endif
virtual StatusCode initialize() final
ToolHandle< Trig::ITrigDecisionTool > m_trigDecisionTool
trigger decision tool handle
Gaudi::Property< bool > m_noFilter
whether to not apply an event filter
TrigEventSelectionAlg(const std::string &name, ISvcLocator *svcLoc=nullptr)
Gaudi::Property< bool > m_noL1
whether to not require L1 decision
Gaudi::Property< std::string > m_selectionDecoration
the decoration for trigger selection
FilterReporterParams m_filterParams
the filter reporter params
virtual StatusCode execute() final
std::vector< SG::Decorator< bool > > m_selectionAccessors
the accessors for m_selectionDecoration and m_trigList combination
virtual StatusCode finalize() final
Gaudi::Property< std::vector< std::string > > m_trigList
list of triggers or trigger chains
the (new) base class for EventLoop algorithms
a handle for applying algorithm filter decisions
Select isolated Photons, Electrons and Muons.