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_p6.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-2024 CERN for the benefit of the ATLAS collaboration
5
*/
6
7
#ifndef LARNOISYROSUMMARY_p6_H
8
#define LARNOISYROSUMMARY_p6_H
9
10
#include <vector>
11
#include <utility>
12
#include <stdint.h>
13
14
class
LArNoisyROSummary_p6
15
{
16
public
:
17
friend
class
LArNoisyROSummaryCnv_p6
;
18
19
LArNoisyROSummary_p6
():
20
m_noisy_febs
(),
21
m_MNBTight_febs
(),
22
m_MNBLoose_febs
(),
23
m_noisy_preamps
(),
24
m_noisy_hvlines
(),
25
m_BadFEBFlaggedPartitions
(0),
26
m_BadFEB_WFlaggedPartitions
(0),
27
m_SatMediumFlaggedPartitions
(0),
28
m_SatTightFlaggedPartitions
(0),
29
m_MNBLooseFlaggedPartitions
(0),
30
m_MNBTightFlaggedPartitions
(0),
31
m_MNBTight_PsVetoFlaggedPartitions
(0),
32
m_BadHVlinesPartitions
(0)
33
{};
34
35
private
:
36
std::vector<unsigned int>
m_noisy_febs
;
37
std::vector<unsigned int>
m_MNBTight_febs
;
38
std::vector<unsigned int>
m_MNBLoose_febs
;
39
std::vector< std::pair<unsigned int, std::vector<int> > >
m_noisy_preamps
;
40
std::vector<unsigned int>
m_noisy_hvlines
;
41
uint8_t
m_BadFEBFlaggedPartitions
;
42
uint8_t
m_BadFEB_WFlaggedPartitions
;
43
uint8_t
m_SatMediumFlaggedPartitions
;
44
uint8_t
m_SatTightFlaggedPartitions
;
45
uint8_t
m_MNBLooseFlaggedPartitions
;
46
uint8_t
m_MNBTightFlaggedPartitions
;
47
uint8_t
m_MNBTight_PsVetoFlaggedPartitions
;
48
uint8_t
m_BadHVlinesPartitions
;
49
50
};
51
52
#endif
xAOD::uint8_t
uint8_t
Definition:
Muon_v1.cxx:557
LArNoisyROSummary_p6::m_noisy_febs
std::vector< unsigned int > m_noisy_febs
Definition:
LArNoisyROSummary_p6.h:33
LArNoisyROSummaryCnv_p6
Definition:
LArNoisyROSummaryCnv_p6.h:16
LArNoisyROSummary_p6::m_MNBTight_febs
std::vector< unsigned int > m_MNBTight_febs
Definition:
LArNoisyROSummary_p6.h:37
LArNoisyROSummary_p6::m_noisy_hvlines
std::vector< unsigned int > m_noisy_hvlines
Definition:
LArNoisyROSummary_p6.h:40
LArNoisyROSummary_p6::m_SatTightFlaggedPartitions
uint8_t m_SatTightFlaggedPartitions
Definition:
LArNoisyROSummary_p6.h:44
LArNoisyROSummary_p6::m_MNBLoose_febs
std::vector< unsigned int > m_MNBLoose_febs
Definition:
LArNoisyROSummary_p6.h:38
LArNoisyROSummary_p6
Definition:
LArNoisyROSummary_p6.h:15
LArNoisyROSummary_p6::m_BadFEB_WFlaggedPartitions
uint8_t m_BadFEB_WFlaggedPartitions
Definition:
LArNoisyROSummary_p6.h:42
LArNoisyROSummary_p6::m_MNBLooseFlaggedPartitions
uint8_t m_MNBLooseFlaggedPartitions
Definition:
LArNoisyROSummary_p6.h:45
LArNoisyROSummary_p6::m_BadHVlinesPartitions
uint8_t m_BadHVlinesPartitions
Definition:
LArNoisyROSummary_p6.h:48
LArNoisyROSummary_p6::m_SatMediumFlaggedPartitions
uint8_t m_SatMediumFlaggedPartitions
Definition:
LArNoisyROSummary_p6.h:43
LArNoisyROSummary_p6::m_BadFEBFlaggedPartitions
uint8_t m_BadFEBFlaggedPartitions
Definition:
LArNoisyROSummary_p6.h:41
LArNoisyROSummary_p6::m_noisy_preamps
std::vector< std::pair< unsigned int, std::vector< int > > > m_noisy_preamps
Definition:
LArNoisyROSummary_p6.h:39
LArNoisyROSummary_p6::m_MNBTightFlaggedPartitions
uint8_t m_MNBTightFlaggedPartitions
Definition:
LArNoisyROSummary_p6.h:46
LArNoisyROSummary_p6::LArNoisyROSummary_p6
LArNoisyROSummary_p6()
Definition:
LArNoisyROSummary_p6.h:19
LArNoisyROSummary_p6::m_MNBTight_PsVetoFlaggedPartitions
uint8_t m_MNBTight_PsVetoFlaggedPartitions
Definition:
LArNoisyROSummary_p6.h:47
Generated on Sat Mar 15 2025 21:13:53 for ATLAS Offline Software by
1.8.18