ATLAS Offline Software
TrigLArNoiseBurstAlg.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3 */
4 #ifndef TRIGCALOHYPO_TRIGLARNOISEBURSTALG
5 #define TRIGCALOHYPO_TRIGLARNOISEBURSTALG
6 
7 #include <string>
8 #include <mutex>
9 
10 #include "GaudiKernel/ToolHandle.h"
18 
24  public:
25 
26  TrigLArNoiseBurstAlg( const std::string& name, ISvcLocator* pSvcLocator );
27 
28  virtual StatusCode initialize() override;
29  virtual StatusCode execute( const EventContext& context ) const override;
30 
31  private:
32  SG::ReadHandleKey<bool> m_noiseBurstDetected{this, "NoiseBurstKey", "HLT_NoiseBurst", "Flag which records if a noise burst was detected in the event"};
33  ToolHandleArray< ITrigLArNoiseBurstHypoTool > m_hypoTools { this, "HypoTools", {}, "Hypo tools" };
34 
35  std::string m_name_of_is;
36 };
37 #endif
ReadHandleKey.h
Property holding a SG store/key/clid from which a ReadHandle is made.
ITrigLArNoiseBurstHypoTool.h
TrigLArNoiseBurstAlg::execute
virtual StatusCode execute(const EventContext &context) const override
Definition: TrigLArNoiseBurstAlg.cxx:28
TrigLArNoiseBurstAlg::initialize
virtual StatusCode initialize() override
Definition: TrigLArNoiseBurstAlg.cxx:20
SG::ReadHandleKey< bool >
LArBadChannelCont.h
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
TrigLArNoiseBurstAlg
Implements LArNoiseBurst detection for the new HLT framework.
Definition: TrigLArNoiseBurstAlg.h:23
ReadCondHandleKey.h
TrigLArNoiseBurstAlg::m_name_of_is
std::string m_name_of_is
Definition: TrigLArNoiseBurstAlg.h:35
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
HypoBase
Hypothesis algorithms take the output of reco algorithms and the decision from the preceeding InputMa...
Definition: HypoBase.h:13
CaloCellContainer.h
HypoBase.h
SlotSpecificObj.h
Maintain a set of objects, one per slot.
TrigLArNoiseBurstAlg::TrigLArNoiseBurstAlg
TrigLArNoiseBurstAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition: TrigLArNoiseBurstAlg.cxx:15
TrigLArNoiseBurstAlg::m_noiseBurstDetected
SG::ReadHandleKey< bool > m_noiseBurstDetected
Definition: TrigLArNoiseBurstAlg.h:32
TrigLArNoiseBurstAlg::m_hypoTools
ToolHandleArray< ITrigLArNoiseBurstHypoTool > m_hypoTools
Definition: TrigLArNoiseBurstAlg.h:33