All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups 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 = 0;
44  m_rootName = "/RunRecords";
45  m_incidentName = "NEW_RUN_RECORD";
46  m_saveIncidentName = "SAVE_RUN_RECORD";
47  m_persSvcName = "PersistencySvc/RecordPersistencySvc";
48  }
49 
51  virtual ~RunRecordDataSvc() {}
52 
53 };
54 
55 // Instantiation of a static factory class used by clients to create instances of this service
57 
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
#define DECLARE_COMPONENT(type)
Definition: PluginService.h:36
A RunRecordDataSvc is the base class for event services.
std::string m_saveIncidentName
Property: name of the "save" incident.
Definition: RecordDataSvc.h:56
RunRecordDataSvc(const std::string &nam, ISvcLocator *svc)
Standard Constructor.
virtual ~RunRecordDataSvc()
Standard Destructor.
IConversionSvc * m_cnvSvc
Reference to the main data conversion service.
Definition: RecordDataSvc.h:62