Main Page
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
y
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
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
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
_
a
d
e
f
l
m
o
p
s
t
u
v
Related 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
Package Documentation
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
CondFormats
L1TObjects
interface
L1RCTNoisyChannelMask.h
Go to the documentation of this file.
1
#ifndef L1TObjects_L1RCTNoisyChannelMask_h
2
#define L1TObjects_L1RCTNoisyChannelMask_h
3
#include "
CondFormats/Serialization/interface/Serializable.h
"
4
5
#include <ostream>
6
7
struct
L1RCTNoisyChannelMask
{
8
bool
ecalMask
[18][2][28];
9
bool
hcalMask
[18][2][28];
10
bool
hfMask
[18][2][4];
11
12
float
ecalThreshold
;
13
float
hcalThreshold
;
14
float
hfThreshold
;
15
16
void
print
(std::ostream&
s
)
const
{
17
s
<<
"Printing record L1RCTNoisyChannelMaskRcd "
<< std::endl;
18
19
s
<<
"ECAL noise mask threshold: ecalThreshold"
<<
ecalThreshold
<< std::endl;
20
s
<<
"HCAL noise mask threshold: hcalThreshold"
<<
hcalThreshold
<< std::endl;
21
s
<<
"HF noise mask threshold: hfThreshold"
<<
hfThreshold
<< std::endl;
22
s
<<
"Noisy Masked channels in L1RCTNoisyChannelMask"
<< std::endl;
23
for
(
int
i
= 0;
i
< 18;
i
++)
24
for
(
int
j
= 0;
j
< 2;
j
++) {
25
for
(
int
k
= 0;
k
< 28;
k
++) {
26
if
(
ecalMask
[
i
][
j
][
k
])
27
s
<<
"ECAL masked noisy channel: RCT crate "
<<
i
<<
" iphi "
<<
j
<<
" ieta "
<<
k
<< std::endl;
28
if
(
hcalMask
[
i
][
j
][
k
])
29
s
<<
"HCAL masked noisy channel: RCT crate "
<<
i
<<
" iphi "
<<
j
<<
" ieta "
<<
k
<< std::endl;
30
}
31
for
(
int
k
= 0;
k
< 4;
k
++)
32
if
(
hfMask
[
i
][
j
][
k
])
33
s
<<
"HF masked noisy channel: RCT crate "
<<
i
<<
" iphi "
<<
j
<<
" ieta "
<<
k
<< std::endl;
34
}
35
}
36
37
COND_SERIALIZABLE
;
38
};
39
40
#endif
mps_fire.i
i
Definition:
mps_fire.py:428
L1RCTNoisyChannelMask::hfThreshold
float hfThreshold
Definition:
L1RCTNoisyChannelMask.h:14
COND_SERIALIZABLE
#define COND_SERIALIZABLE
Definition:
Serializable.h:39
L1RCTNoisyChannelMask::ecalMask
bool ecalMask[18][2][28]
Definition:
L1RCTNoisyChannelMask.h:8
L1RCTNoisyChannelMask
Definition:
L1RCTNoisyChannelMask.h:7
alignCSCRings.s
s
Definition:
alignCSCRings.py:92
dqmdumpme.k
k
Definition:
dqmdumpme.py:60
Serializable.h
L1RCTNoisyChannelMask::ecalThreshold
float ecalThreshold
Definition:
L1RCTNoisyChannelMask.h:12
L1RCTNoisyChannelMask::hfMask
bool hfMask[18][2][4]
Definition:
L1RCTNoisyChannelMask.h:10
dqmiolumiharvest.j
j
Definition:
dqmiolumiharvest.py:66
L1RCTNoisyChannelMask::print
void print(std::ostream &s) const
Definition:
L1RCTNoisyChannelMask.h:16
L1RCTNoisyChannelMask::hcalThreshold
float hcalThreshold
Definition:
L1RCTNoisyChannelMask.h:13
L1RCTNoisyChannelMask::hcalMask
bool hcalMask[18][2][28]
Definition:
L1RCTNoisyChannelMask.h:9
Generated for CMSSW Reference Manual by
1.8.16