Main Page
Namespaces
Classes
Package Documentation
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
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])
print
void print(TMatrixD &m, const char *label=nullptr, bool mathematicaFormat=false)
Definition:
Utilities.cc:47
digitizers_cfi.strip
strip
Definition:
digitizers_cfi.py:45
submitPVValidationJobs.split
def split
Definition:
submitPVValidationJobs.py:352
Generated for CMSSW Reference Manual by
1.8.5