The Gaudi Framework  v36r1 (3e2fb5a8)
HistoEx2 Namespace Reference

Classes

class  HistoEx2
 

Functions

def configure (gaudi=None)
 

Variables

string __author__ = 'Vanya BELYAEV ibelyaev@physics.syr.edu'
 
 Rndm = cpp.Rndm
 
 gaudi = AppMgr()
 
 alg = gaudi.algorithm(alg)
 
 histos = alg.Histos()
 
 histo = histos[key]
 

Function Documentation

◆ configure()

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

Definition at line 66 of file HistoEx2.py.

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

Variable Documentation

◆ __author__

string HistoEx2.__author__ = 'Vanya BELYAEV ibelyaev@physics.syr.edu'
private

Definition at line 25 of file HistoEx2.py.

◆ alg

HistoEx2.alg = gaudi.algorithm(alg)

Definition at line 101 of file HistoEx2.py.

◆ gaudi

HistoEx2.gaudi = AppMgr()

Definition at line 94 of file HistoEx2.py.

◆ histo

HistoEx2.histo = histos[key]

Definition at line 104 of file HistoEx2.py.

◆ histos

HistoEx2.histos = alg.Histos()

Definition at line 102 of file HistoEx2.py.

◆ Rndm

HistoEx2.Rndm = cpp.Rndm

Definition at line 32 of file HistoEx2.py.

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