Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
physics_benchmarks
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIC
benchmarks
physics_benchmarks
Merge requests
!146
RootHistSvc and MessageSvc
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
RootHistSvc and MessageSvc
extra-gaudi-services
into
master
Overview
0
Commits
2
Pipelines
0
Changes
1
Merged
Wouter Deconinck
requested to merge
extra-gaudi-services
into
master
3 years ago
Overview
0
Commits
2
Pipelines
0
Changes
1
Expand
This may address some of the warnings (supposedly 'FATAL') that we see appear...
0
0
Merge request reports
Compare
master
version 3
3b7ad344
2 years ago
version 2
ceb5099b
3 years ago
version 1
831908fd
3 years ago
master (base)
and
latest version
latest version
aae0f091
2 commits,
2 years ago
version 3
3b7ad344
2 commits,
2 years ago
version 2
ceb5099b
2 commits,
3 years ago
version 1
831908fd
1 commit,
3 years ago
1 file
+
12
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
options/reconstruction.py
+
12
−
1
Options
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
'
,
)
Loading