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
LArCalorimeter
LArCOOLConditions
LArCOOLConditions
LArOFCweightSC.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
#ifndef LARCOOLCONDITIONS_OFCWEIGHTSC_H
7
#define LARCOOLCONDITIONS_OFCWEIGHTSC_H
8
9
#include "
LArCOOLConditions/LArSingleFloatBlob.h
"
10
#include "
LArCOOLConditions/LArCondSuperCellBase.h
"
11
12
class
CondAttrListCollection
;
13
14
class
LArOFCweightSC
:
15
public
LArCondSuperCellBase
,
16
public
LArSingleFloatBlob
{
17
18
public
:
19
LArOFCweightSC
();
20
LArOFCweightSC
(
const
CondAttrListCollection
* attrList);
21
22
virtual
~LArOFCweightSC
() =
default
;
23
24
bool
good
()
const
{
return
m_isInitialized
&&
m_nChannels
>0; }
25
26
// retrieving weight using online ID
27
const
float
&
getW
(
const
HWIdentifier
& chid)
const
;
28
29
private
:
30
};
31
32
#include "
AthenaKernel/CondCont.h
"
33
CLASS_DEF
(
LArOFCweightSC
, 224728897, 1 )
34
CONDCONT_DEF
(
LArOFCweightSC
, 81787215 );
35
36
#endif
CondCont.h
Hold mappings of ranges to condition objects.
HWIdentifier
Definition:
HWIdentifier.h:13
CondAttrListCollection
This class is a collection of AttributeLists where each one is associated with a channel number....
Definition:
CondAttrListCollection.h:52
LArSingleFloatBlob::m_nChannels
unsigned m_nChannels
Definition:
LArSingleFloatBlob.h:30
LArOFCweightSC::good
bool good() const
Definition:
LArOFCweightSC.h:24
LArSingleFloatBlob
Definition:
LArSingleFloatBlob.h:15
LArCondSuperCellBase
Definition:
LArCondSuperCellBase.h:15
LArOFCweightSC::LArOFCweightSC
LArOFCweightSC()
Definition:
LArOFCweightSC.cxx:7
LArOFCweightSC::~LArOFCweightSC
virtual ~LArOFCweightSC()=default
LArSingleFloatBlob.h
LArOFCweightSC
Definition:
LArOFCweightSC.h:16
LArCondSuperCellBase.h
CLASS_DEF
#define CLASS_DEF(NAME, CID, VERSION)
associate a clid and a version to a type eg
Definition:
Control/AthenaKernel/AthenaKernel/CLASS_DEF.h:67
LArOFCweightSC::getW
const float & getW(const HWIdentifier &chid) const
Definition:
LArOFCweightSC.cxx:24
LArCondSuperCellBase::m_isInitialized
bool m_isInitialized
Definition:
LArCondSuperCellBase.h:22
CONDCONT_DEF
CONDCONT_DEF(LArOFCweightSC, 81787215)
Generated on Sun Mar 16 2025 21:13:51 for ATLAS Offline Software by
1.8.18