Skip to content
Snippets Groups Projects
Commit c2a4505a authored by Johannes Elmsheuser's avatar Johannes Elmsheuser
Browse files

Merge branch 'asg/cp-cutflow' into 'master'

CP algs: Configure CutFlowSvc in tests when needed

See merge request atlas/athena!39399
parents bacf417a f88e1380
No related branches found
No related tags found
6 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!39399CP algs: Configure CutFlowSvc in tests when needed
...@@ -27,6 +27,10 @@ theApp.EvtMax = 500 ...@@ -27,6 +27,10 @@ theApp.EvtMax = 500
testFile = os.getenv ( inputfile[dataType] ) testFile = os.getenv ( inputfile[dataType] )
svcMgr.EventSelector.InputCollections = [testFile] svcMgr.EventSelector.InputCollections = [testFile]
# Needed for filtering, Athena only for now
from EventBookkeeperTools.CutFlowHelpers import CreateCutFlowSvc
CreateCutFlowSvc(svcName="CutFlowSvc", seq=athAlgSeq, addMetaDataToAllOutputFiles=False)
from AsgAnalysisAlgorithms.AsgAnalysisAlgorithmsTest import makeEventAlgorithmsSequence from AsgAnalysisAlgorithms.AsgAnalysisAlgorithmsTest import makeEventAlgorithmsSequence
algSeq = makeEventAlgorithmsSequence (dataType) algSeq = makeEventAlgorithmsSequence (dataType)
print( algSeq ) # For debugging print( algSeq ) # For debugging
......
...@@ -27,6 +27,10 @@ theApp.EvtMax = 500 ...@@ -27,6 +27,10 @@ theApp.EvtMax = 500
testFile = os.getenv ( inputfile[dataType] ) testFile = os.getenv ( inputfile[dataType] )
svcMgr.EventSelector.InputCollections = [testFile] svcMgr.EventSelector.InputCollections = [testFile]
# Needed for filtering, Athena only for now
from EventBookkeeperTools.CutFlowHelpers import CreateCutFlowSvc
CreateCutFlowSvc(svcName="CutFlowSvc", seq=athAlgSeq, addMetaDataToAllOutputFiles=False)
from AsgAnalysisAlgorithms.AsgAnalysisAlgorithmsTest import makeOverlapSequence from AsgAnalysisAlgorithms.AsgAnalysisAlgorithmsTest import makeOverlapSequence
algSeq = makeOverlapSequence (dataType) algSeq = makeOverlapSequence (dataType)
print( algSeq ) # For debugging print( algSeq ) # For debugging
......
...@@ -27,6 +27,10 @@ theApp.EvtMax = 500 ...@@ -27,6 +27,10 @@ theApp.EvtMax = 500
testFile = os.getenv ( inputfile[dataType] ) testFile = os.getenv ( inputfile[dataType] )
svcMgr.EventSelector.InputCollections = [testFile] svcMgr.EventSelector.InputCollections = [testFile]
# Needed for filtering, Athena only for now
from EventBookkeeperTools.CutFlowHelpers import CreateCutFlowSvc
CreateCutFlowSvc(svcName="CutFlowSvc", seq=athAlgSeq, addMetaDataToAllOutputFiles=False)
from TriggerAnalysisAlgorithms.TriggerAnalysisAlgorithmsTest import makeSequence from TriggerAnalysisAlgorithms.TriggerAnalysisAlgorithmsTest import makeSequence
algSeq = makeSequence (dataType) algSeq = makeSequence (dataType)
print (algSeq) # For debugging print (algSeq) # For debugging
......
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