The Gaudi Framework  master (181af51f)
Loading...
Searching...
No Matches
AppMgrRunable.h
Go to the documentation of this file.
1/***********************************************************************************\
2* (c) Copyright 1998-2025 CERN for the benefit of the LHCb and ATLAS collaborations *
3* *
4* This software is distributed under the terms of the Apache version 2 licence, *
5* copied verbatim in the file "LICENSE". *
6* *
7* In applying this licence, CERN does not waive the privileges and immunities *
8* granted to it by virtue of its status as an Intergovernmental Organization *
9* or submit itself to any jurisdiction. *
10\***********************************************************************************/
11#pragma once
12
14#include <GaudiKernel/Service.h>
15
16class IAppMgrUI;
17
35class AppMgrRunable : public extends<Service, IRunable> {
36protected:
39 Gaudi::Property<int> m_evtMax{ this, "EvtMax", 0xFEEDBABE, "number of events to be processed" };
40
41public:
43 using extends::extends;
44
46 StatusCode initialize() override;
48 StatusCode start() override;
50 StatusCode stop() override;
52 StatusCode finalize() override;
54 StatusCode run() override;
55};
Class definition of AppMgrRunable.
StatusCode initialize() override
IService implementation: initialize the service.
StatusCode finalize() override
IService implementation: finalize the service.
Gaudi::Property< int > m_evtMax
StatusCode start() override
IService implementation: start the service.
StatusCode run() override
IRunable implementation : Run the class implementation.
IAppMgrUI * m_appMgrUI
Reference to application manager UI.
StatusCode stop() override
IService implementation: stop the service.
Implementation of property with value of concrete type.
Definition PropertyFwd.h:27
Application Manager User Interface.
Definition IAppMgrUI.h:31
This class is used for returning status codes from appropriate routines.
Definition StatusCode.h:64
Base class used to extend a class implementing other interfaces.
Definition extends.h:19