The Gaudi Framework  master (37c0b60a)
EvtDataSvc.h
Go to the documentation of this file.
1 /***********************************************************************************\
2 * (c) Copyright 1998-2024 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 #ifndef DATASVC_EVTDATASVC_H
12 #define DATASVC_EVTDATASVC_H
13 
14 #include <GaudiKernel/DataSvc.h>
16 
23 class EvtDataSvc : public DataSvc {
24 public:
25  using DataSvc::DataSvc;
26  StatusCode initialize() override;
27  StatusCode reinitialize() override;
28  StatusCode finalize() override;
29 
30 private:
32 };
33 #endif // DATASVC_EVTDATASVC_H
DataSvc::DataSvc
DataSvc(const DataSvc &)=delete
copy constructor disabled
EvtDataSvc::initialize
StatusCode initialize() override
Service initialisation.
Definition: EvtDataSvc.cpp:40
EvtDataSvc::reinitialize
StatusCode reinitialize() override
Service reinitialisation.
Definition: EvtDataSvc.cpp:50
EvtDataSvc::finalize
StatusCode finalize() override
Service finalization.
Definition: EvtDataSvc.cpp:55
StatusCode
Definition: StatusCode.h:65
SmartIF< IConversionSvc >
EvtDataSvc
Definition: EvtDataSvc.h:23
DataSvc
Definition: DataSvc.h:52
IConversionSvc.h
DataSvc.h
EvtDataSvc::m_cnvSvc
SmartIF< IConversionSvc > m_cnvSvc
Definition: EvtDataSvc.h:31