Definition at line 78 of file ConfigurationShelve.py.
◆ result
◆ __init__()
| python.ConfigurationShelve.ConfigurationJar.__init__ |
( |
| self, |
|
|
| name ) |
Definition at line 79 of file ConfigurationShelve.py.
79 def __init__( self, name ):
80 self.name = name
81
82 from AthenaCommon.AppMgr import theApp, ServiceMgr
83 from AthenaCommon.JobProperties import jobproperties
84
85 from . import AlgSequence as _as
86 self.athMasterSeq = _as.AthSequencer ("AthMasterSeq")
87 self.athAlgSeq = _as.AthSequencer ("AthAlgSeq")
88 self.athOutSeq = _as.AthSequencer ("AthOutSeq")
89
90 self.AppMgr = theApp
91 self.ServiceMgr = ServiceMgr
92 self.JobProperties = jobproperties
93
◆ __getstate__()
| python.ConfigurationShelve.ConfigurationJar.__getstate__ |
( |
| self | ) |
|
Definition at line 100 of file ConfigurationShelve.py.
100 def __getstate__( self ):
101 d = dict()
102
103 d[ 'name' ] = self.name
104
105 d[ 'AthMasterSeq' ] = self.athMasterSeq
106 d[ 'AthAlgSeq' ] = self.athAlgSeq
107 d[ 'AthOutSeq' ] = self.athOutSeq
108 d[ 'AppMgr' ] = self.AppMgr
109 d[ 'Streams' ] = self.AppMgr._streams
110 d[ 'ServiceMgr' ] = self.ServiceMgr
111 d[ 'JobProperties' ] = self.JobProperties
112
113 return d
114
◆ __setstate__()
| python.ConfigurationShelve.ConfigurationJar.__setstate__ |
( |
| self, |
|
|
| d ) |
Definition at line 115 of file ConfigurationShelve.py.
115 def __setstate__( self, d ):
116
117 self.__init__( d[ 'name' ] )
118
119
120
121
122
123 import AthenaCommon.JobProperties as JobProperties
124 JobProperties.jobproperties = d['JobProperties']
125
◆ __str__()
| python.ConfigurationShelve.ConfigurationJar.__str__ |
( |
| self | ) |
|
Definition at line 126 of file ConfigurationShelve.py.
126 def __str__(self):
127 import os
128 return os.linesep.join( [ "%s" % v for v in self.content().values() ] )
129
130
◆ content()
| python.ConfigurationShelve.ConfigurationJar.content |
( |
| self | ) |
|
◆ getName()
| python.ConfigurationShelve.ConfigurationJar.getName |
( |
| self | ) |
|
◆ AppMgr
| python.ConfigurationShelve.ConfigurationJar.AppMgr = theApp |
◆ athAlgSeq
| python.ConfigurationShelve.ConfigurationJar.athAlgSeq = _as.AthSequencer ("AthAlgSeq") |
◆ athMasterSeq
| python.ConfigurationShelve.ConfigurationJar.athMasterSeq = _as.AthSequencer ("AthMasterSeq") |
◆ athOutSeq
| python.ConfigurationShelve.ConfigurationJar.athOutSeq = _as.AthSequencer ("AthOutSeq") |
◆ JobProperties
| python.ConfigurationShelve.ConfigurationJar.JobProperties = jobproperties |
◆ name
| python.ConfigurationShelve.ConfigurationJar.name = name |
◆ ServiceMgr
| python.ConfigurationShelve.ConfigurationJar.ServiceMgr = ServiceMgr |
The documentation for this class was generated from the following file: