ATLAS Offline Software
UnitTestAlg7.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 #ifndef EVENT_LOOP_UNIT_TEST_ALG7_H
6 #define EVENT_LOOP_UNIT_TEST_ALG7_H
7 
8 #include <EventLoopTest/Global.h>
9 
11 
12 namespace EL
13 {
16 
17  class UnitTestAlg7 final : public AnaAlgorithm
18  {
19  //
20  // public interface
21  //
22 
23  public:
24  UnitTestAlg7 (const std::string& name,
25  ISvcLocator* pSvcLocator);
26 
27 
28 
29  //
30  // interface inherited from Algorithm
31  //
32 
33  private:
34  virtual ::StatusCode initialize () override;
35 
36  private:
37  virtual ::StatusCode execute () override;
38 
39  private:
40  virtual ::StatusCode finalize () override;
41 
42 
43 
44  //
45  // private interface
46  //
47  };
48 }
49 
50 #endif
EL::UnitTestAlg7::initialize
virtual ::StatusCode initialize() override
Definition: UnitTestAlg7.cxx:30
EL::UnitTestAlg7::execute
virtual ::StatusCode execute() override
Definition: UnitTestAlg7.cxx:39
EL::UnitTestAlg7::UnitTestAlg7
UnitTestAlg7(const std::string &name, ISvcLocator *pSvcLocator)
Definition: UnitTestAlg7.cxx:21
AnaAlgorithm.h
EL::AnaAlgorithm
the (new) base class for EventLoop algorithms
Definition: AnaAlgorithm.h:73
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
EL
This module defines the arguments passed from the BATCH driver to the BATCH worker.
Definition: AlgorithmWorkerData.h:24
EL::UnitTestAlg7::finalize
virtual ::StatusCode finalize() override
Definition: UnitTestAlg7.cxx:47
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
Global.h
EL::UnitTestAlg7
a AnaAlgorithm for testing the configuration on the worker node
Definition: UnitTestAlg7.h:18