The Gaudi Framework  v36r13 (995e4364)
HistoEx2 Namespace Reference

Classes

class  HistoEx2
 

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...
 
 Rndm
 
 gaudi
 
 alg
 
 histos
 
 histo
 

Function Documentation

◆ configure()

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

Definition at line 63 of file HistoEx2.py.

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

Variable Documentation

◆ __author__

HistoEx2.__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 HistoEx2.py.

◆ alg

HistoEx2.alg

Definition at line 102 of file HistoEx2.py.

◆ gaudi

HistoEx2.gaudi

Definition at line 95 of file HistoEx2.py.

◆ histo

HistoEx2.histo

Definition at line 105 of file HistoEx2.py.

◆ histos

HistoEx2.histos

Definition at line 103 of file HistoEx2.py.

◆ Rndm

HistoEx2.Rndm

Definition at line 30 of file HistoEx2.py.

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