The Gaudi Framework  v36r9p1 (5c15b2bb)
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 71 of file HistoEx1.py.

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

Variable Documentation

◆ __author__

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

Definition at line 26 of file HistoEx1.py.

◆ alg

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

Definition at line 109 of file HistoEx1.py.

◆ gaudi

HistoEx1.gaudi = AppMgr()

Definition at line 102 of file HistoEx1.py.

◆ histo

HistoEx1.histo = histos[key]

Definition at line 112 of file HistoEx1.py.

◆ histos

HistoEx1.histos = alg.Histos()

Definition at line 110 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:71