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
LArCalibUtils
LArCalibUtils
LArHVCorrMaker.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
//Dear emacs, this is -*-c++-*-
6
7
#ifndef LARHVCORRMAKER_H
8
#define LARHVCORRMAKER_H
9
10
// Include files
11
#include "
AthenaBaseComps/AthAlgorithm.h
"
12
#include "
StoreGate/ReadCondHandleKey.h
"
13
#include "
LArElecCalib/ILArHVScaleCorr.h
"
14
#include "
LArCabling/LArOnOffIdMapping.h
"
15
16
17
//-----------------------------------------------------------------------
18
class
LArHVCorrMaker
:
public
AthAlgorithm
19
//------`-----------------------------------------------------------------
20
{
21
public
:
22
23
//Delgate constructor
24
using
AthAlgorithm::AthAlgorithm
;
25
26
27
// Destructor
28
virtual
~LArHVCorrMaker
();
29
30
// Algorithm initialization
31
virtual
StatusCode
initialize
()
override
;
32
33
// Algorithm execution
34
virtual
StatusCode
execute
()
override
;
35
36
// Algorithm finalization
37
virtual
StatusCode
stop
()
override
;
38
virtual
StatusCode
finalize
()
override
{
return
StatusCode::SUCCESS;}
39
40
private
:
41
42
Gaudi::Property<std::string>
m_folderName
{
this
,
"folderName"
,
"/LAR/ElecCalibFlat/HVScaleCorr"
,
43
"Folder to store the CondAttrListCollection containing the HVScale correction"
};
44
BooleanProperty
m_isSC
{
this
,
"SuperCell"
,
false
,
"Runnning for SC ?"
};
45
46
SG::ReadCondHandleKey<ILArHVScaleCorr>
m_scaleCorrKey
47
{
this
,
"LArHVScaleCorr"
,
"LArHVScaleCorrRecomputed"
,
""
};
48
SG::ReadCondHandleKey<LArOnOffIdMapping>
m_cablingKey
49
{
this
,
"CablingKey"
,
"LArOnOffIdMap"
,
"SG Key of LArOnOffIdMapping object"
};
50
51
};
52
53
#endif
LArHVCorrMaker::initialize
virtual StatusCode initialize() override
Definition:
LArHVCorrMaker.cxx:27
LArHVCorrMaker::finalize
virtual StatusCode finalize() override
Definition:
LArHVCorrMaker.h:38
LArHVCorrMaker::m_scaleCorrKey
SG::ReadCondHandleKey< ILArHVScaleCorr > m_scaleCorrKey
Definition:
LArHVCorrMaker.h:47
AthAlgorithm.h
LArHVCorrMaker
Definition:
LArHVCorrMaker.h:20
LArOnOffIdMapping.h
LArHVCorrMaker::m_cablingKey
SG::ReadCondHandleKey< LArOnOffIdMapping > m_cablingKey
Definition:
LArHVCorrMaker.h:49
ILArHVScaleCorr.h
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
AthAlgorithm
Definition:
AthAlgorithm.h:47
ReadCondHandleKey.h
LArHVCorrMaker::m_isSC
BooleanProperty m_isSC
Definition:
LArHVCorrMaker.h:44
SG::ReadCondHandleKey< ILArHVScaleCorr >
LArHVCorrMaker::m_folderName
Gaudi::Property< std::string > m_folderName
Definition:
LArHVCorrMaker.h:42
AthAlgorithm::AthAlgorithm
AthAlgorithm()
Default constructor:
LArHVCorrMaker::stop
virtual StatusCode stop() override
Definition:
LArHVCorrMaker.cxx:44
LArHVCorrMaker::execute
virtual StatusCode execute() override
Definition:
LArHVCorrMaker.cxx:37
LArHVCorrMaker::~LArHVCorrMaker
virtual ~LArHVCorrMaker()
Generated on Wed May 28 2025 21:13:06 for ATLAS Offline Software by
1.8.18