Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
calypso
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
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
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Savannah Rose Shively
calypso
Commits
00b16967
Commit
00b16967
authored
Sep 21, 2022
by
FASER Reco
Browse files
Options
Downloads
Patches
Plain Diff
Reduce routine printouts
parent
086faaaa
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
Control/CalypsoExample/Reconstruction/scripts/faser_reco.py
+13
-2
13 additions, 2 deletions
Control/CalypsoExample/Reconstruction/scripts/faser_reco.py
with
13 additions
and
2 deletions
Control/CalypsoExample/Reconstruction/scripts/faser_reco.py
+
13
−
2
View file @
00b16967
...
...
@@ -194,7 +194,6 @@ from TrackerSpacePointFormation.TrackerSpacePointFormationConfig import TrackerS
acc
.
merge
(
TrackerSpacePointFinderCfg
(
ConfigFlags
))
# Try Dave's new fitter
print
(
"
Configuring TrackerSegmentFit (new)
"
)
from
TrackerSegmentFit.TrackerSegmentFitConfig
import
SegmentFitAlgCfg
acc
.
merge
(
SegmentFitAlgCfg
(
ConfigFlags
,
SharedHitFraction
=
0.61
,
...
...
@@ -239,7 +238,14 @@ if args.isMC:
# Add MC information here
itemList
.
extend
(
[
"
McEventCollection#*
"
,
"
TrackerSimDataCollection#*
"
]
)
acc
.
merge
(
OutputStreamCfg
(
ConfigFlags
,
"
xAOD
"
,
itemList
))
# Output stream
acc
.
merge
(
OutputStreamCfg
(
ConfigFlags
,
"
xAOD
"
,
itemList
,
disableEventTag
=
True
))
# Try to turn off annoying INFO message, as we don't use this
# disableEventTag=True doesn't seem to work...
tagBuilder
=
CompFactory
.
EventInfoTagBuilder
()
tagBuilder
.
PropagateInput
=
False
acc
.
addEventAlgo
(
tagBuilder
)
# Waveform reconstruction output
from
WaveRecAlgs.WaveRecAlgsConfig
import
WaveformReconstructionOutputCfg
...
...
@@ -268,6 +274,11 @@ if args.verbose:
else
:
acc
.
foreach_component
(
"
*
"
).
OutputLevel
=
INFO
# Reduce event loop printout
eventLoop
=
CompFactory
.
AthenaEventLoopMgr
()
eventLoop
.
EventPrintoutInterval
=
100
acc
.
addService
(
eventLoop
)
acc
.
foreach_component
(
"
*ClassID*
"
).
OutputLevel
=
INFO
acc
.
getService
(
"
MessageSvc
"
).
Format
=
"
% F%40W%S%7W%R%T %0W%M
"
...
...
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment