ATLAS Offline Software
Loading...
Searching...
No Matches
METRecoAlg.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3*/
4
5// METRecoAlg.h
6
7#ifndef METRecoAlg_H
8#define METRecoAlg_H
9
11#include "GaudiKernel/ToolHandle.h"
12
13class IMETRecoTool;
14
15namespace met {
17
18 public:
19
21 METRecoAlg(const std::string& name, ISvcLocator* pSvcLocator);
22
25
27 virtual StatusCode initialize() override;
28 virtual StatusCode execute(const EventContext& ctx) const override;
29 virtual StatusCode finalize() override;
30
31 private:
32
35
36 private:
37
39 ToolHandleArray<IMETRecoTool> m_recotools;
40
41 };
42
43}
44
45#endif
An algorithm that can be simultaneously executed in multiple threads.
virtual StatusCode execute(const EventContext &ctx) const override
ToolHandleArray< IMETRecoTool > m_recotools
Athena configured tools.
Definition METRecoAlg.h:39
METRecoAlg()
Default constructor:
METRecoAlg(const std::string &name, ISvcLocator *pSvcLocator)
Constructor with parameters:
virtual StatusCode finalize() override
~METRecoAlg()
Destructor:
virtual StatusCode initialize() override
Athena algorithm's Hooks.