AppMgrRunable.h
Go to the documentation of this file.
1 #ifndef GAUDISVC_APPMGRRUNABLE_H
2 #define GAUDISVC_APPMGRRUNABLE_H 1
3 
4 // Framework includes
5 #include "GaudiKernel/Service.h"
6 #include "GaudiKernel/IRunable.h"
7 
8 // Forward declarations
9 class IAppMgrUI;
10 
28 class AppMgrRunable : public extends<Service,
29  IRunable> {
30 protected:
32  IAppMgrUI* m_appMgrUI = nullptr;
34  int m_evtMax;
35 
36 public:
38  AppMgrRunable(const std::string& nam, ISvcLocator* svcLoc);
40  ~AppMgrRunable() override = default;
41 
43  StatusCode initialize() override;
45  StatusCode start() override;
47  StatusCode stop() override;
49  StatusCode finalize() override;
51  StatusCode run() override;
52 };
53 #endif // GAUDISVC_APPMGRRUNABLE_H
StatusCode start() override
IService implementation: start the service.
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
Class definition of AppMgrRunable.
Definition: AppMgrRunable.h:28
StatusCode finalize() override
IService implementation: finalize the service.
int m_evtMax
Number of events to be processed.
Definition: AppMgrRunable.h:34
STL class.
AppMgrRunable(const std::string &nam, ISvcLocator *svcLoc)
Standard Constructor.
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
StatusCode run() override
IRunable implementation : Run the class implementation.
StatusCode stop() override
IService implementation: stop the service.
Application Manager User Interface.
Definition: IAppMgrUI.h:20
StatusCode initialize() override
IService implementation: initialize the service.
Base class used to extend a class implementing other interfaces.
Definition: extends.h:10
~AppMgrRunable() override=default
Standard Destructor.
IAppMgrUI * m_appMgrUI
Reference to application manager UI.
Definition: AppMgrRunable.h:32