The Gaudi Framework  v36r1 (3e2fb5a8)
HistoEx1 Namespace Reference

Classes

class  HistoEx1
 

Functions

def configure (gaudi=None)
 

Variables

string __author__ = 'Vanya BELYAEV Ivan.Belyaev@lapp.in2p3.fr'
 
 gaudi = AppMgr()
 
 alg = gaudi.algorithm('HistoEx1')
 
 histos = alg.Histos()
 
 histo = histos[key]
 

Function Documentation

◆ configure()

def HistoEx1.configure (   gaudi = None)
Configuration of the job 

Definition at line 70 of file HistoEx1.py.

70 def configure(gaudi=None):
71  """ Configuration of the job """
72 
73  import HistoEx
74 
75  if not gaudi:
76  from GaudiPython.Bindings import AppMgr
77  gaudi = AppMgr()
78 
79  HistoEx.configure(gaudi)
80 
81  alg = HistoEx1('HistoEx1')
82  gaudi.addAlgorithm(alg)
83 
84  alg.HistoPrint = True
85 
86  return SUCCESS
87 
88 
89 # =============================================================================
90 # The actual job excution
91 # =============================================================================

Variable Documentation

◆ __author__

string HistoEx1.__author__ = 'Vanya BELYAEV Ivan.Belyaev@lapp.in2p3.fr'
private

Definition at line 25 of file HistoEx1.py.

◆ alg

HistoEx1.alg = gaudi.algorithm('HistoEx1')

Definition at line 103 of file HistoEx1.py.

◆ gaudi

HistoEx1.gaudi = AppMgr()

Definition at line 96 of file HistoEx1.py.

◆ histo

HistoEx1.histo = histos[key]

Definition at line 106 of file HistoEx1.py.

◆ histos

HistoEx1.histos = alg.Histos()

Definition at line 104 of file HistoEx1.py.

GaudiPython.Bindings
Definition: Bindings.py:1
HistoEx1
Definition: HistoEx1.py:1
HistoEx.configure
def configure(gaudi=None)
Definition: HistoEx.py:56
HistoEx1.configure
def configure(gaudi=None)
Definition: HistoEx1.py:70