ATLAS Offline Software
Public Member Functions | List of all members
drawFromPickle.BaseClassFromDict Class Reference
Inheritance diagram for drawFromPickle.BaseClassFromDict:
Collaboration diagram for drawFromPickle.BaseClassFromDict:

Public Member Functions

def __init__ (self, **kargs)
 

Detailed Description

Use the kargs trick to set all the attributes except the ones
that are my classes, and not basic types. See for example:
http://stackoverflow.com/questions/1098549/proper-way-to-use-kwargs-in-python

Definition at line 46 of file drawFromPickle.py.

Constructor & Destructor Documentation

◆ __init__()

def drawFromPickle.BaseClassFromDict.__init__ (   self,
**  kargs 
)

Reimplemented in drawFromPickle.PadWithHits.

Definition at line 52 of file drawFromPickle.py.

52  def __init__(self, **kargs) :
53  for k,v in kargs.iteritems() : setattr(self, k, v)
54 #_________________________________________________

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