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
LArRawConditions
LArRawConditions
LArMinBiasAverageComplete.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
#ifndef LARRAWCONDITIONS_LARMINBIASAVERAGECOMPLETE_H
6
#define LARRAWCONDITIONS_LARMINBIASAVERAGECOMPLETE_H
7
8
#include "
AthenaKernel/CLASS_DEF.h
"
9
#include "
LArElecCalib/ILArMinBiasAverage.h
"
10
#include "
LArRawConditions/LArMinBiasAverageP.h
"
11
#include "
LArRawConditions/LArConditionsContainer.h
"
12
13
#include <vector>
14
20
class
LArMinBiasAverageComplete
:
public
ILArMinBiasAverage
,
21
public
LArConditionsContainer
<LArMinBiasAverageP>
22
{
23
24
public
:
25
typedef
LArConditionsContainer<LArMinBiasAverageP>
CONTAINER
;
26
LArMinBiasAverageComplete
();
27
virtual
~LArMinBiasAverageComplete
( );
28
29
// retrieving RMS of E in Minimum Bias events, using online ID
30
virtual
const
float
&
minBiasAverage
(
const
HWIdentifier
& CellID)
const
;
31
32
// set method filling the data members individually (if one
33
// wants to fill this class not using the DB)
34
void
set
(
const
HWIdentifier
& CellID,
float
vMinBiasAverage);
35
36
};
37
38
39
CLASS_DEF
(
LArMinBiasAverageComplete
, 242511813 ,1)
40
#endif
LArMinBiasAverageComplete::set
void set(const HWIdentifier &CellID, float vMinBiasAverage)
Definition:
LArMinBiasAverageComplete.cxx:13
ILArMinBiasAverage
Definition:
ILArMinBiasAverage.h:13
LArConditionsContainer.h
HWIdentifier
Definition:
HWIdentifier.h:13
LArMinBiasAverageComplete::CONTAINER
LArConditionsContainer< LArMinBiasAverageP > CONTAINER
Definition:
LArMinBiasAverageComplete.h:25
LArConditionsContainer
Definition:
LArAutoCorrSym.h:14
LArMinBiasAverageComplete::minBiasAverage
virtual const float & minBiasAverage(const HWIdentifier &CellID) const
access to average of E in minimum bias events index by Identifier
Definition:
LArMinBiasAverageComplete.cxx:22
LArMinBiasAverageComplete::~LArMinBiasAverageComplete
virtual ~LArMinBiasAverageComplete()
Definition:
LArMinBiasAverageComplete.cxx:9
LArMinBiasAverageComplete::LArMinBiasAverageComplete
LArMinBiasAverageComplete()
Definition:
LArMinBiasAverageComplete.cxx:7
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
LArMinBiasAverageComplete
This class implements the ILArMinBiasAverage interface History:
Definition:
LArMinBiasAverageComplete.h:22
LArMinBiasAverageP.h
CLASS_DEF.h
macros to associate a CLID to a type
ILArMinBiasAverage.h
Generated on Wed Apr 16 2025 21:14:00 for ATLAS Offline Software by
1.8.18