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
Trigger
TrigCost
TrigCostAnalysis
src
counters
CounterChain.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef TRIGCOSTANALYSIS_COUNTERCHAIN_H
6
#define TRIGCOSTANALYSIS_COUNTERCHAIN_H 1
7
8
#include "../CounterBase.h"
9
14
class
CounterChain
:
public
CounterBase
{
15
public
:
19
CounterChain
() =
delete
;
20
26
CounterChain
(
const
std::string&
name
,
const
MonitorBase
*
parent
);
27
34
CounterChain
(
const
std::string&
name
,
unsigned
nRos,
const
MonitorBase
*
parent
);
35
39
virtual
~CounterChain
() =
default
;
40
44
CounterChain
&
operator=
(
const
CounterChain
&) =
delete
;
45
49
CounterChain
(
const
CounterChain
&) =
delete
;
50
57
virtual
StatusCode
newEvent
(
const
CostData
&
data
,
size_t
index
,
const
float
weight
= 1.)
override
;
58
59
private
:
60
bool
m_isInitialized
;
61
};
62
63
#endif // TRIGCOSTANALYSIS_COUNTERALGORITHM_H
data
char data[hepevt_bytes_allocation_ATLAS]
Definition:
HepEvt.cxx:11
CounterBase
Forward declare.
Definition:
CounterBase.h:25
CounterChain::m_isInitialized
bool m_isInitialized
Definition:
CounterChain.h:60
index
Definition:
index.py:1
CounterChain::CounterChain
CounterChain(const CounterChain &)=delete
Forbid copy.
dqt_zlumi_pandas.weight
int weight
Definition:
dqt_zlumi_pandas.py:189
CounterChain::newEvent
virtual StatusCode newEvent(const CostData &data, size_t index, const float weight=1.) override
Concrete implimentation.
Definition:
CounterChain.cxx:38
CounterChain::CounterChain
CounterChain()=delete
Forbid default constructor.
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
test_pyathena.parent
parent
Definition:
test_pyathena.py:15
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
MonitorBase
Forward declare.
Definition:
Trigger/TrigCost/TrigCostAnalysis/src/MonitorBase.h:33
CounterChain
Concrete implimentation of Counter to monitor all properties of a given Chain instance.
Definition:
CounterChain.h:14
CostData
Caches and propagates event data to be used by monitoring algorithms.
Definition:
CostData.h:26
CounterChain::operator=
CounterChain & operator=(const CounterChain &)=delete
Forbid assignment.
CounterChain::~CounterChain
virtual ~CounterChain()=default
Default destructor.
Generated on Fri Apr 4 2025 21:08:51 for ATLAS Offline Software by
1.8.18