The Gaudi Framework  v36r13 (995e4364)
HistoEx1 Namespace Reference

Classes

class  HistoEx1
 

Functions

def configure (gaudi=None)
 

Variables

 __author__
 (c) Copyright 1998-2023 CERN for the benefit of the LHCb and ATLAS collaborations # # This software is distributed under the terms of the Apache version 2 licence, # copied verbatim in the file "LICENSE". More...
 
 gaudi
 
 alg
 
 histos
 
 histo
 

Function Documentation

◆ configure()

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

Definition at line 69 of file HistoEx1.py.

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

Variable Documentation

◆ __author__

HistoEx1.__author__
private

(c) Copyright 1998-2023 CERN for the benefit of the LHCb and ATLAS collaborations # # This software is distributed under the terms of the Apache version 2 licence, # copied verbatim in the file "LICENSE".

# # In applying this licence, CERN does not waive the privileges and immunities # granted to it by virtue of its status as an Intergovernmental Organization # or submit itself to any jurisdiction. #


Definition at line 24 of file HistoEx1.py.

◆ alg

HistoEx1.alg

Definition at line 107 of file HistoEx1.py.

◆ gaudi

HistoEx1.gaudi

Definition at line 100 of file HistoEx1.py.

◆ histo

HistoEx1.histo

Definition at line 110 of file HistoEx1.py.

◆ histos

HistoEx1.histos

Definition at line 108 of file HistoEx1.py.

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