From fe856081d8167d34fbe67c8e69eea350d05341f6 Mon Sep 17 00:00:00 2001 From: Wouter Deconinck <wdconinc@gmail.com> Date: Mon, 27 Jun 2022 19:59:22 +0000 Subject: [PATCH] SequencerTimerTool --- options/reconstruction.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/options/reconstruction.py b/options/reconstruction.py index 0aec224b..80fe5e59 100644 --- a/options/reconstruction.py +++ b/options/reconstruction.py @@ -1,7 +1,7 @@ from Gaudi.Configuration import * from Configurables import HiveWhiteBoard, HiveSlimEventLoopMgr, AvalancheSchedulerSvc -from Configurables import GaudiSequencer, ApplicationMgr +from Configurables import GaudiSequencer, SequencerTimerTool, ApplicationMgr from Configurables import AuditorSvc, EICDataSvc, PodioOutput, GeoSvc from GaudiKernel import SystemOfUnits as units from GaudiKernel.SystemOfUnits import MeV, GeV, mm, cm, mrad @@ -1022,19 +1022,19 @@ algorithms.append(podout) cardinality = 1 for alg in algorithms: alg.Cardinality = cardinality -seq = GaudiSequencer( - "seq", +sequencer = GaudiSequencer( + "sequencer", Members = algorithms, Sequential = True, OutputLevel = WARNING) ApplicationMgr( - TopAlg = [seq], + TopAlg = [sequencer], EvtSel = 'NONE', EvtMax = n_events, ExtSvc = services, EventLoop = slimeventloopmgr, - MessageSvcType="InertMessageSvc", + MessageSvcType = "InertMessageSvc", OutputLevel = WARNING, AuditAlgorithms = True ) -- GitLab