The Gaudi Framework  v36r9p1 (5c15b2bb)
TupleEx Namespace Reference

Classes

class  TupleEx
 

Functions

def configure (gaudi=None)
 

Variables

 TopAlg
 
 NTupleLUN
 
 OutputLevel
 
 EvtMax
 
 EvtSel
 
 HistogramPersistency
 
 Output
 
 GlobalCompression
 
string __author__ = "Vanya BELYAEV Ivan.Belyaev@lapp.in2p3.fr"
 
 Rndm = cpp.Rndm
 
 gaudi = AppMgr()
 

Function Documentation

◆ configure()

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

Definition at line 84 of file TupleEx.py.

84 def configure(gaudi=None):
85  """Configuration of the job"""
86 
87  if not gaudi:
88  from GaudiPython.Bindings import AppMgr
89 
90  gaudi = AppMgr()
91 
92  gaudi.JobOptionsType = "NONE"
93  gaudi.EvtSel = "NONE"
94  gaudi.HistogramPersistency = "ROOT"
95 
96  gaudi.ExtSvc += ["NTupleSvc"]
97 
98  ntSvc = gaudi.service("NTupleSvc")
99  ntSvc.Output = ["MYLUN DATAFILE='TupleEx_py.root' OPT='NEW' TYP='ROOT'"]
100 
101  gaudi.config()
102 
103  gaudi.DLLs = [
104  "GaudiAlg",
105  "RootHistCnv",
106  ]
107 
108  alg = TupleEx(
109  # configure the property
110  NTupleLUN="MYLUN"
111  )
112 
113  gaudi.setAlgorithms([alg])
114 
115  return SUCCESS
116 
117 
118 # =============================================================================
119 # The actual job excution
120 # @author Vanya BELYAEV ibelyaev@physics.syr.edu
121 # @date 2006-11-26

Variable Documentation

◆ __author__

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

Definition at line 32 of file TupleEx.py.

◆ EvtMax

TupleEx.EvtMax

Definition at line 28 of file TupleEx.py.

◆ EvtSel

TupleEx.EvtSel

Definition at line 29 of file TupleEx.py.

◆ gaudi

TupleEx.gaudi = AppMgr()

Definition at line 126 of file TupleEx.py.

◆ GlobalCompression

TupleEx.GlobalCompression

Definition at line 38 of file TupleEx.py.

◆ HistogramPersistency

TupleEx.HistogramPersistency

Definition at line 32 of file TupleEx.py.

◆ NTupleLUN

TupleEx.NTupleLUN

Definition at line 19 of file TupleEx.py.

◆ Output

TupleEx.Output

Definition at line 33 of file TupleEx.py.

◆ OutputLevel

TupleEx.OutputLevel

Definition at line 25 of file TupleEx.py.

◆ Rndm

TupleEx.Rndm = cpp.Rndm

Definition at line 39 of file TupleEx.py.

◆ TopAlg

TupleEx.TopAlg

Definition at line 18 of file TupleEx.py.

GaudiPython.Bindings
Definition: Bindings.py:1
TupleEx.configure
def configure(gaudi=None)
Definition: TupleEx.py:84
TupleEx
Definition: TupleEx.py:1