ATLAS Offline Software
Public Member Functions | List of all members
python.runargs.RunArguments Class Reference
Collaboration diagram for python.runargs.RunArguments:

Public Member Functions

def __str__ (self)
 

Detailed Description

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

Definition at line 7 of file runargs.py.

Member Function Documentation

◆ __str__()

def python.runargs.RunArguments.__str__ (   self)

Definition at line 9 of file runargs.py.

9  def __str__(self):
10  myself = 'RunArguments:'
11  for arg in dir(self):
12  if not arg.startswith('__'):
13  myself += '%s %s = %s' % (os.linesep, arg, repr(getattr(self,arg)))
14  return myself

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