ATLAS Offline Software
Loading...
Searching...
No Matches
python.DQHistogramMergeMod Namespace Reference

Functions

 DQHistogramMerge (listFileName, outFileName, runPostProcessing, directoryRegularExpression=".*", histogramRegularExpression=".*", isIncremental=False, compressionLevel=1, debugLevel=0, doTiming=False)

Variables

 CWD = os.getcwd()
 Needed to correct ROOT behavior; see below.
str MODVERSION = '$Id: DQHistogramMergeMod.py,v 1.8 2009-05-12 11:38:35 ponyisi Exp $'
bool DoProcMon = False

Function Documentation

◆ DQHistogramMerge()

python.DQHistogramMergeMod.DQHistogramMerge ( listFileName,
outFileName,
runPostProcessing,
directoryRegularExpression = ".*",
histogramRegularExpression = ".*",
isIncremental = False,
compressionLevel = 1,
debugLevel = 0,
doTiming = False )

Definition at line 29 of file DQHistogramMergeMod.py.

29def DQHistogramMerge( listFileName, outFileName, runPostProcessing, directoryRegularExpression=".*", histogramRegularExpression=".*", isIncremental=False, compressionLevel=1,debugLevel=0,doTiming=False ):
30
32 if directoryRegularExpression!=".*" or histogramRegularExpression!=".*":
33 mf.setDirectoryRegEx(directoryRegularExpression)
34 mf.setHistogramRegEx(histogramRegularExpression)
35 mf.setDebugLevel(debugLevel)
36 mf.setCompressionLevel(compressionLevel)
37 if (doTiming): mf.doTiming()
38
39 stat=mf.mergeFiles( outFileName, listFileName )
40 if stat: sys.exit(stat)
41 mf.mergeLBintervals( outFileName )
42 if stat: sys.exit(stat)
43
44 if runPostProcessing:
45 from . import DQPostProcessMod
46 DQPostProcessMod.DQPostProcess( outFileName, isIncremental )

Variable Documentation

◆ CWD

python.DQHistogramMergeMod.CWD = os.getcwd()

Needed to correct ROOT behavior; see below.

Definition at line 5 of file DQHistogramMergeMod.py.

◆ DoProcMon

bool python.DQHistogramMergeMod.DoProcMon = False

Definition at line 24 of file DQHistogramMergeMod.py.

◆ MODVERSION

str python.DQHistogramMergeMod.MODVERSION = '$Id: DQHistogramMergeMod.py,v 1.8 2009-05-12 11:38:35 ponyisi Exp $'

Definition at line 22 of file DQHistogramMergeMod.py.