DetDataSvc.h
Go to the documentation of this file.
1 #ifndef DETECTORDATASVC_DETDATASVC_H
2 #define DETECTORDATASVC_DETDATASVC_H
3 
4 // Base classes
5 //#include "GaudiKernel/DataSvc.h"
6 // D. Piparo: Change to the new thread safe version
10 #include "GaudiKernel/Time.h"
11 #include "GaudiKernel/TsDataSvc.h"
12 
13 
14 // Forward declarations
15 class StatusCode;
16 class IAddressCreator;
17 
19  //--------------------------------------------------------------------------
29 
30 class DetDataSvc : public extends<TsDataSvc, IDetDataSvc, IIncidentListener>
31 {
32 
33  // unhides DataSvc updateObject methods
35 
36 public:
37  // Overloaded DataSvc methods
38 
40  StatusCode initialize() override;
41 
43  StatusCode reinitialize() override;
44 
46  StatusCode finalize() override;
47 
49  StatusCode clearStore() override;
50 
52  StatusCode updateObject( DataObject* toUpdate ) override;
53 
55  DetDataSvc( const std::string& name, ISvcLocator* svc );
56 
58  ~DetDataSvc() override = default;
59 
60 private:
63 
65  StatusCode loadObject( IConversionSvc* pLoader, IRegistry* pNode ) override final {
67  return TsDataSvc::loadObject(pLoader, pNode);
68  }
69  error() << "Trying to load " << pNode->identifier() << " while RUNNING" << endmsg;
70  return StatusCode::FAILURE;
71  }
72 
73 public:
74  // Implementation of the IDetDataSvc interface
75 
78  bool validEventTime() const override;
79 
81  const Gaudi::Time& eventTime() const override;
82 
84  void setEventTime( const Gaudi::Time& time ) override;
85 
86 public:
87  // Implementation of the IIncidentListener interface
88 
90  void handle( const Incident& ) override;
91 
92 private:
94  "Detector Data Persistency Storage type"};
95  Gaudi::Property<std::string> m_detDbLocation{this, "DetDbLocation", "empty",
96  "location of detector Db (filename,URL)"};
97  Gaudi::Property<std::string> m_detDbRootName{this, "DetDbRootName", "dd", "name of the root node of the detector"};
98  Gaudi::Property<bool> m_usePersistency{this, "UsePersistency", false, "control if the persistency is required"};
99  Gaudi::Property<std::string> m_persistencySvcName{this, "PersistencySvc", "DetectorPersistencySvc",
100  "name of the persistency service"};
101 
102  Gaudi::Property<bool> m_allowLoadInRunning{this, "AllowLoadInRunning", true,
103  "if set to false, no new object can be loaded while in running state "
104  "(updates are still allowed), this forces preloading of the geometry"};
105 
108 
111 };
112 
113 #endif // DETECTORDATASVC_DETDATASVC_H
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
const std::string & name() const override
Retrieve name of the service.
Definition: Service.cpp:289
Implementation of property with value of concrete type.
Definition: Property.h:314
void handle(const Incident &) override
Inform that a new incident has occured.
Definition: DetDataSvc.cpp:196
bool validEventTime() const override
Check if the event time has been set.
Definition: DetDataSvc.cpp:190
StatusCode updateObject(IRegistry *pDirectory) override
Update object identified by its directory entry.
Definition: TsDataSvc.cpp:1017
StatusCode updateObject(DataObject *toUpdate) override
Update object.
Definition: DetDataSvc.cpp:208
IAddressCreator interface definition.
Gaudi::Property< std::string > m_detDbRootName
Definition: DetDataSvc.h:97
~DetDataSvc() override=default
Standard Destructor.
Gaudi::Property< std::string > m_detDbLocation
Definition: DetDataSvc.h:95
const Gaudi::Time & eventTime() const override
Get the event time.
Definition: DetDataSvc.cpp:193
STL class.
Gaudi::Property< bool > m_usePersistency
Definition: DetDataSvc.h:98
StatusCode setupDetectorDescription()
Deal with Detector Description initialization.
Definition: DetDataSvc.cpp:56
MsgStream & error() const
shortcut for the method msgStream(MSG::ERROR)
StatusCode clearStore() override
Remove all data objects in the data store.
Definition: DetDataSvc.cpp:148
Based on seal::Time.
Definition: Time.h:213
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
SmartIF< IAddressCreator > m_addrCreator
Address Creator to be used.
Definition: DetDataSvc.h:110
DetDataSvc(const std::string &name, ISvcLocator *svc)
Standard Constructor.
Definition: DetDataSvc.cpp:174
StatusCode reinitialize() override
Initialize the service.
Definition: DetDataSvc.cpp:110
The IRegistry represents the entry door to the environment any data object residing in a transient da...
Definition: IRegistry.h:22
StatusCode finalize() override
Finalize the service.
Definition: DetDataSvc.cpp:129
StatusCode loadObject(IConversionSvc *pLoader, IRegistry *pNode) override final
Invoke Persistency service to create transient object from its persistent representation.
Definition: DetDataSvc.h:65
StatusCode initialize() override
Initialize the service.
Definition: DetDataSvc.cpp:27
const long XML_StorageType
Definition: ClassID.h:57
Gaudi::Property< std::string > m_persistencySvcName
Definition: DetDataSvc.h:99
#define LIKELY(x)
Definition: Kernel.h:125
Gaudi::Time m_eventTime
Current event time.
Definition: DetDataSvc.h:107
Base class used to extend a class implementing other interfaces.
Definition: extends.h:10
Base class for all Incidents (computing events).
Definition: Incident.h:17
Gaudi::StateMachine::State FSMState() const override
Definition: Service.h:54
Gaudi::Property< int > m_detStorageType
Definition: DetDataSvc.h:93
void setEventTime(const Gaudi::Time &time) override
Set the new event time.
Definition: DetDataSvc.cpp:183
Gaudi::Property< bool > m_allowLoadInRunning
Definition: DetDataSvc.h:102
A DataObject is the base class of any identifiable object on any data store.
Definition: DataObject.h:30
SmartIF< ISvcLocator > & serviceLocator() const override
Retrieve pointer to service locator.
Definition: Service.cpp:292
virtual StatusCode loadObject(IRegistry *pNode)
Invoke Persistency service to create transient object from its persistent representation.
Definition: TsDataSvc.cpp:691
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:244