Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
Related Functions
:
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
v
w
x
z
Files
File List
File Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
GitLab
LXR
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
Control
AthenaMonitoring
AthenaMonitoring
IMonitorToolBase.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef IMONITORTOOLBASE_H
6
#define IMONITORTOOLBASE_H
7
8
#include "GaudiKernel/IAlgTool.h"
9
#include <vector>
10
11
12
// Declaration of the interface ID ( interface id, major version, minor version)
13
static
const
InterfaceID IID_IMonitorToolBase(
"IMonitorToolBase"
, 1 , 0);
14
15
16
// The interface implemented by concrete Monitoring tools.
17
// Concrete tools, derived from the MonitorToolBase base abstract
18
// class are controlled via this interface.
19
//
20
// @author Manuel Diaz <Manuel.Diaz.Gomez@cern.ch>
21
22
23
class
IMonitorToolBase
:
virtual
public
IAlgTool
24
25
{
26
public
:
27
28
// Retrieve interface ID
29
static
const
InterfaceID&
interfaceID
() {
return
IID_IMonitorToolBase; }
30
31
virtual
StatusCode
setupOutputStreams
(std::vector<std::string> Mapping
32
= std::vector<std::string>() ) = 0;
33
34
//Virtual destructor
35
virtual
~IMonitorToolBase
() {}
36
37
// book & fill (pure virtual)
38
virtual
StatusCode
bookHists
() = 0;
39
virtual
StatusCode
fillHists
() = 0;
40
virtual
StatusCode
finalHists
() = 0;
41
virtual
StatusCode
runStat
() = 0;
42
virtual
StatusCode
checkHists
(
bool
fromFinalize) = 0;
43
virtual
bool
preSelector
() = 0;
44
};
45
#endif
IMonitorToolBase::fillHists
virtual StatusCode fillHists()=0
IMonitorToolBase::preSelector
virtual bool preSelector()=0
IMonitorToolBase::setupOutputStreams
virtual StatusCode setupOutputStreams(std::vector< std::string > Mapping=std::vector< std::string >())=0
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
IMonitorToolBase::finalHists
virtual StatusCode finalHists()=0
IMonitorToolBase::~IMonitorToolBase
virtual ~IMonitorToolBase()
Definition:
IMonitorToolBase.h:35
IMonitorToolBase
Definition:
IMonitorToolBase.h:25
IMonitorToolBase::checkHists
virtual StatusCode checkHists(bool fromFinalize)=0
IMonitorToolBase::interfaceID
static const InterfaceID & interfaceID()
Definition:
IMonitorToolBase.h:29
IMonitorToolBase::runStat
virtual StatusCode runStat()=0
IMonitorToolBase::bookHists
virtual StatusCode bookHists()=0
Generated on Tue Mar 25 2025 21:11:47 for ATLAS Offline Software by
1.8.18