ATLAS Offline Software
Public Member Functions | Public Attributes | Private Attributes | List of all members
python.DataLoader.DataLoader Class Reference
Inheritance diagram for python.DataLoader.DataLoader:
Collaboration diagram for python.DataLoader.DataLoader:

Public Member Functions

def __init__ (self, fileName)
 
def load (self)
 

Public Attributes

 fileName
 

Private Attributes

 _dataHdlr
 

Detailed Description

Definition at line 122 of file DataLoader.py.

Constructor & Destructor Documentation

◆ __init__()

def python.DataLoader.DataLoader.__init__ (   self,
  fileName 
)

Definition at line 123 of file DataLoader.py.

123  def __init__(self, fileName):
124  super(DataLoader, self).__init__()
125  self.fileName = os.path.abspath(fileName)
126  self._dataHdlr = None
127 

Member Function Documentation

◆ load()

def python.DataLoader.DataLoader.load (   self)

Definition at line 128 of file DataLoader.py.

128  def load(self):
129  import PerfMonComps.PerfMonSerializer as pmon_ser
130  infos, data = pmon_ser.pmon_load(self.fileName)
131  return {'meta':infos,
132  'data':data}
133 

Member Data Documentation

◆ _dataHdlr

python.DataLoader.DataLoader._dataHdlr
private

Definition at line 126 of file DataLoader.py.

◆ fileName

python.DataLoader.DataLoader.fileName

Definition at line 125 of file DataLoader.py.


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
python.root_pickle.load
def load(f, use_proxy=1, key=None)
Definition: root_pickle.py:476