Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review 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
atlas
athena
Merge requests
!30503
Add SCT_RawDataByteStreamCnv/testSCTDecode.py for performance measurement (
ATLASRECTS-4905
)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add SCT_RawDataByteStreamCnv/testSCTDecode.py for performance measurement (
ATLASRECTS-4905
)
oda/athena:21.0-sct-decode
into
21.0
Overview
5
Commits
3
Pipelines
1
Changes
4
Merged
Susumu Oda
requested to merge
oda/athena:21.0-sct-decode
into
21.0
5 years ago
Overview
5
Commits
3
Pipelines
1
Changes
4
Expand
Add SCT_RawDataByteStreamCnv/testSCTDecode.py for performance measurement
https://its.cern.ch/jira/browse/ATLASRECTS-4905
The same algorithms as
!30502 (merged)
are run.
Use declareProperty for SCT_ConditionsSummarySvc in SCT_ConditionsSummaryTestAlg.cxx
Add checks of m_selectSCTs, m_selectPixels and m_overlap flags in SiTrackerSpacePointFinder.cxx
RunTier0Tests.py was fine.
RunTier0Tests.log
Edited
5 years ago
by
Susumu Oda
0
0
Merge request reports
Compare
21.0
21.0 (base)
and
latest version
latest version
709b40d1
3 commits,
5 years ago
4 files
+
299
−
22
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
InnerDetector/InDetConditions/SCT_ConditionsServices/src/SCT_ConditionsSummaryTestAlg.cxx
+
5
−
4
Options
/*
Copyright (C) 2002-20
17
CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-20
20
CERN for the benefit of the ATLAS collaboration
*/
/**
@@ -27,9 +27,10 @@
SCT_ConditionsSummaryTestAlg
::
SCT_ConditionsSummaryTestAlg
(
const
std
::
string
&
name
,
ISvcLocator
*
pSvcLocator
)
:
AthAlgorithm
(
name
,
pSvcLocator
),
m_pSummarySvc
(
"SCT_ConditionsSummarySvc"
,
name
){
//nop
AthAlgorithm
(
name
,
pSvcLocator
),
m_pSummarySvc
(
"InDetSCT_ConditionsSummarySvc"
,
name
)
{
declareProperty
(
"ConditionsSummarySvc"
,
m_pSummarySvc
);
}
SCT_ConditionsSummaryTestAlg
::~
SCT_ConditionsSummaryTestAlg
()
Loading