All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups 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  public:
40 
42  FileRecordDataSvc(const std::string& nam, ISvcLocator* svc) : RecordDataSvc(nam,svc) {
43  m_cnvSvc = 0;
44  m_rootName = "/FileRecords";
45  m_incidentName = "NEW_FILE_RECORD";
46  m_saveIncidentName = "SAVE_FILE_RECORD";
47  m_persSvcName = "PersistencySvc/FileRecordPersistencySvc";
48  }
50  virtual ~FileRecordDataSvc() {}
51 };
52 
53 // Instantiation of a static factory class used by clients to create instances of this service
55 
std::string m_persSvcName
Property: name of the persistency service.
Definition: RecordDataSvc.h:58
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:26
std::string m_incidentName
Property: name of incident to be fired if new record arrives.
Definition: RecordDataSvc.h:54
std::string m_rootName
Name of root event.
Definition: DataSvc.h:50
A RecordDataSvc is the base class for event services.
Definition: RecordDataSvc.h:26
virtual ~FileRecordDataSvc()
Standard Destructor.
#define DECLARE_COMPONENT(type)
Definition: PluginService.h:36
FileRecordDataSvc(const std::string &nam, ISvcLocator *svc)
Standard Constructor.
std::string m_saveIncidentName
Property: name of the "save" incident.
Definition: RecordDataSvc.h:56
A FileRecordDataSvc is the base class for event services.
IConversionSvc * m_cnvSvc
Reference to the main data conversion service.
Definition: RecordDataSvc.h:62