GaudiUtilsConf.py
Go to the documentation of this file.
1 #Fri Jul 17 14:35:12 2015"""Automatically generated. DO NOT EDIT please"""
3 
4 class FileReadTool( ConfigurableAlgTool ) :
5  __slots__ = {
6  'MonitorService' : 'MonitorSvc', # str
7  'OutputLevel' : 7, # int
8  'AuditTools' : False, # bool
9  'AuditInitialize' : False, # bool
10  'AuditStart' : False, # bool
11  'AuditStop' : False, # bool
12  'AuditFinalize' : False, # bool
13  }
14  _propertyDocDct = {
15  }
16  def __init__(self, name = Configurable.DefaultName, **kwargs):
17  super(FileReadTool, self).__init__(name)
18  for n,v in kwargs.items():
19  setattr(self, n, v)
20  def getDlls( self ):
21  return 'GaudiUtils'
22  def getType( self ):
23  return 'FileReadTool'
24  pass # class FileReadTool
25 
26 class Gaudi__IODataManager( ConfigurableService ) :
27  __slots__ = {
28  'OutputLevel' : 7, # int
29  'AuditServices' : False, # bool
30  'AuditInitialize' : False, # bool
31  'AuditStart' : False, # bool
32  'AuditStop' : False, # bool
33  'AuditFinalize' : False, # bool
34  'AuditReInitialize' : False, # bool
35  'AuditReStart' : False, # bool
36  'CatalogType' : 'Gaudi::MultiFileCatalog/FileCatalog', # str
37  'UseGFAL' : True, # bool
38  'QuarantineFiles' : True, # bool
39  'AgeLimit' : 2, # int
40  'DisablePFNWarning' : False, # bool
41  }
42  _propertyDocDct = {
43  'DisablePFNWarning' : """ if set to True, we will not report when a file is opened by it's physical name """,
44  }
45  def __init__(self, name = Configurable.DefaultName, **kwargs):
46  super(Gaudi__IODataManager, self).__init__(name)
47  for n,v in kwargs.items():
48  setattr(self, n, v)
49  def getDlls( self ):
50  return 'GaudiUtils'
51  def getType( self ):
52  return 'Gaudi::IODataManager'
53  pass # class Gaudi__IODataManager
54 
55 class Gaudi__MultiFileCatalog( ConfigurableService ) :
56  __slots__ = {
57  'OutputLevel' : 7, # int
58  'AuditServices' : False, # bool
59  'AuditInitialize' : False, # bool
60  'AuditStart' : False, # bool
61  'AuditStop' : False, # bool
62  'AuditFinalize' : False, # bool
63  'AuditReInitialize' : False, # bool
64  'AuditReStart' : False, # bool
65  'Catalogs' : [ 'xmlcatalog_file:test_catalog.xml' ], # list
66  }
67  _propertyDocDct = {
68  'Catalogs' : """ The list of Catalogs """,
69  }
70  def __init__(self, name = Configurable.DefaultName, **kwargs):
71  super(Gaudi__MultiFileCatalog, self).__init__(name)
72  for n,v in kwargs.items():
73  setattr(self, n, v)
74  def getDlls( self ):
75  return 'GaudiUtils'
76  def getType( self ):
77  return 'Gaudi::MultiFileCatalog'
78  pass # class Gaudi__MultiFileCatalog
79 
80 class Gaudi__Utils__SignalMonitorSvc( ConfigurableService ) :
81  __slots__ = {
82  'OutputLevel' : 7, # int
83  'AuditServices' : False, # bool
84  'AuditInitialize' : False, # bool
85  'AuditStart' : False, # bool
86  'AuditStop' : False, # bool
87  'AuditFinalize' : False, # bool
88  'AuditReInitialize' : False, # bool
89  'AuditReStart' : False, # bool
90  }
91  _propertyDocDct = {
92  }
93  def __init__(self, name = Configurable.DefaultName, **kwargs):
94  super(Gaudi__Utils__SignalMonitorSvc, self).__init__(name)
95  for n,v in kwargs.items():
96  setattr(self, n, v)
97  def getDlls( self ):
98  return 'GaudiUtils'
99  def getType( self ):
100  return 'Gaudi::Utils::SignalMonitorSvc'
101  pass # class Gaudi__Utils__SignalMonitorSvc
102 
103 class Gaudi__Utils__StopSignalHandler( ConfigurableService ) :
104  __slots__ = {
105  'OutputLevel' : 7, # int
106  'AuditServices' : False, # bool
107  'AuditInitialize' : False, # bool
108  'AuditStart' : False, # bool
109  'AuditStop' : False, # bool
110  'AuditFinalize' : False, # bool
111  'AuditReInitialize' : False, # bool
112  'AuditReStart' : False, # bool
113  'Signals' : [ 'SIGINT' , 'SIGXCPU' ], # list
114  }
115  _propertyDocDct = {
116  'Signals' : """ List of signal names or numbers to use to schedule a stop. If the signal is followed by a '+' the signal is propagated the previously registered handler (if any). """,
117  }
118  def __init__(self, name = Configurable.DefaultName, **kwargs):
119  super(Gaudi__Utils__StopSignalHandler, self).__init__(name)
120  for n,v in kwargs.items():
121  setattr(self, n, v)
122  def getDlls( self ):
123  return 'GaudiUtils'
124  def getType( self ):
125  return 'Gaudi::Utils::StopSignalHandler'
126  pass # class Gaudi__Utils__StopSignalHandler
127 
128 class StalledEventMonitor( ConfigurableService ) :
129  __slots__ = {
130  'OutputLevel' : 7, # int
131  'AuditServices' : False, # bool
132  'AuditInitialize' : False, # bool
133  'AuditStart' : False, # bool
134  'AuditStop' : False, # bool
135  'AuditFinalize' : False, # bool
136  'AuditReInitialize' : False, # bool
137  'AuditReStart' : False, # bool
138  'EventTimeout' : 600, # int
139  'MaxTimeoutCount' : 0, # int
140  'StackTrace' : False, # bool
141  }
142  _propertyDocDct = {
143  'EventTimeout' : """ Number of seconds allowed to process a single event (0 to disable the check). """,
144  'MaxTimeoutCount' : """ Number timeouts before aborting the execution (0 means never abort). """,
145  'StackTrace' : """ Whether to print the stack-trace on timeout. """,
146  }
147  def __init__(self, name = Configurable.DefaultName, **kwargs):
148  super(StalledEventMonitor, self).__init__(name)
149  for n,v in kwargs.items():
150  setattr(self, n, v)
151  def getDlls( self ):
152  return 'GaudiUtils'
153  def getType( self ):
154  return 'StalledEventMonitor'
155  pass # class StalledEventMonitor
156 
157 class VFSSvc( ConfigurableService ) :
158  __slots__ = {
159  'OutputLevel' : 7, # int
160  'AuditServices' : False, # bool
161  'AuditInitialize' : False, # bool
162  'AuditStart' : False, # bool
163  'AuditStop' : False, # bool
164  'AuditFinalize' : False, # bool
165  'AuditReInitialize' : False, # bool
166  'AuditReStart' : False, # bool
167  'FileAccessTools' : [ 'FileReadTool' ], # list
168  'FallBackProtocol' : 'file', # str
169  }
170  _propertyDocDct = {
171  'FallBackProtocol' : """ URL prefix to use if the prefix is not present. """,
172  'FileAccessTools' : """ List of tools implementing the IFileAccess interface. """,
173  }
174  def __init__(self, name = Configurable.DefaultName, **kwargs):
175  super(VFSSvc, self).__init__(name)
176  for n,v in kwargs.items():
177  setattr(self, n, v)
178  def getDlls( self ):
179  return 'GaudiUtils'
180  def getType( self ):
181  return 'VFSSvc'
182  pass # class VFSSvc
def __init__(self, name=Configurable.DefaultName, kwargs)
def __init__(self, name=Configurable.DefaultName, kwargs)
def __init__(self, name=Configurable.DefaultName, kwargs)
def __init__(self, name=Configurable.DefaultName, kwargs)
def __init__(self, name=Configurable.DefaultName, kwargs)
def __init__(self, name=Configurable.DefaultName, kwargs)
def __init__(self, name=Configurable.DefaultName, kwargs)