Skip to content
Snippets Groups Projects
Commit 5760f241 authored by sbenson's avatar sbenson Committed by sbenson
Browse files

more qmtests

git-svn-id: svn+ssh://svn.cern.ch/reps/lhcb/DaVinci/trunk@204003 4525493e-7705-40b1-a816-d608a930855b
parent ff795e20
No related branches found
No related tags found
No related merge requests found
from Gaudi.Configuration import *
from LHCbKernel.Configuration import *
from Configurables import GaudiSequencer,RawEventJuggler
from Configurables import DaVinci
from Configurables import DecodeRawEvent
from Configurables import DstConf
DstConf().Turbo=True
DaVinci()
DaVinci().EvtMax=-1
DaVinci().DataType="2015"
from GaudiConf import IOHelper
IOHelper().inputFiles( ["tesla_2015_TCK.dst"] , clear=True )
import GaudiPython
from Gaudi.Configuration import ApplicationMgr
from Configurables import LoKiSvc
from GaudiKernel import ROOT6WorkAroundEnabled
if ROOT6WorkAroundEnabled('ROOT-7492'):
# trigger autoloading of LHCbKernel dictionary
GaudiPython.gbl.LHCb.LHCbID
# trigger autoloading of DigiEvent dictionary
GaudiPython.gbl.LHCb.CaloDigit
gaudi = GaudiPython.AppMgr()
gaudi.initialize()
tes = gaudi.evtsvc()
vertLoc = "Turbo/Primary"
protoLoc = "Turbo/Protos"
trackLoc = "Turbo/Tracks"
rpidLoc = "Turbo/RichPIDs"
mpidLoc = "Turbo/MuonPIDs"
hypoLoc = "Turbo/CaloHypos"
clusterLoc = "Turbo/CaloClusters"
n_events=0
n_vert=0
n_proto=0
n_track=0
n_rpid=0
n_mpid=0
n_hypo=0
n_cluster=0
version='v10r0_0x00fa0051'
from TurboStreamProd.helpers import *
from TurboStreamProd import prodDict
lines = streamLines(prodDict,version,'DiMuon',debug=True)
lines += streamLines(prodDict,version,'Charm',debug=True)
lines += streamLines(prodDict,version,'CharmSpec',debug=True)
while True:
gaudi.run(1)
#
if not tes['/Event/DAQ/RawEvent']:
print "End of file"
break
#
n=0
for line in lines:
rep = tes["Hlt2/SelReports"].selReport(line+"Decision")
if rep:
n+=1
if n==0:
continue
n_events+=1
n_vert+=tes[vertLoc].size()
n_proto+=tes[protoLoc].size()
n_track+=tes[trackLoc].size()
n_rpid+=tes[rpidLoc].size()
n_mpid+=tes[mpidLoc].size()
n_hypo+=tes[hypoLoc].size()
n_cluster+=tes[clusterLoc].size()
print "Average size of PV container = "+str( float(n_vert)/float(n_events) )
print "Average size of ProtoParticle container = "+str( float(n_proto)/float(n_events) )
print "Average size of Track container = "+str( float(n_track)/float(n_events) )
print "Average size of RICH PID container = "+str( float(n_rpid)/float(n_events) )
print "Average size of Muon PID container = "+str( float(n_mpid)/float(n_events) )
print "Average size of CaloHypo container = "+str( float(n_hypo)/float(n_events) )
print "Average size of CaloCluster container = "+str( float(n_cluster)/float(n_events) )
<?xml version="1.0" ?><!DOCTYPE extension PUBLIC '-//QM/2.3/Extension//EN' 'http://www.codesourcery.com/qm/dtds/2.3/-//qm/2.3/extension//en.dtd'>
<!--
#######################################################
# SUMMARY OF THIS TEST
# ...................
# Author: sbenson
# Purpose: Check the TOS and decision efficiency on MC
# Prerequisites: None
# Common failure modes, severities and cures:
# . SEVERE: Segfault or raised exception, stderr, nonzero return code
# . MAJOR: additional FATAL/ERROR messages always a major problem. no ERROR messages should ever be printed when running this test.
# . MINOR: additional WARNING messages, it is unclear how severe these may be, you will need to hunt down the cause and either fix the problem or suppress the warning.
# . EXPECTED: At the moment this test has a habit of timing out or being killed by some abort signal in finalize, but the output always looks fine.
#######################################################
-->
<extension class="GaudiTest.GaudiExeTest" kind="test">
<argument name="program"><text>python</text></argument>
<argument name="timeout"><integer>3600</integer></argument>
<argument name="args"><set>
<text>../options/DV_2015_SharedContainers.py</text>
</set></argument>
<argument name="validator"><text>
block = """
Average size of PV container = 2.01599147122
Average size of ProtoParticle container = 7.44669509595
Average size of Track container = 7.52132196162
Average size of RICH PID container = 3.76759061834
Average size of Muon PID container = 3.76759061834
Average size of CaloHypo container = 8.03411513859
Average size of CaloCluster container = 7.8710021322
"""
findReferenceBlock(block)
</text></argument>
</extension>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment