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
Calorimeter
CaloRec
src
CaloCellContainerCheckerTool.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
//Dear emacs, this is -*-c++-*-
6
#ifndef CALOREC_CALOCELLCONTAINERCHECKERTOOL_H
7
#define CALOREC_CALOCELLCONTAINERCHECKERTOOL_H
8
9
#include "
AthenaBaseComps/AthAlgTool.h
"
10
#include "
CaloInterface/ICaloCellMakerTool.h
"
11
#include "
CaloInterface/ICaloConstCellMakerTool.h
"
12
13
14
class
CaloCell_ID
;
15
16
class
CaloCellContainerCheckerTool
17
:
public
extends<AthAlgTool, ICaloCellMakerTool, ICaloConstCellMakerTool>
18
{
19
20
public
:
21
22
CaloCellContainerCheckerTool
(
const
std::string&
type
,
23
const
std::string&
name
,
24
const
IInterface*
parent
) ;
25
26
27
virtual
StatusCode
initialize
()
override
;
28
29
virtual
StatusCode
process
(
CaloCellContainer
* theCellContainer,
30
const
EventContext& ctx)
const override
;
31
virtual
StatusCode
process
(
CaloConstCellContainer
* theCellContainer,
32
const
EventContext& ctx)
const override
;
33
34
private
:
35
StatusCode
doProcess
(
const
CaloCellContainer
* theCellContainer,
36
const
EventContext& ctx)
const
;
37
38
size_t
m_eventsToCheck
;
39
const
CaloCell_ID
*
m_theCaloCCIDM
=
nullptr
;
40
41
};
42
43
#endif
44
CaloCellContainerCheckerTool::doProcess
StatusCode doProcess(const CaloCellContainer *theCellContainer, const EventContext &ctx) const
Definition:
CaloCellContainerCheckerTool.cxx:75
CaloCellContainerCheckerTool::m_theCaloCCIDM
const CaloCell_ID * m_theCaloCCIDM
Definition:
CaloCellContainerCheckerTool.h:39
ICaloConstCellMakerTool.h
Operate on pointers to const CaloCell.
CaloCellContainerCheckerTool::m_eventsToCheck
size_t m_eventsToCheck
Definition:
CaloCellContainerCheckerTool.h:38
python.CaloAddPedShiftConfig.type
type
Definition:
CaloAddPedShiftConfig.py:42
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
AthAlgTool.h
CaloCellContainerCheckerTool::initialize
virtual StatusCode initialize() override
Definition:
CaloCellContainerCheckerTool.cxx:51
test_pyathena.parent
parent
Definition:
test_pyathena.py:15
CaloCell_ID
Helper class for offline cell identifiers.
Definition:
CaloCell_ID.h:34
CaloCellContainerCheckerTool::process
virtual StatusCode process(CaloCellContainer *theCellContainer, const EventContext &ctx) const override
Definition:
CaloCellContainerCheckerTool.cxx:59
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:228
CaloCellContainer
Container class for CaloCell.
Definition:
CaloCellContainer.h:55
ICaloCellMakerTool.h
CaloCellContainerCheckerTool::CaloCellContainerCheckerTool
CaloCellContainerCheckerTool(const std::string &type, const std::string &name, const IInterface *parent)
Definition:
CaloCellContainerCheckerTool.cxx:34
CaloConstCellContainer
CaloCellContainer that can accept const cell pointers.
Definition:
CaloConstCellContainer.h:45
CaloCellContainerCheckerTool
Definition:
CaloCellContainerCheckerTool.h:18
Generated on Sun Mar 23 2025 21:07:57 for ATLAS Offline Software by
1.8.18