The Gaudi Framework  v36r16 (ea80daf8)
HistoEx Namespace Reference

Classes

class  HistoEx
 

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 HistoEx.configure (   gaudi = None)
Configuration of the job

Definition at line 54 of file HistoEx.py.

54 def configure(gaudi=None):
55  """Configuration of the job"""
56 
57  if not gaudi:
58  from GaudiPython.Bindings import AppMgr
59 
60  gaudi = AppMgr()
61 
62  gaudi.JobOptionsType = "NONE"
63  gaudi.EvtSel = "NONE"
64  gaudi.HistogramPersistency = "ROOT"
65 
66  gaudi.config()
67 
68  gaudi.DLLs = [
69  "GaudiAlg",
70  "RootHistCnv",
71  ]
72 
73  alg = HistoEx("HistoEx")
74  gaudi.setAlgorithms([alg])
75  alg.HistoPrint = True
76 
77  hsvc = gaudi.service("HistogramPersistencySvc")
78  hsvc.OutputFile = "histoex.root"
79 
80  # This does not harm and tests bug #50389
81  _ = gaudi.algorithm("HistoEx")
82 
83  return SUCCESS
84 
85 
86 # =============================================================================
87 # The actual job excution
88 # =============================================================================

Variable Documentation

◆ __author__

HistoEx.__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 22 of file HistoEx.py.

◆ alg

HistoEx.alg

Definition at line 100 of file HistoEx.py.

◆ gaudi

HistoEx.gaudi

Definition at line 94 of file HistoEx.py.

◆ histo

HistoEx.histo

Definition at line 103 of file HistoEx.py.

◆ histos

HistoEx.histos

Definition at line 101 of file HistoEx.py.

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