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
w
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
LArCalorimeter
LArBadChannelTool
LArBadChannelTool
LArBadFebCondAlg.h
Go to the documentation of this file.
1
//Dear emacs, this is -*- c++ -*-
2
3
/*
4
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
5
*/
6
7
#ifndef LARBADFEBCONDALG_H
8
#define LARBADFEBCONDALG_H
9
10
#include "
AthenaBaseComps/AthReentrantAlgorithm.h
"
11
#include "
StoreGate/ReadCondHandleKey.h
"
12
#include "
StoreGate/WriteCondHandleKey.h
"
13
#include "
AthenaPoolUtilities/AthenaAttributeList.h
"
14
#include "
LArRecConditions/LArBadChannelCont.h
"
15
16
class
LArBadFebCondAlg
:
public
AthReentrantAlgorithm
{
17
public
:
18
//Delegate to base-class ctor
19
using
AthReentrantAlgorithm::AthReentrantAlgorithm;
20
virtual
~LArBadFebCondAlg
()=
default
;
21
22
virtual
StatusCode
initialize
() override
final
;
23
virtual
StatusCode
execute
(
const
EventContext& ctx)
const
override
final
;
24
virtual
StatusCode
finalize
() override
final
{
return
StatusCode::SUCCESS;}
25
virtual
bool
isReEntrant
()
const
override
final
{
return
false
; }
26
27
private
:
28
SG::ReadCondHandleKey<AthenaAttributeList>
m_BCInputKey
{
this
,
"ReadKey"
,
"/LAR/BadFebsOfl/BadFebs"
,
29
"Key of input CDO (AttributeList)"
};
30
SG::WriteCondHandleKey<LArBadFebCont>
m_BCOutputKey
{
this
,
"WriteKey"
,
"LArBadFeb"
,
"Key of output CDO"
};
31
32
Gaudi::Property<std::string>
m_inputFileName
{
this
,
"InputFileName"
,
""
,
33
"Optional file containing (supplemental) bad Febs"
};
34
};
35
36
37
38
#endif
LArBadFebCondAlg::m_BCOutputKey
SG::WriteCondHandleKey< LArBadFebCont > m_BCOutputKey
Definition:
LArBadFebCondAlg.h:30
LArBadFebCondAlg::m_BCInputKey
SG::ReadCondHandleKey< AthenaAttributeList > m_BCInputKey
Definition:
LArBadFebCondAlg.h:28
LArBadFebCondAlg::~LArBadFebCondAlg
virtual ~LArBadFebCondAlg()=default
WriteCondHandleKey.h
const
bool const RAWDATA *ch2 const
Definition:
LArRodBlockPhysicsV0.cxx:560
LArBadFebCondAlg::finalize
virtual StatusCode finalize() override final
Definition:
LArBadFebCondAlg.h:24
AthenaAttributeList.h
LArBadFebCondAlg::execute
virtual StatusCode execute(const EventContext &ctx) const override final
Definition:
LArBadFebCondAlg.cxx:21
AthReentrantAlgorithm
An algorithm that can be simultaneously executed in multiple threads.
Definition:
AthReentrantAlgorithm.h:74
LArBadChannelCont.h
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
LArBadFebCondAlg::m_inputFileName
Gaudi::Property< std::string > m_inputFileName
Definition:
LArBadFebCondAlg.h:32
columnar::final
CM final
Definition:
ColumnAccessor.h:106
ReadCondHandleKey.h
AthReentrantAlgorithm.h
LArBadFebCondAlg::initialize
virtual StatusCode initialize() override final
Definition:
LArBadFebCondAlg.cxx:11
SG::ReadCondHandleKey< AthenaAttributeList >
LArBadFebCondAlg
Definition:
LArBadFebCondAlg.h:16
LArBadFebCondAlg::isReEntrant
virtual bool isReEntrant() const override final
Definition:
LArBadFebCondAlg.h:25
SG::WriteCondHandleKey
Definition:
WriteCondHandleKey.h:20
Generated on Sun Jun 1 2025 21:12:43 for ATLAS Offline Software by
1.8.18