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
DQM
CSCMonitorModule
data
combine.py
Go to the documentation of this file.
1
#!python
2
3
from
__future__
import
print_function
4
histos={}
5
missing={}
6
7
f=open(
'CSCDQM_HistoType.txt'
,
'r'
)
8
for
h
in
f:
9
histos[h.strip()]=0
10
11
f=open(
'map.txt'
,
'r'
)
12
for
h
in
f:
13
a=h.strip().
split
()
14
key=a[0].
strip
()
15
name=a[1].
strip
()
16
if
key
in
histos:
17
histos[key]=name
18
else
:
19
missing[key]=name
20
21
a=sorted(histos.keys())
22
for
h
in
a:
23
print
(h, end=
' '
)
24
if
histos[h] != 0:
25
print
(
"\t\t\t\t\t"
, histos[h])
26
else
:
27
print
(
""
)
28
29
print
(
"========================= MISSING ============================"
)
30
31
a=missing.keys()
32
a.sort()
33
for
h
in
a:
34
print
(h, missing[h])
digitizers_cfi.strip
strip
Definition:
digitizers_cfi.py:19
cms::dd::split
std::vector< std::string_view > split(std::string_view, const char *)
edm::print
S & print(S &os, JobReport::InputFile const &f)
Definition:
JobReport.cc:66
Generated for CMSSW Reference Manual by
1.8.16