ATLAS Offline Software
Loading...
Searching...
No Matches
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
Maintain a set of objects, one per slot.
Property holding a SG store/key/clid from which a ReadHandle is made.
HypoBase(const std::string &name, ISvcLocator *pSvcLocator)
constructor, to be called by sub-class constructors
Definition HypoBase.cxx:12
Property holding a SG store/key/clid from which a ReadHandle is made.
virtual StatusCode execute(const EventContext &context) const override
SG::ReadHandleKey< bool > m_noiseBurstDetected
virtual StatusCode initialize() override
ToolHandleArray< ITrigLArNoiseBurstHypoTool > m_hypoTools
TrigLArNoiseBurstAlg(const std::string &name, ISvcLocator *pSvcLocator)