The Gaudi Framework  v36r9p1 (5c15b2bb)
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 
74  gaudi = AppMgr()
75 
76  HistoEx1.configure(gaudi)
77 
78  hsvc = gaudi.service("HistogramPersistencySvc")
79  hsvc.OutputFile = "histoex2.root"
80 
81  alg = HistoEx2("HistoEx2")
82  gaudi.addAlgorithm(alg)
83 
84  alg.HistoPrint = True
85 
86  return SUCCESS
87 
88 
89 # =============================================================================
90 # The actual job execution
91 # =============================================================================

Variable Documentation

◆ __author__

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

Definition at line 26 of file HistoEx2.py.

◆ alg

HistoEx2.alg = gaudi.algorithm(alg)

Definition at line 105 of file HistoEx2.py.

◆ gaudi

HistoEx2.gaudi = AppMgr()

Definition at line 98 of file HistoEx2.py.

◆ histo

HistoEx2.histo = histos[key]

Definition at line 108 of file HistoEx2.py.

◆ histos

HistoEx2.histos = alg.Histos()

Definition at line 106 of file HistoEx2.py.

◆ Rndm

HistoEx2.Rndm = cpp.Rndm

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