Base class for all services
Definition at line 179 of file PyAthenaComps.py.
◆ __init__()
def python.PyAthenaComps.Svc.__init__ |
( |
|
self, |
|
|
|
name = None , |
|
|
** |
kw |
|
) |
| |
Definition at line 182 of file PyAthenaComps.py.
182 def __init__(self, name = None, **kw):
183 kw.setdefault(
'OutputLevel', 3)
184 if name
is None: name = kw.get(
'name', self.__class__.__name__)
186 super(Svc, self).
__init__(name, **kw)
187 self.__component_type__ =
"Service"
◆ finalize()
def python.PyAthenaComps.Svc.finalize |
( |
|
self | ) |
|
◆ initialize()
def python.PyAthenaComps.Svc.initialize |
( |
|
self | ) |
|
◆ reinitialize()
def python.PyAthenaComps.Svc.reinitialize |
( |
|
self | ) |
|
Definition at line 207 of file PyAthenaComps.py.
207 def reinitialize(self):
208 return StatusCode.Success
◆ start()
def python.PyAthenaComps.Svc.start |
( |
|
self | ) |
|
◆ stop()
def python.PyAthenaComps.Svc.stop |
( |
|
self | ) |
|
◆ sysFinalize()
def python.PyAthenaComps.Svc.sysFinalize |
( |
|
self | ) |
|
Definition at line 210 of file PyAthenaComps.py.
210 def sysFinalize(self):
211 return self.finalize()
◆ sysInitialize()
def python.PyAthenaComps.Svc.sysInitialize |
( |
|
self | ) |
|
Definition at line 190 of file PyAthenaComps.py.
190 def sysInitialize(self):
191 if hasattr(self,
'OutputLevel'):
195 return self.initialize()
◆ sysReinitialize()
def python.PyAthenaComps.Svc.sysReinitialize |
( |
|
self | ) |
|
Definition at line 200 of file PyAthenaComps.py.
200 def sysReinitialize(self):
201 if hasattr(self,
'OutputLevel'):
205 return self.reinitialize()
◆ sysStart()
def python.PyAthenaComps.Svc.sysStart |
( |
|
self | ) |
|
◆ sysStop()
def python.PyAthenaComps.Svc.sysStop |
( |
|
self | ) |
|
◆ __component_type__
python.PyAthenaComps.Svc.__component_type__ |
|
private |
The documentation for this class was generated from the following file: