Skip to content
Snippets Groups Projects

make packing configuration simpler

Merged Sevda Esen requested to merge sevda-simpler-packing into master
Compare and
56 files
+ 351
357
Compare changes
  • Side-by-side
  • Inline
Files
56
@@ -23,10 +23,11 @@ from __future__ import print_function
import argparse
from collections import defaultdict
from Configurables import (ApplicationMgr, HistogramPersistencySvc,
IODataManager, LHCbApp, ConfigCDBAccessSvc)
IODataManager, LHCbApp, GitANNSvc)
from DAQSys.Decoders import DecoderDB
from GaudiConf import IOHelper
import GaudiPython
from PyConf.application import get_metainfo_repos
parser = argparse.ArgumentParser()
parser.add_argument("--input-mdf", help="Input MDF file")
@@ -40,12 +41,12 @@ IODataManager(DisablePFNWarning=True)
# Disable warning about histogram saving not being required
HistogramPersistencySvc(OutputLevel=5)
# Decode Hlt DecReports
ApplicationMgr(TopAlg=[
ann = GitANNSvc("TCKANNSvc", Repositories=get_metainfo_repos())
app = ApplicationMgr(TopAlg=[
DecoderDB["HltDecReportsDecoder/Hlt1DecReportsDecoder"].setup(),
DecoderDB["HltSelReportsDecoder/Hlt1SelReportsDecoder"].setup()
])
ConfigCDBAccessSvc().File = "TCKData/config.cdb"
app.ExtSvc += [ann]
# Set up counters for recording decisions and selreport existence from MDF
counts_from_mdf = defaultdict(lambda: defaultdict(int))
Loading