ATLAS Offline Software
Public Member Functions | List of all members
python.trfJobOptions.RunArguments Class Reference

Hold run arguments as name-value pairs. More...

Inheritance diagram for python.trfJobOptions.RunArguments:
Collaboration diagram for python.trfJobOptions.RunArguments:

Public Member Functions

def __str__ (self)
 

Detailed Description

Hold run arguments as name-value pairs.

Dynamic class that holds the run arguments as named members with values.

Definition at line 26 of file trfJobOptions.py.

Member Function Documentation

◆ __str__()

def python.trfJobOptions.RunArguments.__str__ (   self)

Definition at line 28 of file trfJobOptions.py.

28  def __str__(self):
29  myself = 'RunArguments:'
30  for arg in dir(self):
31  if not arg.startswith('__'):
32  myself += '%s %s = %s' % (os.linesep, arg, repr(getattr(self, arg)))
33  return myself
34 
35 

The documentation for this class was generated from the following file:
PyAthena::repr
std::string repr(PyObject *o)
returns the string representation of a python object equivalent of calling repr(o) in python
Definition: PyAthenaUtils.cxx:106
beamspotman.dir
string dir
Definition: beamspotman.py:623