ATLAS Offline Software
Loading...
Searching...
No Matches
CommonAugmentation.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef DERIVATIONFRAMEWORK_COMMONAUGMENTATION_H
6#define DERIVATIONFRAMEWORK_COMMONAUGMENTATION_H 1
7
8#include <string>
9#include <vector>
10#include <list>
11
13#include "GaudiKernel/ToolHandle.h"
14#include "GaudiKernel/ServiceHandle.h"
16#include "GaudiKernel/IChronoStatSvc.h"
17
18namespace DerivationFramework {
19
22
23 public:
24 CommonAugmentation (const std::string& name, ISvcLocator* pSvcLocator);
25 virtual StatusCode initialize() override;
26 virtual StatusCode execute(const EventContext& ctx) const override;
27 virtual StatusCode finalize() override;
28 private:
29 // Tools etc
30 PublicToolHandleArray<IAugmentationTool> m_augmentationTools{this, "AugmentationTools", {} };
31 ServiceHandle<IChronoStatSvc> m_chronoSvc{this, "ChronoStatSvc", "ChronoStatSvc"};
32
33 };
34
35} // end of namespace
36#endif
An algorithm that can be simultaneously executed in multiple threads.
virtual StatusCode execute(const EventContext &ctx) const override
ServiceHandle< IChronoStatSvc > m_chronoSvc
CommonAugmentation(const std::string &name, ISvcLocator *pSvcLocator)
virtual StatusCode initialize() override
PublicToolHandleArray< IAugmentationTool > m_augmentationTools
THE reconstruction tool.