ATLAS Offline Software
Public Member Functions | List of all members
python.AthOptionsParser.AthOptionsError Class Reference
Inheritance diagram for python.AthOptionsParser.AthOptionsError:
Collaboration diagram for python.AthOptionsParser.AthOptionsError:

Public Member Functions

def __init__ (self, reason=None)
 

Detailed Description

Definition at line 277 of file AthOptionsParser.py.

Constructor & Destructor Documentation

◆ __init__()

def python.AthOptionsParser.AthOptionsError.__init__ (   self,
  reason = None 
)

Definition at line 278 of file AthOptionsParser.py.

278  def __init__(self, reason=None):
279  import AthenaCommon.ExitCodes as ath_codes
280  if reason is None:
281  reason = ath_codes.OPTIONS_UNKNOWN
282  try:
283  message = ath_codes.codes[reason]
284  except KeyError:
285  message = ath_codes.codes[ath_codes.OPTIONS_UNKNOWN]
286 
287  SystemExit.__init__(self, reason, message)
288 
289 

The documentation for this class was generated from the following file:
python.processes.powheg.ZZ.ZZ.__init__
def __init__(self, base_directory, **kwargs)
Constructor: all process options are set here.
Definition: ZZ.py:18