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
!20722
DataQualityTools: VarHandle migration.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
DataQualityTools: VarHandle migration.
ssnyder/athena:varHandle.DataQualityTools-20190129
into
master
Overview
4
Commits
1
Pipelines
1
Changes
2
Merged
Scott Snyder
requested to merge
ssnyder/athena:varHandle.DataQualityTools-20190129
into
master
6 years ago
Overview
4
Commits
1
Pipelines
1
Changes
2
Expand
Migrate DQTDataFlowMonTool to use ReadHandle.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
660d5cf4
1 commit,
6 years ago
2 files
+
24
−
18
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
DataQuality/DataQualityTools/DataQualityTools/DQTDataFlowMonTool.h
+
11
−
8
Options
/*
Copyright (C) 2002-201
7
CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-201
9
CERN for the benefit of the ATLAS collaboration
*/
// ********************************************************************
@@ -19,6 +19,7 @@
#include
"GaudiKernel/ToolHandle.h"
#include
<stdint.h>
#include
"StoreGate/ReadHandleKey.h"
#include
"xAODEventInfo/EventInfo.h"
#include
"DataQualityTools/DataQualityFatherMonTool.h"
@@ -32,15 +33,15 @@ class DQTDataFlowMonTool: public DataQualityFatherMonTool
DQTDataFlowMonTool
(
const
std
::
string
&
type
,
const
std
::
string
&
name
,
const
IInterface
*
parent
);
~
DQTDataFlowMonTool
();
virtual
~
DQTDataFlowMonTool
();
//
StatusCode initialize();
virtual
StatusCode
initialize
()
override
;
StatusCode
bookHistogramsRecurrent
(
);
StatusCode
bookHistograms
(
);
StatusCode
fillHistograms
(
);
StatusCode
procHistograms
(
);
StatusCode
checkHists
(
bool
fromFinalize
);
virtual
StatusCode
bookHistogramsRecurrent
(
)
override
;
virtual
StatusCode
bookHistograms
(
)
override
;
virtual
StatusCode
fillHistograms
(
)
override
;
virtual
StatusCode
procHistograms
(
)
override
;
virtual
StatusCode
checkHists
(
bool
fromFinalize
)
override
;
private:
@@ -61,6 +62,8 @@ private:
typedef
std
::
pair
<
unsigned
int
,
unsigned
int
>
EvFlagPt_t
;
//std::vector<EvFlagPt_t>* m_eventflag_vec[xAOD::EventInfo::nDets];
SG
::
ReadHandleKey
<
xAOD
::
EventInfo
>
m_eventInfoKey
{
this
,
"EventInfoKey"
,
"EventInfo"
,
""
};
};
#endif
Loading