Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v31r0 (aeb156f0)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
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 // Forward declarations
14 class StatusCode;
15 class IAddressCreator;
16 
18  //--------------------------------------------------------------------------
28 
29 class DetDataSvc : public extends<TsDataSvc, IDetDataSvc, IIncidentListener> {
30 
31  // unhides DataSvc updateObject methods
33 
34 public:
35  // Overloaded DataSvc methods
36 
38  StatusCode initialize() override;
39 
41  StatusCode reinitialize() override;
42 
44  StatusCode finalize() override;
45 
47  StatusCode clearStore() override;
48 
50  StatusCode updateObject( DataObject* toUpdate ) override;
51 
53  DetDataSvc( const std::string& name, ISvcLocator* svc );
54 
56  ~DetDataSvc() override = default;
57 
58 private:
61 
63  StatusCode loadObject( IConversionSvc* pLoader, IRegistry* pNode ) override final {
65  serviceLocator().as<IStateful>()->FSMState() != Gaudi::StateMachine::RUNNING ) ) {
66  return TsDataSvc::loadObject( pLoader, pNode );
67  }
68  error() << "Trying to load " << pNode->identifier() << " while RUNNING" << endmsg;
69  return StatusCode::FAILURE;
70  }
71 
72 public:
73  // Implementation of the IDetDataSvc interface
74 
77  bool validEventTime() const override;
78 
80  const Gaudi::Time& eventTime() const override;
81 
83  void setEventTime( const Gaudi::Time& time ) override;
84 
85 public:
86  // Implementation of the IIncidentListener interface
87 
89  void handle( const Incident& ) override;
90 
91 private:
93  "Detector Data Persistency Storage type"};
94  Gaudi::Property<std::string> m_detDbLocation{this, "DetDbLocation", "empty",
95  "location of detector Db (filename,URL)"};
97  "DetDbRootName",
98  "dd",
99  [this]( Gaudi::Details::PropertyBase& ) {
100  this->setProperty( "RootName", "/" + this->m_detDbRootName ).ignore();
101  },
103  "name of the root node of the detector"};
104  Gaudi::Property<bool> m_usePersistency{this, "UsePersistency", false, "control if the persistency is required"};
105  Gaudi::Property<std::string> m_persistencySvcName{this, "PersistencySvc", "DetectorPersistencySvc",
106  "name of the persistency service"};
107 
108  Gaudi::Property<bool> m_allowLoadInRunning{this, "AllowLoadInRunning", true,
109  "if set to false, no new object can be loaded while in running state "
110  "(updates are still allowed), this forces preloading of the geometry"};
111 
114 
117 };
118 
119 #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:274
Implementation of property with value of concrete type.
Definition: Property.h:352
StatusCode setProperty(const Gaudi::Details::PropertyBase &p) override
set the property form another property
void handle(const Incident &) override
Inform that a new incident has occured.
Definition: DetDataSvc.cpp:183
bool validEventTime() const override
Check if the event time has been set.
Definition: DetDataSvc.cpp:177
StatusCode updateObject(IRegistry *pDirectory) override
Update object identified by its directory entry.
Definition: TsDataSvc.cpp:649
StatusCode updateObject(DataObject *toUpdate) override
Update object.
Definition: DetDataSvc.cpp:193
Gaudi::tagged_bool< class ImmediatelyInvokeHandler_tag > ImmediatelyInvokeHandler
Definition: Property.h:141
IAddressCreator interface definition.
Gaudi::Property< std::string > m_detDbRootName
Definition: DetDataSvc.h:96
~DetDataSvc() override=default
Standard Destructor.
Gaudi::Property< std::string > m_detDbLocation
Definition: DetDataSvc.h:94
const Gaudi::Time & eventTime() const override
Get the event time.
Definition: DetDataSvc.cpp:180
STL class.
Gaudi::Property< bool > m_usePersistency
Definition: DetDataSvc.h:104
StatusCode setupDetectorDescription()
Deal with Detector Description initialization.
Definition: DetDataSvc.cpp:55
MsgStream & error() const
shortcut for the method msgStream(MSG::ERROR)
StatusCode clearStore() override
Remove all data objects in the data store.
Definition: DetDataSvc.cpp:143
Based on seal::Time.
Definition: Time.h:231
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:50
SmartIF< IAddressCreator > m_addrCreator
Address Creator to be used.
Definition: DetDataSvc.h:116
DetDataSvc(const std::string &name, ISvcLocator *svc)
Standard Constructor.
Definition: DetDataSvc.cpp:166
StatusCode reinitialize() override
Initialize the service.
Definition: DetDataSvc.cpp:107
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:125
PropertyBase base class allowing PropertyBase* collections to be "homogeneous".
Definition: Property.h:32
StatusCode loadObject(IConversionSvc *pLoader, IRegistry *pNode) override final
Invoke Persistency service to create transient object from its persistent representation.
Definition: DetDataSvc.h:63
StatusCode initialize() override
Initialize the service.
Definition: DetDataSvc.cpp:27
#define LIKELY(x)
Definition: Kernel.h:88
const long XML_StorageType
Definition: ClassID.h:57
Gaudi::Property< std::string > m_persistencySvcName
Definition: DetDataSvc.h:105
Gaudi::Time m_eventTime
Current event time.
Definition: DetDataSvc.h:113
Base class used to extend a class implementing other interfaces.
Definition: extends.h:10
const StatusCode & ignore() const
Ignore/check StatusCode.
Definition: StatusCode.h:153
Base class for all Incidents (computing events).
Definition: Incident.h:17
Gaudi::StateMachine::State FSMState() const override
Definition: Service.h:52
constexpr static const auto FAILURE
Definition: StatusCode.h:86
Gaudi::Property< int > m_detStorageType
Definition: DetDataSvc.h:92
void setEventTime(const Gaudi::Time &time) override
Set the new event time.
Definition: DetDataSvc.cpp:171
Gaudi::Property< bool > m_allowLoadInRunning
Definition: DetDataSvc.h:108
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:277
virtual StatusCode loadObject(IRegistry *pNode)
Invoke Persistency service to create transient object from its persistent representation.
Definition: TsDataSvc.cpp:459
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:192