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 274 of file AthOptionsParser.py.

Constructor & Destructor Documentation

◆ __init__()

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

Definition at line 275 of file AthOptionsParser.py.

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

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