Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Peter Sherwood
athena
Commits
b2100c18
Commit
b2100c18
authored
6 years ago
by
Gabriel Gallardo
Browse files
Options
Downloads
Patches
Plain Diff
Remove test AthenaMT job option from TrigEFMissingET
Former-commit-id:
9cc6a98d
parent
38a7e9ab
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Trigger/TrigAlgorithms/TrigEFMissingET/share/testMET.py
+0
-74
0 additions, 74 deletions
Trigger/TrigAlgorithms/TrigEFMissingET/share/testMET.py
Trigger/TrigAlgorithms/TrigEFMissingET/test/test_met_fexes.sh
+2
-2
2 additions, 2 deletions
...ger/TrigAlgorithms/TrigEFMissingET/test/test_met_fexes.sh
with
2 additions
and
76 deletions
Trigger/TrigAlgorithms/TrigEFMissingET/share/testMET.py
deleted
100644 → 0
+
0
−
74
View file @
38a7e9ab
#
# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
#
include
(
"
TrigUpgradeTest/testHLT_MT.py
"
)
from
AthenaCommon.AlgSequence
import
AlgSequence
topSequence
=
AlgSequence
()
import
math
from
TrigT2CaloCommon.TrigT2CaloCommonConf
import
TrigCaloDataAccessSvc
#, TestCaloDataAccess
from
AthenaMonitoring.GenericMonitoringTool
import
GenericMonitoringTool
,
defineHistogram
mon
=
GenericMonitoringTool
(
"
CaloDataAccessSvcMon
"
)
mon
.
Histograms
+=
[
defineHistogram
(
"
TIME_locking_LAr_RoI
"
,
title
=
"
Time spent in unlocking the LAr collection
"
,
xbins
=
100
,
xmin
=
0
,
xmax
=
100
),
defineHistogram
(
"
roiROBs_LAr
"
,
title
=
"
Number of ROBs unpacked in RoI requests
"
,
xbins
=
20
,
xmin
=
0
,
xmax
=
20
),
defineHistogram
(
"
TIME_locking_LAr_FullDet
"
,
title
=
"
Time spent in unlocking the LAr collection
"
,
xbins
=
100
,
xmin
=
0
,
xmax
=
100
),
defineHistogram
(
"
roiEta_LAr,roiPhi_LAr
"
,
type
=
"
TH2F
"
,
title
=
"
Geometric usage
"
,
xbins
=
50
,
xmin
=-
5
,
xmax
=
5
,
ybins
=
64
,
ymin
=-
math
.
pi
,
ymax
=
math
.
pi
)]
svcMgr
+=
TrigCaloDataAccessSvc
()
svcMgr
.
TrigCaloDataAccessSvc
.
MonTool
=
mon
svcMgr
.
TrigCaloDataAccessSvc
.
OutputLevel
=
INFO
from
L1Decoder.L1DecoderConf
import
CreateFullScanRoI
topSequence
+=
CreateFullScanRoI
()
from
TrigCaloRec.TrigCaloRecConfig
import
HLTCaloCellMaker
cellMakerAlgo
=
HLTCaloCellMaker
(
"
CellMakerMT
"
)
cellMakerAlgo
.
roiMode
=
True
cellMakerAlgo
.
RoIs
=
"
FullScanRoIs
"
cellMakerAlgo
.
OutputLevel
=
VERBOSE
cellMakerAlgo
.
CellsName
=
"
cells
"
topSequence
+=
cellMakerAlgo
from
TrigEFMissingET.TrigEFMissingETConf
import
EFMissingETAlgMT
,
EFMissingETFromCellsMT
,
EFMissingETFromHelper
cellTool
=
EFMissingETFromCellsMT
(
name
=
"
METFromCellsTool
"
)
cellTool
.
CellsCollection
=
"
cells
"
helperTool
=
EFMissingETFromHelper
(
"
theHelperTool
"
)
metAlg
=
EFMissingETAlgMT
(
name
=
"
EFMET
"
)
metAlg
.
METTools
=
[
cellTool
]
metAlg
.
HelperTool
=
helperTool
#metAlg.OutputLevel=DEBUG
metMon
=
GenericMonitoringTool
(
"
METMonTool
"
)
metMon
.
Histograms
=
[
defineHistogram
(
"
TIME_Total
"
,
title
=
"
Time spent Alg
"
,
xbins
=
100
,
xmin
=
0
,
xmax
=
100
),
defineHistogram
(
"
TIME_Loop
"
,
title
=
"
Time spent in Tools loop
"
,
xbins
=
100
,
xmin
=
0
,
xmax
=
100
)]
from
TrigEFMissingET.TrigEFMissingETMonitoring
import
*
metMon
.
Histograms
=
[
hEx_log
,
hEy_log
,
hEz_log
,
hMET_log
,
hSumEt_log
]
metMon
.
Histograms
+=
[
hMET_lin
,
hSumEt_lin
]
metMon
.
Histograms
+=
[
hXS
,
hMETPhi
,
hMETStatus
]
metMon
.
Histograms
+=
[
hCompEx
,
hCompEy
,
hCompEz
,
hCompEt
,
hCompSumEt
,
hCompSumE
]
metMon
.
Histograms
+=
[
hCompEt_lin
,
hCompSumEt_lin
]
metAlg
.
MonTool
=
metMon
topSequence
+=
metAlg
# from TrigCaloRec.TrigCaloRecConfig import TrigCaloClusterMakerMT_topo
# # clusterMakerAlgo = TrigCaloClusterMakerMT_topo(name="ClustermakerMT_topo",cells="cells",doMoments=True,doLC=True)
# # Get conditions error using TrigLocalCalib tool, so set doLC=False
# clusterMakerAlgo = TrigCaloClusterMakerMT_topo(name="ClustermakerMT_topo",cells="cells",doMoments=True,doLC=False)
# clusterMakerAlgo.OutputLevel=VERBOSE
# topSequence += clusterMakerAlgo
# print ToolSvc
This diff is collapsed.
Click to expand it.
Trigger/TrigAlgorithms/TrigEFMissingET/test/test_met_fexes.sh
+
2
−
2
View file @
b2100c18
...
...
@@ -4,6 +4,6 @@
STARDATE
=
`
date
+%g%m%d.%k%M
`
athena
--threads
=
1
--evtMax
=
10
--filesInput
=
"/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/TrigP1Test/data17_13TeV.00327265.physics_EnhancedBias.merge.RAW._lb0100._SFO-1._0001.1"
Trig
EFMissingET
/testMET.py &> run_
${
STARDATE
}
.log &
athena
--threads
=
1
--evtMax
=
10
--filesInput
=
"/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/TrigP1Test/data17_13TeV.00327265.physics_EnhancedBias.merge.RAW._lb0100._SFO-1._0001.1"
Trig
UpgradeTest
/testMET.py &> run_
${
STARDATE
}
.log &
echo
"Running in background. Log output to run_
${
STARDATE
}
.log. Execute 'tail -f' to follow. "
\ No newline at end of file
echo
"Running in background. Log output to run_
${
STARDATE
}
.log. Execute 'tail -f' to follow. "
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
register
or
sign in
to comment