From 999973c7a4af8994d4cde5d487c8e793026ef756 Mon Sep 17 00:00:00 2001 From: Wouter Deconinck <wdconinc@gmail.com> Date: Sun, 31 Jul 2022 00:17:09 +0000 Subject: [PATCH] RootHistSvc and MessageSvc --- options/reconstruction.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/options/reconstruction.py b/options/reconstruction.py index 736ad4fd..1646111b 100644 --- a/options/reconstruction.py +++ b/options/reconstruction.py @@ -1,7 +1,9 @@ from Gaudi.Configuration import * from Configurables import ApplicationMgr, AuditorSvc, EICDataSvc, PodioOutput, GeoSvc - +from Configurables import Gaudi__Monitoring__MessageSvcSink as MessageSvcSink +from Configurables import Gaudi__Histograming__Sink__Root as RootHistoSink +from GaudiKernel import SystemOfUnits as units from GaudiKernel.SystemOfUnits import eV, MeV, GeV, mm, cm, mrad import json @@ -141,6 +143,14 @@ else: # data service services.append(EICDataSvc("EventDataSvc", inputs=input_sims, OutputLevel=WARNING)) +# message service +MessageSvc().OutputLevel = INFO +services.append(MessageSvcSink()) + +# ROOT histogram service +RootHistSvc("RootHistSvc").OutputFile = "histo.root" +services.append(RootHistoSink()) + # juggler components from Configurables import PodioInput @@ -1287,4 +1297,5 @@ ApplicationMgr( ExtSvc=services, OutputLevel=WARNING, AuditAlgorithms=True, + HistogramPersistency='ROOT', ) -- GitLab