|
Gaudi Framework, version v23r2 |
| Home | Generated: Thu Jun 28 2012 |
00001 #define PERSISTENCYSVC_DETPERSISTENCYSVC_CPP 00002 00003 #include <iostream> 00004 00005 // Implementation specific definitions 00006 #include "GaudiKernel/SvcFactory.h" 00007 #include "GaudiKernel/ISvcLocator.h" 00008 #include "GaudiKernel/IDataProviderSvc.h" 00009 #include "DetPersistencySvc.h" 00010 00011 // Instantiation of a static factory class used by clients to create 00012 // instances of this service 00013 DECLARE_SERVICE_FACTORY(DetPersistencySvc) 00014 00015 // Finalize the service. 00016 StatusCode DetPersistencySvc::finalize() 00017 { 00018 StatusCode status = PersistencySvc::finalize(); 00019 return status; 00020 } 00021 00022 // Initialize the service. 00023 StatusCode DetPersistencySvc::initialize() 00024 { 00025 StatusCode status = PersistencySvc::initialize(); 00026 return status; 00027 } 00028 00029 // Standard Constructor 00030 DetPersistencySvc::DetPersistencySvc(const std::string& name, ISvcLocator* svc) 00031 : PersistencySvc(name, svc) 00032 {} 00033 00034 // Standard Destructor 00035 DetPersistencySvc::~DetPersistencySvc() 00036 {}