All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
RunRecordDataSvc.cpp
Go to the documentation of this file.
1 //====================================================================
2 // RunRecordDataSvc.cpp
3 //--------------------------------------------------------------------
4 //
5 // Package : System ( The LHCb Offline System)
6 //
7 // Description: implementation of the Transient event data service.
8 //
9 // Author : M.Frank
10 // History :
11 // +---------+----------------------------------------------+---------
12 // | Date | Comment | Who
13 // +---------+----------------------------------------------+---------
14 // | 10/12/08| Initial version | MF
15 // +---------+----------------------------------------------+---------
16 //
17 //====================================================================
18 #define DATASVC_RUNRECORDDATASVC_CPP
19 
20 #include "RecordDataSvc.h"
21 
39  public:
40 
42  RunRecordDataSvc(const std::string& nam, ISvcLocator* svc) : RecordDataSvc(nam,svc) {
43  m_cnvSvc = nullptr;
44  m_rootName = "/RunRecords";
45  m_incidentName = "NEW_RUN_RECORD";
46  m_saveIncidentName = "SAVE_RUN_RECORD";
47  m_persSvcName = "PersistencySvc/RecordPersistencySvc";
48  }
49 
51  ~RunRecordDataSvc() override = default;
52 
53 };
54 
55 // Instantiation of a static factory class used by clients to create instances of this service
57 
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
Gaudi::Property< std::string > m_rootName
Definition: DataSvc.h:57
Gaudi::Property< std::string > m_saveIncidentName
Definition: RecordDataSvc.h:50
A RecordDataSvc is the base class for event services.
Definition: RecordDataSvc.h:24
#define DECLARE_COMPONENT(type)
Definition: PluginService.h:36
STL class.
A RunRecordDataSvc is the base class for event services.
~RunRecordDataSvc() override=default
Standard Destructor.
RunRecordDataSvc(const std::string &nam, ISvcLocator *svc)
Standard Constructor.
Gaudi::Property< std::string > m_incidentName
Definition: RecordDataSvc.h:48
Gaudi::Property< std::string > m_persSvcName
Definition: RecordDataSvc.h:51
SmartIF< IConversionSvc > m_cnvSvc
Reference to the main data conversion service.
Definition: RecordDataSvc.h:57