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

Constructor & Destructor Documentation

◆ __init__()

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

Definition at line 281 of file AthOptionsParser.py.

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

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