Gaudi.Configuration.GaudiPersistency Class Reference
Inheritance diagram for Gaudi.Configuration.GaudiPersistency:
Collaboration diagram for Gaudi.Configuration.GaudiPersistency:

Public Member Functions

def __apply_configuration__ (self)
 
- Public Member Functions inherited from GaudiKernel.Configurable.ConfigurableUser
def __init__ (self, name=Configurable.DefaultName, _enabled=True, kwargs)
 
def getGaudiType (self)
 
def getDlls (self)
 
def getHandle (self)
 
def __detach_used__ (self)
 
def propagateProperty (self, name, others=None, force=True)
 
def propagateProperties (self, names=None, others=None, force=True)
 
def __apply_configuration__ (self)
 
def applyConf (self)
 
def getUsedInstance (self, name)
 
def isApplicable (self)
 
- Public Member Functions inherited from GaudiKernel.Configurable.Configurable
def __new__ (cls, args, kwargs)
 
def __init__ (self, name=DefaultName)
 
def __getstate__ (self)
 
def __getnewargs__ (self)
 
def __setstate__ (self, dict)
 
def __len__ (self)
 
def __iter__ (self)
 
def __deepcopy__ (self, memo)
 
def __iadd__ (self, configs, descr=None)
 
def __getattr__ (self, attr)
 
def __setattr__ (self, name, value)
 
def __delattr__ (self, attr)
 
def __nonzero__ (self)
 
def remove (self, items)
 
def removeAll (self)
 
def copyChild (self, child)
 
def setParent (self, parentName)
 
def getParent (self)
 
def hasParent (self, parent)
 
def copyChildAndSetParent (self, cfg, parent)
 
def getChildren (self)
 
def getTools (self)
 
def children (self)
 
def getAllChildren (self)
 
def getSequence (self)
 
def setup (self)
 
def getProperties (self)
 
def getPropertiesWithDescription (self)
 
def getValuedProperties (self)
 
def properties (self)
 
def getDefaultProperties (cls)
 
def getDefaultProperty (cls, name)
 
def getProp (self, name)
 
def setProp (self, name, value)
 
def isPropertySet (self, name)
 
def getType (cls)
 
def getName (self)
 
def name (self)
 
def getJobOptName (self)
 
def isPublic (self)
 
def jobOptName (self)
 
def getFullName (self)
 
def getFullJobOptName (self)
 
def getPrintTitle (self)
 
def getTitleName (self)
 
def setDefaults (cls, handle)
 
def clone (self, name=None, kwargs)
 
def splitName (self)
 
def addTool (self, tool, name=None)
 
def __str__ (self, indent=0, headerLastIndentUnit=indentUnit)
 

Static Private Attributes

dictionary __slots__ = {}
 

Additional Inherited Members

- Static Public Attributes inherited from GaudiKernel.Configurable.Configurable
 propertyNoValue
 
string indentUnit = '| '
 
int printHeaderWidth = 100
 
int printHeaderPre = 5
 
dictionary allConfigurables = {}
 
dictionary configurableServices = {}
 

Detailed Description

Configurable to enable ROOT-based persistency.

Note: it requires Gaudi::RootCnvSvc (package RootCnv).

Definition at line 121 of file Configuration.py.

Member Function Documentation

def Gaudi.Configuration.GaudiPersistency.__apply_configuration__ (   self)
Apply low-level configuration

Definition at line 127 of file Configuration.py.

128  """Apply low-level configuration"""
129  from Configurables import (ApplicationMgr,
130  PersistencySvc,
131  FileRecordDataSvc,
132  EventPersistencySvc,
133  )
134  # aliased names
135  from Configurables import (RootCnvSvc,
136  RootEvtSelector,
137  IODataManager,
138  FileCatalog,
139  )
140  cnvSvcs = [ RootCnvSvc() ]
141  EventPersistencySvc().CnvServices += cnvSvcs
142  PersistencySvc("FileRecordPersistencySvc").CnvServices += cnvSvcs
143  app = ApplicationMgr()
144  app.SvcOptMapping += [ FileCatalog(), IODataManager(),
145  RootCnvSvc() ]
146  app.ExtSvc += [ FileRecordDataSvc() ]
147 
Description:
Definition: RootCnvSvc.h:53
PersistencySvc class implementation definition.
A FileRecordDataSvc is the base class for event services.
The Application Manager class.

Member Data Documentation

dictionary Gaudi.Configuration.GaudiPersistency.__slots__ = {}
staticprivate

Definition at line 126 of file Configuration.py.


The documentation for this class was generated from the following file: