Skip to content
Snippets Groups Projects
Commit 999973c7 authored by Wouter Deconinck's avatar Wouter Deconinck
Browse files

RootHistSvc and MessageSvc

parent 5386d9f8
No related branches found
No related tags found
1 merge request!146RootHistSvc and MessageSvc
from Gaudi.Configuration import * from Gaudi.Configuration import *
from Configurables import ApplicationMgr, AuditorSvc, EICDataSvc, PodioOutput, GeoSvc 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 from GaudiKernel.SystemOfUnits import eV, MeV, GeV, mm, cm, mrad
import json import json
...@@ -141,6 +143,14 @@ else: ...@@ -141,6 +143,14 @@ else:
# data service # data service
services.append(EICDataSvc("EventDataSvc", inputs=input_sims, OutputLevel=WARNING)) 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 # juggler components
from Configurables import PodioInput from Configurables import PodioInput
...@@ -1287,4 +1297,5 @@ ApplicationMgr( ...@@ -1287,4 +1297,5 @@ ApplicationMgr(
ExtSvc=services, ExtSvc=services,
OutputLevel=WARNING, OutputLevel=WARNING,
AuditAlgorithms=True, AuditAlgorithms=True,
HistogramPersistency='ROOT',
) )
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