ATLAS Offline Software
IGlobalSimAlgTool.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef GLOBALSIM_IGLOBALSIMALGTOOL_H
6 #define GLOBALSIM_IGLOBALSIMALGTOOL_H
7 
8 #include "GaudiKernel/IAlgTool.h"
9 #include "GaudiKernel/EventContext.h"
10 
11 #include <string>
12 
13 // provide an pure abstract interface to AlgTools implementing
14 // GlobalSim Algs.
15 
16 namespace GlobalSim {
17  class IGlobalSimAlgTool : virtual public ::IAlgTool {
18 
19  public:
21  virtual ~IGlobalSimAlgTool() = default;
22 
23  virtual StatusCode run(const EventContext& ctx) const = 0;
24 
25  virtual std::string toString() const = 0;
26  };
27 
28 }
29 #endif
GlobalSim::IGlobalSimAlgTool::DeclareInterfaceID
DeclareInterfaceID(IGlobalSimAlgTool, 1, 0)
GlobalSim
AlgTool to obtain a selection of eFex RoIs read in from the event store.
Definition: dump.h:8
GlobalSim::IGlobalSimAlgTool::run
virtual StatusCode run(const EventContext &ctx) const =0
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
GlobalSim::IGlobalSimAlgTool::~IGlobalSimAlgTool
virtual ~IGlobalSimAlgTool()=default
GlobalSim::IGlobalSimAlgTool::toString
virtual std::string toString() const =0
GlobalSim::IGlobalSimAlgTool
Definition: IGlobalSimAlgTool.h:17