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
LArCnv
LArTPCnv
LArTPCnv
LArNoisyROSummary_p2.h
Go to the documentation of this file.
1
// This file's extension implies that it's C, but it's really -*- C++ -*-.
2
3
/*
4
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
5
*/
6
7
#ifndef LARNOISYROSUMMARY_P2_H
8
#define LARNOISYROSUMMARY_P2_H
9
10
#include <vector>
11
#include <utility>
12
#include <stdint.h>
13
14
class
LArNoisyROSummary_p2
15
{
16
public
:
17
friend
class
LArNoisyROSummaryCnv_p2
;
18
19
LArNoisyROSummary_p2
():
m_noisy_febs
(),
m_noisy_preamps
(),
20
m_BadFEBFlaggedPartitions
(0),
m_SatMediumFlaggedPartitions
(0),
21
m_SatTightFlaggedPartitions
(0) {};
22
23
//private:
24
std::vector<unsigned int>
m_noisy_febs
;
25
std::vector< std::pair<unsigned int, std::vector<int> > >
m_noisy_preamps
;
26
uint8_t
m_BadFEBFlaggedPartitions
;
27
uint8_t
m_SatMediumFlaggedPartitions
;
28
uint8_t
m_SatTightFlaggedPartitions
;
29
30
};
31
32
#endif
xAOD::uint8_t
uint8_t
Definition:
Muon_v1.cxx:557
LArNoisyROSummary_p2::m_noisy_preamps
std::vector< std::pair< unsigned int, std::vector< int > > > m_noisy_preamps
Definition:
LArNoisyROSummary_p2.h:25
LArNoisyROSummary_p2::m_SatTightFlaggedPartitions
uint8_t m_SatTightFlaggedPartitions
Definition:
LArNoisyROSummary_p2.h:28
LArNoisyROSummary_p2::m_noisy_febs
std::vector< unsigned int > m_noisy_febs
Definition:
LArNoisyROSummary_p2.h:21
LArNoisyROSummary_p2
Definition:
LArNoisyROSummary_p2.h:15
LArNoisyROSummary_p2::LArNoisyROSummary_p2
LArNoisyROSummary_p2()
Definition:
LArNoisyROSummary_p2.h:19
LArNoisyROSummaryCnv_p2
Definition:
LArNoisyROSummaryCnv_p2.h:16
LArNoisyROSummary_p2::m_BadFEBFlaggedPartitions
uint8_t m_BadFEBFlaggedPartitions
Definition:
LArNoisyROSummary_p2.h:26
LArNoisyROSummary_p2::m_SatMediumFlaggedPartitions
uint8_t m_SatMediumFlaggedPartitions
Definition:
LArNoisyROSummary_p2.h:27
Generated on Sat Mar 15 2025 21:13:53 for ATLAS Offline Software by
1.8.18