Loading [MathJax]/jax/output/HTML-CSS/config.js
The Gaudi Framework  v29r3 (fa547fc2)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
FileRecordDataSvc.cpp
Go to the documentation of this file.
1 //====================================================================
2 // FileRecordDataSvc.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_FILERECORDDATASVC_CPP
19 
20 #include "RecordDataSvc.h"
21 
39 {
40 public:
42  FileRecordDataSvc( const std::string& nam, ISvcLocator* svc ) : RecordDataSvc( nam, svc )
43  {
44  m_cnvSvc = nullptr;
45  m_rootName = "/FileRecords";
46  m_incidentName = "NEW_FILE_RECORD";
47  m_saveIncidentName = "SAVE_FILE_RECORD";
48  m_persSvcName = "PersistencySvc/FileRecordPersistencySvc";
49  }
51  ~FileRecordDataSvc() override = default;
52 };
53 
54 // Instantiation of a static factory class used by clients to create instances of this service
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:33
FileRecordDataSvc(const std::string &nam, ISvcLocator *svc)
Standard Constructor.
STL class.
~FileRecordDataSvc() override=default
Standard Destructor.
A FileRecordDataSvc is the base class for event services.
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