Page Menu
Home
HEPForge
Search
Configure Global Search
Log In
Files
F8309456
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
162 KB
Subscribers
None
View Options
diff
--
git
a
/
Tests
/
python
/
merge
-
EE
.
in
b
/
Tests
/
python
/
merge
-
EE
.
in
---
a
/
Tests
/
python
/
merge
-
EE
.
in
+++
b
/
Tests
/
python
/
merge
-
EE
.
in
@@
-
1
,
1534
+
1
,
1522
@@
#! @PYTHON@
# -*- mode: python -*-
from
__future__
import
print_function
import
logging
import
sys
import
math
if
sys
.
version_info
[:
3
]
<
(
2
,
4
,
0
):
print
(
"rivet scripts require Python version >= 2.4.0... exiting"
)
sys
.
exit
(
1
)
import
os
,
yoda
,
copy
# # #############################################
# remove any scatters with nans, causes yoda to crash
def
removeNan
():
global
outhistos
remove
=
[]
for
key
in
outhistos
.
keys
()
:
ao
=
outhistos
[
key
]
if
type
(
ao
)
==
yoda
.
core
.
Scatter2D
:
skip
=
False
for
p
in
ao
.
points
()
:
if
(
math
.
isnan
(
p
.
y
())
or
math
.
isnan
(
p
.
yErrs
()
.
minus
)
or
math
.
isnan
(
p
.
yErrs
()
.
plus
))
:
skip
=
True
break
if
(
skip
)
:
remove
.
append
(
key
)
for
key
in
remove
:
if
key
in
outhistos
:
del
outhistos
[
key
]
def
fillAbove
(
desthisto
,
sourcehistosbysqrts
):
temp
=
{}
for
(
key
,
val
)
in
sourcehistosbysqrts
.
items
():
if
key
==
"U1"
:
sqrts
=
9.46
if
"LENA_1981_I164397"
in
desthisto
.
path
()
:
sqrts
=
9.4624
elif
key
==
"U2"
:
sqrts
=
10.02
if
"LENA_1981_I164397"
in
desthisto
.
path
()
:
sqrts
=
10.0148
elif
key
==
"U4"
:
sqrts
=
10.58
else
:
sqrts
=
float
(
key
)
if
(
"ARGUS_1989_I276860"
in
desthisto
.
path
()
and
sqrts
==
10.
)
:
sqrts
=
9.98
elif
(
"LENA_1981_I164397"
in
desthisto
.
path
()
and
sqrts
==
10.
)
:
sqrts
=
9.9903
elif
(
"LENA_1981_I164397"
in
desthisto
.
path
()
and
sqrts
==
9.51
)
:
sqrts
=
9.5149
temp
[
sqrts
]
=
val
if
type
(
desthisto
)
is
yoda
.
core
.
Scatter2D
:
for
sqrts
,
h
in
sorted
(
temp
.
items
())
:
step
=
0.001
if
(
"TASSO_1980_I143691"
in
desthisto
.
path
())
:
step
=
0.3
if
(
"JADE_1979_I142874"
in
desthisto
.
path
())
:
step
=
0.3
if
(
"CLEO_1985_I205668"
in
desthisto
.
path
())
:
step
=
0.05
for
i
in
range
(
0
,
h
.
numPoints
())
:
xmin
=
min
(
h
.
points
()[
i
]
.
xMin
(),
h
.
points
()[
i
]
.
x
()
-
step
)
xmax
=
max
(
h
.
points
()[
i
]
.
xMax
(),
h
.
points
()[
i
]
.
x
()
+
step
)
if
(
sqrts
>=
xmin
and
sqrts
<=
xmax
)
:
desthisto
.
addPoint
(
h
.
points
()[
i
])
elif
(
type
(
desthisto
)
==
yoda
.
core
.
Profile1D
)
:
for
sqrts
,
h
in
sorted
(
temp
.
items
())
:
step
=
0.001
for
i
in
range
(
0
,
h
.
numBins
())
:
xmin
=
min
(
h
.
bins
()[
i
]
.
xMin
(),
h
.
bins
()[
i
]
.
xMid
()
-
step
)
xmax
=
max
(
h
.
bins
()[
i
]
.
xMax
(),
h
.
bins
()[
i
]
.
xMid
()
+
step
)
if
(
sqrts
>=
xmin
and
sqrts
<=
xmax
)
:
desthisto
.
bins
()[
i
]
+=
h
.
bins
()[
i
]
break
elif
(
type
(
desthisto
)
==
yoda
.
core
.
BinnedEstimate1D
)
:
for
sqrts
,
h
in
sorted
(
temp
.
items
())
:
if
h
.
numBins
()
==
len
(
h
.
xEdges
())
:
nearest
=-
1
delta
=
1e30
for
i
,
xx
in
enumerate
(
h
.
xEdges
())
:
try
:
x
=
float
(
xx
)
except
:
if
"PLUTO_1983_I191161"
in
desthisto
.
path
()
and
xx
==
"30.0 - 31.6"
:
x
=
30.8
elif
"PLUTO_1980_I154270"
in
desthisto
.
path
()
and
xx
==
"29.9 - 31.6"
:
x
=
30.7
else
:
raise
TypeError
(
"Not double bin in
%s
"
%
desthisto
.
path
())
if
abs
(
x
-
sqrts
)
<
delta
:
delta
=
abs
(
x
-
sqrts
)
nearest
=
i
desthisto
.
bins
()[
nearest
]
.
setVal
(
h
.
bins
()[
nearest
]
.
val
())
for
key
in
h
.
bins
()[
nearest
]
.
sources
()
:
desthisto
.
bins
()[
nearest
]
.
setErr
(
h
.
bins
()[
nearest
]
.
err
(
key
),
key
)
else
:
for
i
,
bin
in
enumerate
(
h
.
bins
())
:
xmin
=
bin
.
xMin
()
xmax
=
bin
.
xMax
()
if
(
sqrts
>=
xmin
and
sqrts
<=
xmax
)
:
desthisto
.
bins
()[
i
]
.
setVal
(
bin
.
val
())
for
key
in
bin
.
sources
()
:
desthisto
.
bins
()[
i
]
.
setErr
(
bin
.
err
(
key
),
key
)
else
:
logging
.
error
(
"Unknown analysis object
%s
%s
"
%
(
desthisto
.
path
(),
type
(
desthisto
))
)
sys
.
exit
(
1
)
def
merge
(
hpath
):
global
inhistos
global
outhistos
if
hpath
not
in
outhistos
:
return
fillAbove
(
outhistos
[
hpath
],
inhistos
[
hpath
])
def
useOne
(
hpath
,
sqrts
):
global
inhistos
global
outhistos
try
:
outhistos
[
hpath
]
=
inhistos
[
hpath
][
float
(
sqrts
)]
except
:
try
:
outhistos
[
hpath
]
=
inhistos
[
hpath
][
sqrts
]
except
:
pass
def
average
(
hpath
,
sqrts1
,
sqrts2
):
global
inhistos
global
outhistos
outhistos
[
hpath
]
=
inhistos
[
hpath
][
float
(
sqrts1
)]
+
inhistos
[
hpath
][
float
(
sqrts2
)]
outhistos
[
hpath
]
.
setPath
(
hpath
)
if
hasattr
(
outhistos
[
hpath
]
,
'scaleW'
):
outhistos
[
hpath
]
.
scaleW
(
0.5
)
else
:
outhistos
[
hpath
]
.
scale
(
0.5
)
if
__name__
==
"__main__"
:
import
logging
from
optparse
import
OptionParser
,
OptionGroup
parser
=
OptionParser
(
usage
=
"%prog name"
)
verbgroup
=
OptionGroup
(
parser
,
"Verbosity control"
)
verbgroup
.
add_option
(
"-v"
,
"--verbose"
,
action
=
"store_const"
,
const
=
logging
.
DEBUG
,
dest
=
"LOGLEVEL"
,
default
=
logging
.
INFO
,
help
=
"print debug (very verbose) messages"
)
verbgroup
.
add_option
(
"-q"
,
"--quiet"
,
action
=
"store_const"
,
const
=
logging
.
WARNING
,
dest
=
"LOGLEVEL"
,
default
=
logging
.
INFO
,
help
=
"be very quiet"
)
parser
.
add_option_group
(
verbgroup
)
parser
.
add_option
(
"--with-gg"
,
action
=
'store_true'
,
dest
=
"gg"
,
default
=
False
,
help
=
"Include gg analyses"
)
parser
.
add_option
(
"--without-gg"
,
action
=
'store_false'
,
dest
=
"gg"
,
default
=
False
,
help
=
"Don
\'
t include gg analyses"
)
parser
.
add_option
(
"--with-decay"
,
action
=
'store_true'
,
dest
=
"decay"
,
default
=
False
,
help
=
"Include decay analyses"
)
parser
.
add_option
(
"--without-decay"
,
action
=
'store_false'
,
dest
=
"decay"
,
default
=
False
,
help
=
"Don
\'
t include decay analyses"
)
parser
.
add_option
(
"--with-WW"
,
action
=
'store_true'
,
dest
=
"WW"
,
default
=
False
,
help
=
"Include WW analyses"
)
parser
.
add_option
(
"--without-WW"
,
action
=
'store_false'
,
dest
=
"WW"
,
default
=
False
,
help
=
"Don
\'
t include WW analyses"
)
(
opts
,
args
)
=
parser
.
parse_args
()
logging
.
basicConfig
(
level
=
opts
.
LOGLEVEL
,
format
=
"
%(message)s
"
)
## Check args
if
len
(
args
)
<
1
:
logging
.
error
(
"Must specify at least the name of the files"
)
sys
.
exit
(
1
)
#######################################
yodafiles
=
[
"130"
,
"130.1"
,
"133"
,
"136"
,
"136.1"
,
"177"
,
"192"
,
"194.4"
,
"196"
,
"202"
,
"205"
,
"206"
,
"206.2"
,
"207"
,
"91"
,
"91-nopi"
,
\
"161"
,
"161.3"
,
"182.8"
,
"183"
,
"197"
,
"35"
,
"36.2"
,
"172"
,
"172.3"
,
\
"188.6"
,
"189"
,
"200"
,
"200.2"
,
"44"
,
"14"
,
"14.8"
,
"21.5"
,
"22"
,
"22.5"
,
"25"
,
"10"
,
\
"12.8"
,
"26.8"
,
"48.0"
,
"93.0"
,
\
"12"
,
"13"
,
"17"
,
"27.6"
,
"27.7"
,
"29"
,
"30.2"
,
"30.3"
,
"34.5"
,
\
"30.7"
,
"30.8"
,
"30"
,
"31.2"
,
"31.3"
,
"31.6"
,
"34"
,
"34.8"
,
"42.1"
,
"43.5"
,
"43.6"
,
"50"
,
"52"
,
"53.3"
,
\
"55"
,
"55.3"
,
"56"
,
"57"
,
"58"
,
"59.5"
,
"60.8"
,
"60"
,
"61.4"
,
"7.7"
,
"9.4"
,
"45"
,
"65.4"
,
"66"
,
"75.7"
,
"76"
,
"41"
,
"42.6"
,
"82"
,
"85"
]
# add gg if needed
if
(
opts
.
gg
)
:
yodafiles
+=
[
"10.5-gg"
,
"12.8-gg"
,
"16.86-gg"
,
"26.8-gg"
,
\
"35.44-gg"
,
"97.0-gg"
,
"11.96-gg"
,
"13.96-gg"
,
\
"21.84-gg"
,
"28.48-gg"
,
"48.0-gg"
]
# add decays if needed
if
(
opts
.
decay
)
:
yodafiles
+=
[
"10.52"
,
"10.52-sym"
,
"10.6"
,
"2.2"
,
"2.6"
,
"3.0"
,
"3.2"
,
"4.6"
,
"4.8"
,
"5.8"
,
"6.2"
,
"6.5"
,
"6.6"
,
"7.0"
,
"7.4"
,
"3.63"
,
"4.03"
,
"4.17"
,
"4.3"
,
"4.41"
,
"5.0"
,
"5.2"
,
"4.5"
,
"8.8"
,
"9.27"
,
"9.46"
,
"9.51"
,
"10.54"
,
"10.58"
,
"10.45"
,
"10.47"
,
"Upsilon"
,
"Upsilon2"
,
"Upsilon3"
,
"Upsilon4"
,
"Upsilon5"
,
"Upsilon4-asym"
,
"Tau"
,
"Phi"
,
"Lambdac"
,
"Omega-Meson"
,
"Omega-Baryon"
,
"Eta"
,
"Xi0"
,
"Xic0"
,
"Xicp"
,
"Omegac0"
,
"Xim"
,
"Ds"
,
"Bc"
,
"Etac"
,
"JPsi"
,
"Psi2S"
,
"Psi2S-All"
,
"Psi3770"
]
# WW production
if
(
opts
.
WW
)
:
yodafiles
+=
[
"183-WW"
,
"189-WW"
]
## Get histos
inhistos
=
{}
outhistos
=
{}
for
f
in
yodafiles
:
file
=
"Rivet-
%s
-
%s
.yoda"
%
(
args
[
0
],
f
)
if
(
file
.
find
(
"Tau"
)
>
0
)
:
sqrts
=
10.58
elif
(
file
.
find
(
"Upsilon5"
)
>
0
)
:
sqrts
=
"U5"
elif
(
file
.
find
(
"Upsilon4"
)
>
0
)
:
sqrts
=
"U4"
elif
(
file
.
find
(
"Upsilon2"
)
>
0
)
:
sqrts
=
"U2"
elif
(
file
.
find
(
"Upsilon3"
)
>
0
)
:
sqrts
=
"U3"
elif
(
file
.
find
(
"Upsilon"
)
>
0
)
:
sqrts
=
"U1"
elif
(
file
.
find
(
"Phi"
)
>
0
)
:
sqrts
=
"phi"
elif
(
file
.
find
(
"Omega-Meson"
)
>
0
)
:
sqrts
=
"omega"
elif
(
file
.
find
(
"JPsi"
)
>
0
)
:
sqrts
=
"psi"
elif
(
file
.
find
(
"Psi2S"
)
>
0
)
:
sqrts
=
"psi2s"
elif
(
file
.
find
(
"Psi3770"
)
>
0
)
:
sqrts
=
"psi1d"
elif
(
file
.
find
(
"Ds"
)
>
0
)
:
sqrts
=
"Ds"
elif
(
file
.
find
(
"Bc"
)
>
0
)
:
sqrts
=
"Bc"
elif
(
file
.
find
(
"Lambdac"
)
>
0
or
file
.
find
(
"Xic0"
)
>
0
or
file
.
find
(
"Omega"
)
>
0
or
file
.
find
(
"Xi0"
)
>
0
or
file
.
find
(
"Xim"
)
>
0
or
file
.
find
(
"Xicp"
)
>
0
or
file
.
find
(
"Eta"
)
>
0
)
:
sqrts
=
"baryon"
else
:
sqrts
=
float
(
f
.
split
(
"-"
)[
0
])
if
not
os
.
access
(
file
,
os
.
R_OK
):
logging
.
error
(
"
%s
cannot be read"
%
file
)
continue
try
:
aos
=
yoda
.
read
(
file
)
except
:
logging
.
error
(
"
%s
cannot be parsed as yoda"
%
file
)
continue
## Get histos from this YODA file
for
aopath
,
ao
in
aos
.
items
()
:
if
(
"RAW"
in
aopath
or
"/_"
in
aopath
)
:
continue
# plots which neede merging/selecting
if
(
aopath
.
find
(
"4300807"
)
>
0
or
aopath
.
find
(
"6132243"
)
>
0
or
aopath
.
find
(
"636645"
)
>
0
or
aopath
.
find
(
"3612880"
)
>
0
or
aopath
.
find
(
"524693"
)
>
0
or
aopath
.
find
(
"601225"
)
>
0
or
aopath
.
find
(
"2148048"
)
>
0
or
aopath
.
find
(
"295160"
)
>
0
or
aopath
.
find
(
"190818"
)
>
0
or
aopath
.
find
(
"154270"
)
>
0
or
aopath
.
find
(
"277658"
)
>
0
or
aopath
.
find
(
"143691"
)
>
0
or
aopath
.
find
(
"6265367"
)
>
0
or
aopath
.
find
(
"725377"
)
>
0
or
aopath
.
find
(
"679961"
)
>
0
or
aopath
.
find
(
"356616"
)
>
0
or
aopath
.
find
(
"342061"
)
>
0
or
aopath
.
find
(
"278933"
)
>
0
or
aopath
.
find
(
"276860"
)
>
0
or
aopath
.
find
(
"251097"
)
>
0
or
aopath
.
find
(
"262551"
)
>
0
or
aopath
.
find
(
"262415"
)
>
0
or
aopath
.
find
(
"165122"
)
>
0
or
aopath
.
find
(
"118873"
)
>
0
or
aopath
.
find
(
"177174"
)
>
0
or
aopath
.
find
(
"284251"
)
>
0
or
aopath
.
find
(
"191161"
)
>
0
or
aopath
.
find
(
"1422780"
)
>
0
or
aopath
.
find
(
"132410"
)
>
0
or
aopath
.
find
(
"1649168"
)
>
0
or
"JADE_1979_I142874"
in
aopath
or
aopath
.
find
(
"728872"
)
>
0
or
"I195333"
in
aopath
or
"I297905"
in
aopath
or
"I526164"
in
aopath
or
"I178416"
in
aopath
or
"LENA_1981_I164397"
in
aopath
or
"ARGUS_1991_I315059"
in
aopath
or
"TASSO_1989_I266893"
in
aopath
or
"CLEO_1985_I205668"
in
aopath
or
"BABAR_2014_I1286317"
in
aopath
or
(
"OPAL_2000_I513476"
in
aopath
and
(
"d14"
in
aopath
or
"d20"
in
aopath
))
or
(
aopath
.
find
(
"MULTIPLICITIES"
)
>
0
and
aopath
.
find
(
"Upsilon_4S"
)
<
0
))
:
if
"526164"
in
aopath
:
if
(
"d01"
in
aopath
or
"d02"
in
aopath
or
"d16"
in
aopath
)
:
if
"WW"
in
f
:
continue
else
:
if
"WW"
not
in
f
:
continue
if
aopath
not
in
inhistos
:
inhistos
[
aopath
]
=
{}
tmpE
=
inhistos
[
aopath
]
sqrttemp
=
sqrts
if
(
aopath
.
find
(
"342061"
)
>
0
and
aopath
.
find
(
"d01"
)
>
0
and
sqrts
==
10.45
)
:
sqrts
=
9.9
if
sqrts
not
in
tmpE
:
tmpE
[
sqrts
]
=
ao
else
:
raise
Exception
(
"A set with sqrts =
%s
already exists"
%
(
sqrts
))
sqrts
=
sqrttemp
elif
(
aopath
.
find
(
"OPAL_2004_I648738"
)
>=
0
)
:
if
(
file
.
find
(
"gg"
)
>=
0
)
:
if
(
aopath
.
find
(
"y03"
)
>=
0
)
:
outhistos
[
aopath
]
=
ao
else
:
if
(
aopath
.
find
(
"y03"
)
<
0
)
:
outhistos
[
aopath
]
=
ao
elif
(
"MARKI_1975_I100733"
in
aopath
)
:
if
"d03"
in
aopath
:
outhistos
[
aopath
]
=
ao
elif
(
"A2_2017_I1486671"
in
aopath
or
"NA60_2016_I1452485"
in
aopath
)
:
if
(
"Eta"
in
file
)
:
if
"d01"
in
aopath
:
outhistos
[
aopath
]
=
ao
elif
(
"Omega"
in
file
)
:
if
"d02"
in
aopath
:
outhistos
[
aopath
]
=
ao
else
:
outhistos
[
aopath
]
=
ao
elif
(
"ARGUS_1992_I319102"
in
aopath
)
:
if
((
"d02"
in
aopath
or
"d04"
in
aopath
)
and
sqrts
==
10.47
)
:
outhistos
[
aopath
]
=
ao
elif
((
"d03"
in
aopath
or
"d05"
in
aopath
)
and
sqrts
==
"U4"
)
:
outhistos
[
aopath
]
=
ao
elif
(
"MC_OmegaPhia1_3Pion_Decay"
in
aopath
)
:
if
(
"_1"
in
aopath
and
"Omega"
in
file
)
:
outhistos
[
aopath
]
=
ao
elif
(
"_2"
in
aopath
and
"Phi"
in
file
)
:
outhistos
[
aopath
]
=
ao
elif
(
"BABAR_2006_I719581"
in
aopath
)
:
if
(
"d02"
in
aopath
and
"Omega"
in
file
)
:
outhistos
[
aopath
]
=
ao
elif
(
"d01"
in
aopath
and
"Xi"
in
file
)
:
outhistos
[
aopath
]
=
ao
elif
(
"BABAR_2002_I582184"
in
aopath
)
:
if
((
"d02"
in
aopath
or
"d05"
in
aopath
)
and
"Upsilon"
in
file
)
:
outhistos
[
aopath
]
=
ao
elif
(
not
(
"d02"
in
aopath
or
"d05"
in
aopath
)
and
sqrts
==
10.6
)
:
outhistos
[
aopath
]
=
ao
elif
(
aopath
==
"/BABAR_2007_I746745/d01-x01-y01"
)
:
htemp
=
aos
[
"/RAW/BABAR_2007_I746745/d01-x01-y01"
]
if
hasattr
(
aos
[
"/_XSEC"
],
"points"
)
:
fact
=
aos
[
"/_XSEC"
]
.
points
()[
0
]
.
x
()
/
aos
[
"/_EVTCOUNT"
]
.
val
()
else
:
fact
=
aos
[
"/_XSEC"
]
.
val
()
/
aos
[
"/_EVTCOUNT"
]
.
val
()
htemp
.
scaleW
(
fact
)
htemp
.
setPath
(
"/BABAR_2007_I746745/d01-x01-y01"
)
if
"/BABAR_2007_I746745/d01-x01-y01"
in
outhistos
:
htemp2
=
htemp
+
outhistos
[
"/BABAR_2007_I746745/d01-x01-y01"
]
htemp2
.
setPath
(
"/BABAR_2007_I746745/d01-x01-y01"
)
htemp2
.
normalize
()
outhistos
[
"/BABAR_2007_I746745/d01-x01-y01"
]
=
htemp2
else
:
outhistos
[
"/BABAR_2007_I746745/d01-x01-y01"
]
=
htemp
elif
(
aopath
==
"/BABAR_2007_I722622/d03-x01-y01"
or
aopath
==
"/BABAR_2007_I722622/d03-x01-y02"
or
aopath
==
"/BABAR_2007_I722622/d04-x01-y01"
)
:
htemp
=
aos
[
"/RAW"
+
aopath
]
if
hasattr
(
aos
[
"/_XSEC"
],
"points"
)
:
fact
=
aos
[
"/_XSEC"
]
.
points
()[
0
]
.
x
()
/
aos
[
"/_EVTCOUNT"
]
.
val
()
else
:
fact
=
aos
[
"/_XSEC"
]
.
val
()
/
aos
[
"/_EVTCOUNT"
]
.
val
()
htemp
.
scaleW
(
fact
)
htemp
.
setPath
(
aopath
)
if
aopath
in
outhistos
:
htemp2
=
htemp
+
outhistos
[
aopath
]
htemp2
.
setPath
(
aopath
)
try
:
htemp2
.
normalize
()
except
:
pass
outhistos
[
aopath
]
=
htemp2
else
:
outhistos
[
aopath
]
=
htemp
elif
"BELLE_2017_I1610301"
in
aopath
:
if
"Upsilon2"
in
file
and
"y01"
in
aopath
:
outhistos
[
aopath
]
=
ao
elif
"Upsilon3"
in
file
and
"y02"
in
aopath
:
outhistos
[
aopath
]
=
ao
elif
"Upsilon4"
in
file
and
(
"y03"
in
aopath
or
"y04"
in
aopath
)
:
outhistos
[
aopath
]
=
ao
elif
"FOCUS_2003_I635446"
in
aopath
:
if
"Ds"
in
file
:
if
"d01"
in
aopath
or
"dalitz1"
in
aopath
:
outhistos
[
aopath
]
=
ao
else
:
if
"d02"
in
aopath
or
"dalitz2"
in
aopath
:
outhistos
[
aopath
]
=
ao
elif
"FOCUS_2004_I654030"
in
aopath
:
if
"Ds"
in
file
:
if
"d02"
in
aopath
or
"dalitz_2"
in
aopath
:
outhistos
[
aopath
]
=
ao
else
:
if
"d01"
in
aopath
or
"dalitz_1"
in
aopath
:
outhistos
[
aopath
]
=
ao
elif
"OPAL_2004_I631361"
in
aopath
and
"PROCESS"
in
aopath
:
continue
else
:
outhistos
[
aopath
]
=
ao
# Make empty output histos if needed
for
hpath
,
hsets
in
inhistos
.
items
():
if
(
hpath
.
find
(
"4300807"
)
>
0
or
hpath
.
find
(
"6132243"
)
>
0
or
hpath
.
find
(
"636645"
)
>
0
or
hpath
.
find
(
"295160"
)
>
0
or
hpath
.
find
(
"524693"
)
>
0
or
hpath
.
find
(
"601225"
)
>
0
or
hpath
.
find
(
"190818"
)
>
0
or
hpath
.
find
(
"154270"
)
>
0
or
hpath
.
find
(
"277658"
)
>
0
or
hpath
.
find
(
"342061"
)
>
0
or
hpath
.
find
(
"276860"
)
>
0
or
hpath
.
find
(
"165122"
)
>
0
or
hpath
.
find
(
"118873"
)
>
0
or
hpath
.
find
(
"143691"
)
>
0
or
hpath
.
find
(
"284251"
)
>
0
or
hpath
.
find
(
"191161"
)
>
0
or
hpath
.
find
(
"1422780"
)
>
0
or
hpath
.
find
(
"132410"
)
>
0
or
(
"526164"
in
hpath
and
(
"d01"
in
hpath
or
"d02"
in
hpath
or
"d03"
in
hpath
)
)
or
(
"195333"
in
hpath
and
"d04"
in
hpath
)
or
"OPAL_2000_I513476"
in
hpath
or
"JADE_1979_I142874"
in
hpath
or
"CLEO_1985_I205668"
in
hpath
or
"BABAR_2014_I1286317"
in
hpath
or
"LENA_1981_I164397"
in
hpath
):
if
(
hpath
==
"/PLUTO_1981_I165122/d01-x01-y01"
or
hpath
==
"/PLUTO_1981_I165122/d03-x01-y01"
)
:
continue
title
=
""
path
=
""
histo
=
list
(
hsets
.
values
())[
0
]
if
hasattr
(
histo
,
'title'
):
title
=
histo
.
title
()
if
hasattr
(
histo
,
'path'
):
path
=
histo
.
path
()
if
(
type
(
histo
)
==
yoda
.
core
.
Scatter2D
)
:
outhistos
[
hpath
]
=
yoda
.
core
.
Scatter2D
(
path
,
title
)
elif
(
type
(
histo
)
==
yoda
.
core
.
Profile1D
)
:
outhistos
[
hpath
]
=
yoda
.
core
.
Profile1D
(
path
,
title
)
for
i
in
range
(
0
,
histo
.
numBins
())
:
outhistos
[
hpath
]
.
addBin
(
histo
.
bins
()[
i
]
.
xMin
(),
histo
.
bins
()[
i
]
.
xMax
())
elif
(
type
(
histo
)
==
yoda
.
core
.
Histo1D
)
:
outhistos
[
hpath
]
=
yoda
.
core
.
Histo1D
(
path
,
title
)
for
i
in
range
(
0
,
histo
.
numBins
())
:
outhistos
[
hpath
]
.
addBin
(
histo
.
bins
()[
i
]
.
xMin
(),
histo
.
bins
()[
i
]
.
xMax
())
elif
(
type
(
histo
)
==
yoda
.
core
.
BinnedEstimate1D
)
:
outhistos
[
hpath
]
=
yoda
.
core
.
BinnedEstimate1D
(
histo
.
xEdges
(),
path
,
title
)
if
len
(
histo
.
maskedBins
())
>
0
:
outhistos
[
hpath
]
.
maskBins
(
histo
.
maskedBins
())
else
:
logging
.
error
(
"Histogram
%s
is of unknown type"
%
hpath
)
sys
.
exit
(
1
)
# tasso
eTemp
=
[
"14"
,
"22"
,
"35"
,
"44"
]
for
ih
in
range
(
2
,
9
)
:
for
iy
in
range
(
0
,
4
)
:
useOne
(
"/TASSO_1990_I294755/d0
%s
-x01-y0
%s
"
%
(
ih
,
iy
+
1
),
eTemp
[
iy
])
# jade
useOne
(
"/JADE_1998_I447560/d02-x01-y01"
,
"44"
)
useOne
(
"/JADE_1998_I447560/d03-x01-y01"
,
"44"
)
useOne
(
"/JADE_1998_I447560/d04-x01-y01"
,
"44"
)
useOne
(
"/JADE_1998_I447560/d05-x01-y01"
,
"44"
)
useOne
(
"/JADE_1998_I447560/d06-x01-y01"
,
"35"
)
useOne
(
"/JADE_1998_I447560/d07-x01-y01"
,
"35"
)
useOne
(
"/JADE_1998_I447560/d08-x01-y01"
,
"35"
)
useOne
(
"/JADE_1998_I447560/d09-x01-y01"
,
"35"
)
useOne
(
"/JADE_1998_I447560/d10-x01-y01"
,
"44"
)
useOne
(
"/JADE_1998_I447560/d11-x01-y01"
,
"35"
)
useOne
(
"/JADE_1998_I447560/d12-x01-y01"
,
"22"
)
# opal/jade
useOne
(
"/JADE_OPAL_2000_I513337/d07-x01-y01"
,
"35"
)
useOne
(
"/JADE_OPAL_2000_I513337/d07-x01-y02"
,
"35"
)
useOne
(
"/JADE_OPAL_2000_I513337/d07-x01-y03"
,
"35"
)
useOne
(
"/JADE_OPAL_2000_I513337/d07-x01-y04"
,
"35"
)
useOne
(
"/JADE_OPAL_2000_I513337/d07-x01-y05"
,
"35"
)
useOne
(
"/JADE_OPAL_2000_I513337/d08-x01-y01"
,
"44"
)
useOne
(
"/JADE_OPAL_2000_I513337/d08-x01-y02"
,
"44"
)
useOne
(
"/JADE_OPAL_2000_I513337/d08-x01-y03"
,
"44"
)
useOne
(
"/JADE_OPAL_2000_I513337/d08-x01-y04"
,
"44"
)
useOne
(
"/JADE_OPAL_2000_I513337/d08-x01-y05"
,
"44"
)
useOne
(
"/JADE_OPAL_2000_I513337/d09-x01-y01"
,
"91"
)
useOne
(
"/JADE_OPAL_2000_I513337/d09-x01-y02"
,
"91"
)
useOne
(
"/JADE_OPAL_2000_I513337/d09-x01-y03"
,
"91"
)
useOne
(
"/JADE_OPAL_2000_I513337/d09-x01-y04"
,
"91"
)
useOne
(
"/JADE_OPAL_2000_I513337/d09-x01-y05"
,
"91"
)
useOne
(
"/JADE_OPAL_2000_I513337/d10-x01-y01"
,
"133"
)
useOne
(
"/JADE_OPAL_2000_I513337/d10-x01-y02"
,
"133"
)
useOne
(
"/JADE_OPAL_2000_I513337/d10-x01-y03"
,
"133"
)
useOne
(
"/JADE_OPAL_2000_I513337/d10-x01-y04"
,
"133"
)
useOne
(
"/JADE_OPAL_2000_I513337/d10-x01-y05"
,
"133"
)
useOne
(
"/JADE_OPAL_2000_I513337/d11-x01-y01"
,
"161"
)
useOne
(
"/JADE_OPAL_2000_I513337/d11-x01-y02"
,
"161"
)
useOne
(
"/JADE_OPAL_2000_I513337/d11-x01-y03"
,
"161"
)
useOne
(
"/JADE_OPAL_2000_I513337/d11-x01-y04"
,
"161"
)
useOne
(
"/JADE_OPAL_2000_I513337/d11-x01-y05"
,
"161"
)
useOne
(
"/JADE_OPAL_2000_I513337/d12-x01-y01"
,
"172"
)
useOne
(
"/JADE_OPAL_2000_I513337/d12-x01-y02"
,
"172"
)
useOne
(
"/JADE_OPAL_2000_I513337/d12-x01-y03"
,
"172"
)
useOne
(
"/JADE_OPAL_2000_I513337/d12-x01-y04"
,
"172"
)
useOne
(
"/JADE_OPAL_2000_I513337/d12-x01-y05"
,
"172"
)
useOne
(
"/JADE_OPAL_2000_I513337/d13-x01-y01"
,
"183"
)
useOne
(
"/JADE_OPAL_2000_I513337/d13-x01-y02"
,
"183"
)
useOne
(
"/JADE_OPAL_2000_I513337/d13-x01-y03"
,
"183"
)
useOne
(
"/JADE_OPAL_2000_I513337/d13-x01-y04"
,
"183"
)
useOne
(
"/JADE_OPAL_2000_I513337/d13-x01-y05"
,
"183"
)
useOne
(
"/JADE_OPAL_2000_I513337/d14-x01-y01"
,
"189"
)
useOne
(
"/JADE_OPAL_2000_I513337/d14-x01-y02"
,
"189"
)
useOne
(
"/JADE_OPAL_2000_I513337/d14-x01-y03"
,
"189"
)
useOne
(
"/JADE_OPAL_2000_I513337/d14-x01-y04"
,
"189"
)
useOne
(
"/JADE_OPAL_2000_I513337/d14-x01-y05"
,
"189"
)
useOne
(
"/JADE_OPAL_2000_I513337/d16-x01-y01"
,
"35"
)
useOne
(
"/JADE_OPAL_2000_I513337/d16-x01-y02"
,
"35"
)
useOne
(
"/JADE_OPAL_2000_I513337/d16-x01-y03"
,
"35"
)
useOne
(
"/JADE_OPAL_2000_I513337/d16-x01-y04"
,
"35"
)
useOne
(
"/JADE_OPAL_2000_I513337/d16-x01-y05"
,
"35"
)
useOne
(
"/JADE_OPAL_2000_I513337/d17-x01-y01"
,
"44"
)
useOne
(
"/JADE_OPAL_2000_I513337/d17-x01-y02"
,
"44"
)
useOne
(
"/JADE_OPAL_2000_I513337/d17-x01-y03"
,
"44"
)
useOne
(
"/JADE_OPAL_2000_I513337/d17-x01-y04"
,
"44"
)
useOne
(
"/JADE_OPAL_2000_I513337/d17-x01-y05"
,
"44"
)
useOne
(
"/JADE_OPAL_2000_I513337/d18-x01-y01"
,
"91"
)
useOne
(
"/JADE_OPAL_2000_I513337/d18-x01-y02"
,
"91"
)
useOne
(
"/JADE_OPAL_2000_I513337/d18-x01-y03"
,
"91"
)
useOne
(
"/JADE_OPAL_2000_I513337/d18-x01-y04"
,
"91"
)
useOne
(
"/JADE_OPAL_2000_I513337/d18-x01-y05"
,
"91"
)
useOne
(
"/JADE_OPAL_2000_I513337/d19-x01-y01"
,
"133"
)
useOne
(
"/JADE_OPAL_2000_I513337/d19-x01-y02"
,
"133"
)
useOne
(
"/JADE_OPAL_2000_I513337/d19-x01-y03"
,
"133"
)
useOne
(
"/JADE_OPAL_2000_I513337/d19-x01-y04"
,
"133"
)
useOne
(
"/JADE_OPAL_2000_I513337/d19-x01-y05"
,
"133"
)
useOne
(
"/JADE_OPAL_2000_I513337/d20-x01-y01"
,
"161"
)
useOne
(
"/JADE_OPAL_2000_I513337/d20-x01-y02"
,
"161"
)
useOne
(
"/JADE_OPAL_2000_I513337/d20-x01-y03"
,
"161"
)
useOne
(
"/JADE_OPAL_2000_I513337/d20-x01-y04"
,
"161"
)
useOne
(
"/JADE_OPAL_2000_I513337/d20-x01-y05"
,
"161"
)
useOne
(
"/JADE_OPAL_2000_I513337/d21-x01-y01"
,
"172"
)
useOne
(
"/JADE_OPAL_2000_I513337/d21-x01-y02"
,
"172"
)
useOne
(
"/JADE_OPAL_2000_I513337/d21-x01-y03"
,
"172"
)
useOne
(
"/JADE_OPAL_2000_I513337/d21-x01-y04"
,
"172"
)
useOne
(
"/JADE_OPAL_2000_I513337/d21-x01-y05"
,
"172"
)
useOne
(
"/JADE_OPAL_2000_I513337/d22-x01-y01"
,
"183"
)
useOne
(
"/JADE_OPAL_2000_I513337/d22-x01-y02"
,
"183"
)
useOne
(
"/JADE_OPAL_2000_I513337/d22-x01-y03"
,
"183"
)
useOne
(
"/JADE_OPAL_2000_I513337/d22-x01-y04"
,
"183"
)
useOne
(
"/JADE_OPAL_2000_I513337/d22-x01-y05"
,
"183"
)
useOne
(
"/JADE_OPAL_2000_I513337/d23-x01-y01"
,
"189"
)
useOne
(
"/JADE_OPAL_2000_I513337/d23-x01-y02"
,
"189"
)
useOne
(
"/JADE_OPAL_2000_I513337/d23-x01-y03"
,
"189"
)
useOne
(
"/JADE_OPAL_2000_I513337/d23-x01-y04"
,
"189"
)
useOne
(
"/JADE_OPAL_2000_I513337/d23-x01-y05"
,
"189"
)
useOne
(
"/JADE_OPAL_2000_I513337/d24-x01-y01"
,
"35"
)
useOne
(
"/JADE_OPAL_2000_I513337/d24-x01-y02"
,
"35"
)
useOne
(
"/JADE_OPAL_2000_I513337/d24-x01-y03"
,
"35"
)
useOne
(
"/JADE_OPAL_2000_I513337/d24-x01-y04"
,
"35"
)
useOne
(
"/JADE_OPAL_2000_I513337/d25-x01-y01"
,
"44"
)
useOne
(
"/JADE_OPAL_2000_I513337/d25-x01-y02"
,
"44"
)
useOne
(
"/JADE_OPAL_2000_I513337/d25-x01-y03"
,
"44"
)
useOne
(
"/JADE_OPAL_2000_I513337/d25-x01-y04"
,
"44"
)
useOne
(
"/JADE_OPAL_2000_I513337/d26-x01-y01"
,
"91"
)
useOne
(
"/JADE_OPAL_2000_I513337/d26-x01-y02"
,
"91"
)
useOne
(
"/JADE_OPAL_2000_I513337/d26-x01-y03"
,
"91"
)
useOne
(
"/JADE_OPAL_2000_I513337/d26-x01-y04"
,
"91"
)
useOne
(
"/JADE_OPAL_2000_I513337/d27-x01-y01"
,
"133"
)
useOne
(
"/JADE_OPAL_2000_I513337/d27-x01-y02"
,
"133"
)
useOne
(
"/JADE_OPAL_2000_I513337/d27-x01-y03"
,
"133"
)
useOne
(
"/JADE_OPAL_2000_I513337/d27-x01-y04"
,
"133"
)
useOne
(
"/JADE_OPAL_2000_I513337/d28-x01-y01"
,
"161"
)
useOne
(
"/JADE_OPAL_2000_I513337/d28-x01-y02"
,
"161"
)
useOne
(
"/JADE_OPAL_2000_I513337/d28-x01-y03"
,
"161"
)
useOne
(
"/JADE_OPAL_2000_I513337/d28-x01-y04"
,
"161"
)
useOne
(
"/JADE_OPAL_2000_I513337/d29-x01-y01"
,
"172"
)
useOne
(
"/JADE_OPAL_2000_I513337/d29-x01-y02"
,
"172"
)
useOne
(
"/JADE_OPAL_2000_I513337/d29-x01-y03"
,
"172"
)
useOne
(
"/JADE_OPAL_2000_I513337/d29-x01-y04"
,
"172"
)
useOne
(
"/JADE_OPAL_2000_I513337/d30-x01-y01"
,
"183"
)
useOne
(
"/JADE_OPAL_2000_I513337/d30-x01-y02"
,
"183"
)
useOne
(
"/JADE_OPAL_2000_I513337/d30-x01-y03"
,
"183"
)
useOne
(
"/JADE_OPAL_2000_I513337/d30-x01-y04"
,
"183"
)
useOne
(
"/JADE_OPAL_2000_I513337/d31-x01-y01"
,
"189"
)
useOne
(
"/JADE_OPAL_2000_I513337/d31-x01-y02"
,
"189"
)
useOne
(
"/JADE_OPAL_2000_I513337/d31-x01-y03"
,
"189"
)
useOne
(
"/JADE_OPAL_2000_I513337/d31-x01-y04"
,
"189"
)
useOne
(
"/OPAL_2004_I669402/d01-x01-y01"
,
"91"
)
useOne
(
"/OPAL_2004_I669402/d01-x01-y02"
,
"133"
)
useOne
(
"/OPAL_2004_I669402/d01-x01-y03"
,
"177"
)
useOne
(
"/OPAL_2004_I669402/d01-x01-y04"
,
"197"
)
useOne
(
"/OPAL_2004_I669402/d02-x01-y01"
,
"91"
)
useOne
(
"/OPAL_2004_I669402/d02-x01-y02"
,
"133"
)
useOne
(
"/OPAL_2004_I669402/d02-x01-y03"
,
"177"
)
useOne
(
"/OPAL_2004_I669402/d02-x01-y04"
,
"197"
)
useOne
(
"/OPAL_2004_I669402/d03-x01-y01"
,
"91"
)
useOne
(
"/OPAL_2004_I669402/d03-x01-y02"
,
"133"
)
useOne
(
"/OPAL_2004_I669402/d03-x01-y03"
,
"177"
)
useOne
(
"/OPAL_2004_I669402/d03-x01-y04"
,
"197"
)
useOne
(
"/OPAL_2004_I669402/d04-x01-y01"
,
"91"
)
useOne
(
"/OPAL_2004_I669402/d04-x01-y02"
,
"133"
)
useOne
(
"/OPAL_2004_I669402/d04-x01-y03"
,
"177"
)
useOne
(
"/OPAL_2004_I669402/d04-x01-y04"
,
"197"
)
useOne
(
"/OPAL_2004_I669402/d05-x01-y01"
,
"91"
)
useOne
(
"/OPAL_2004_I669402/d05-x01-y02"
,
"133"
)
useOne
(
"/OPAL_2004_I669402/d05-x01-y03"
,
"177"
)
useOne
(
"/OPAL_2004_I669402/d05-x01-y04"
,
"197"
)
useOne
(
"/OPAL_2004_I669402/d06-x01-y01"
,
"91"
)
useOne
(
"/OPAL_2004_I669402/d06-x01-y02"
,
"133"
)
useOne
(
"/OPAL_2004_I669402/d06-x01-y03"
,
"177"
)
useOne
(
"/OPAL_2004_I669402/d06-x01-y04"
,
"197"
)
useOne
(
"/OPAL_2004_I669402/d07-x01-y01"
,
"91"
)
useOne
(
"/OPAL_2004_I669402/d07-x01-y02"
,
"133"
)
useOne
(
"/OPAL_2004_I669402/d07-x01-y03"
,
"177"
)
useOne
(
"/OPAL_2004_I669402/d07-x01-y04"
,
"197"
)
useOne
(
"/OPAL_2004_I669402/d08-x01-y01"
,
"91"
)
useOne
(
"/OPAL_2004_I669402/d08-x01-y02"
,
"133"
)
useOne
(
"/OPAL_2004_I669402/d08-x01-y03"
,
"177"
)
useOne
(
"/OPAL_2004_I669402/d08-x01-y04"
,
"197"
)
useOne
(
"/OPAL_2004_I669402/d09-x01-y01"
,
"91"
)
useOne
(
"/OPAL_2004_I669402/d09-x01-y02"
,
"133"
)
useOne
(
"/OPAL_2004_I669402/d09-x01-y03"
,
"177"
)
useOne
(
"/OPAL_2004_I669402/d09-x01-y04"
,
"197"
)
useOne
(
"/OPAL_2004_I669402/d10-x01-y01"
,
"91"
)
useOne
(
"/OPAL_2004_I669402/d10-x01-y02"
,
"133"
)
useOne
(
"/OPAL_2004_I669402/d10-x01-y03"
,
"177"
)
useOne
(
"/OPAL_2004_I669402/d10-x01-y04"
,
"197"
)
useOne
(
"/OPAL_2004_I669402/d11-x01-y01"
,
"91"
)
useOne
(
"/OPAL_2004_I669402/d11-x01-y02"
,
"133"
)
useOne
(
"/OPAL_2004_I669402/d11-x01-y03"
,
"177"
)
useOne
(
"/OPAL_2004_I669402/d11-x01-y04"
,
"197"
)
useOne
(
"/OPAL_2004_I669402/d12-x01-y01"
,
"91"
)
useOne
(
"/OPAL_2004_I669402/d12-x01-y02"
,
"133"
)
useOne
(
"/OPAL_2004_I669402/d12-x01-y03"
,
"177"
)
useOne
(
"/OPAL_2004_I669402/d12-x01-y04"
,
"197"
)
useOne
(
"/OPAL_2004_I669402/d13-x01-y01"
,
"91"
)
useOne
(
"/OPAL_2004_I669402/d13-x01-y02"
,
"133"
)
useOne
(
"/OPAL_2004_I669402/d13-x01-y03"
,
"177"
)
useOne
(
"/OPAL_2004_I669402/d13-x01-y04"
,
"197"
)
useOne
(
"/OPAL_2004_I669402/d14-x01-y01"
,
"91"
)
useOne
(
"/OPAL_2004_I669402/d14-x01-y02"
,
"133"
)
useOne
(
"/OPAL_2004_I669402/d14-x01-y03"
,
"177"
)
useOne
(
"/OPAL_2004_I669402/d14-x01-y04"
,
"197"
)
useOne
(
"/OPAL_2004_I669402/d15-x01-y01"
,
"91"
)
useOne
(
"/OPAL_2004_I669402/d15-x01-y02"
,
"133"
)
useOne
(
"/OPAL_2004_I669402/d15-x01-y03"
,
"177"
)
useOne
(
"/OPAL_2004_I669402/d15-x01-y04"
,
"197"
)
useOne
(
"/OPAL_2004_I669402/d16-x01-y01"
,
"91"
)
useOne
(
"/OPAL_2004_I669402/d16-x01-y02"
,
"133"
)
useOne
(
"/OPAL_2004_I669402/d16-x01-y03"
,
"177"
)
useOne
(
"/OPAL_2004_I669402/d16-x01-y04"
,
"197"
)
useOne
(
"/OPAL_2004_I669402/d17-x01-y01"
,
"91"
)
useOne
(
"/OPAL_2004_I669402/d17-x01-y02"
,
"133"
)
useOne
(
"/OPAL_2004_I669402/d17-x01-y03"
,
"177"
)
useOne
(
"/OPAL_2004_I669402/d17-x01-y04"
,
"197"
)
useOne
(
"/OPAL_2004_I669402/d18-x01-y01"
,
"91"
)
useOne
(
"/OPAL_2004_I669402/d18-x01-y02"
,
"133"
)
useOne
(
"/OPAL_2004_I669402/d18-x01-y03"
,
"177"
)
useOne
(
"/OPAL_2004_I669402/d18-x01-y04"
,
"197"
)
useOne
(
"/OPAL_2004_I669402/d19-x01-y01"
,
"91"
)
useOne
(
"/OPAL_2004_I669402/d19-x01-y02"
,
"133"
)
useOne
(
"/OPAL_2004_I669402/d19-x01-y03"
,
"177"
)
useOne
(
"/OPAL_2004_I669402/d19-x01-y04"
,
"197"
)
useOne
(
"/OPAL_2004_I669402/d20-x01-y01"
,
"91"
)
useOne
(
"/OPAL_2004_I669402/d20-x01-y02"
,
"133"
)
useOne
(
"/OPAL_2004_I669402/d20-x01-y03"
,
"177"
)
useOne
(
"/OPAL_2004_I669402/d20-x01-y04"
,
"197"
)
useOne
(
"/OPAL_2004_I669402/d21-x01-y01"
,
"91"
)
useOne
(
"/OPAL_2004_I669402/d21-x01-y02"
,
"133"
)
useOne
(
"/OPAL_2004_I669402/d21-x01-y03"
,
"177"
)
useOne
(
"/OPAL_2004_I669402/d21-x01-y04"
,
"197"
)
useOne
(
"/OPAL_2004_I669402/d22-x01-y01"
,
"91"
)
useOne
(
"/OPAL_2004_I669402/d22-x01-y02"
,
"133"
)
useOne
(
"/OPAL_2004_I669402/d22-x01-y03"
,
"177"
)
useOne
(
"/OPAL_2004_I669402/d22-x01-y04"
,
"197"
)
useOne
(
"/OPAL_2004_I669402/d23-x01-y01"
,
"91"
)
useOne
(
"/OPAL_2004_I669402/d23-x01-y02"
,
"133"
)
useOne
(
"/OPAL_2004_I669402/d23-x01-y03"
,
"177"
)
useOne
(
"/OPAL_2004_I669402/d23-x01-y04"
,
"197"
)
useOne
(
"/OPAL_2004_I669402/d24-x01-y01"
,
"91"
)
useOne
(
"/OPAL_2004_I669402/d24-x01-y02"
,
"133"
)
useOne
(
"/OPAL_2004_I669402/d24-x01-y03"
,
"177"
)
useOne
(
"/OPAL_2004_I669402/d24-x01-y04"
,
"197"
)
useOne
(
"/OPAL_2004_I669402/d25-x01-y01"
,
"91"
)
useOne
(
"/OPAL_2004_I669402/d25-x01-y02"
,
"133"
)
useOne
(
"/OPAL_2004_I669402/d25-x01-y03"
,
"177"
)
useOne
(
"/OPAL_2004_I669402/d25-x01-y04"
,
"197"
)
useOne
(
"/OPAL_2004_I669402/d26-x01-y01"
,
"91"
)
useOne
(
"/OPAL_2004_I669402/d26-x01-y02"
,
"133"
)
useOne
(
"/OPAL_2004_I669402/d26-x01-y03"
,
"177"
)
useOne
(
"/OPAL_2004_I669402/d26-x01-y04"
,
"197"
)
merge
(
"/OPAL_2002_I601225/d01-x01-y01"
)
merge
(
"/OPAL_2002_I601225/d01-x01-y02"
)
merge
(
"/OPAL_2002_I601225/d01-x01-y03"
)
merge
(
"/OPAL_2002_I601225/d01-x01-y04"
)
merge
(
"/DELPHI_2000_I524693/d01-x01-y01"
)
merge
(
"/DELPHI_2000_I524693/d01-x01-y02"
)
merge
(
"/DELPHI_2000_I524693/d01-x01-y03"
)
merge
(
"/DELPHI_2000_I524693/d01-x01-y04"
)
merge
(
"/ALEPH_2004_I636645/d01-x01-y01"
)
useOne
(
"/ALEPH_2004_I636645/d02-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d03-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d04-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d05-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d06-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d07-x01-y01"
,
"196"
)
useOne
(
"/ALEPH_2004_I636645/d08-x01-y01"
,
"200"
)
useOne
(
"/ALEPH_2004_I636645/d09-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d11-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d12-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d13-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d14-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d15-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d16-x01-y01"
,
"196"
)
useOne
(
"/ALEPH_2004_I636645/d17-x01-y01"
,
"200"
)
useOne
(
"/ALEPH_2004_I636645/d18-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d19-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d20-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d21-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d22-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d23-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d24-x01-y01"
,
"196"
)
useOne
(
"/ALEPH_2004_I636645/d25-x01-y01"
,
"200"
)
useOne
(
"/ALEPH_2004_I636645/d26-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d27-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d28-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d29-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d30-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d31-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d32-x01-y01"
,
"196"
)
useOne
(
"/ALEPH_2004_I636645/d33-x01-y01"
,
"200"
)
useOne
(
"/ALEPH_2004_I636645/d34-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d35-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d36-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d37-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d38-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d39-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d40-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d41-x01-y01"
,
"196"
)
useOne
(
"/ALEPH_2004_I636645/d42-x01-y01"
,
"200"
)
useOne
(
"/ALEPH_2004_I636645/d43-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d44-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d45-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d46-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d47-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d48-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d49-x01-y01"
,
"196"
)
useOne
(
"/ALEPH_2004_I636645/d50-x01-y01"
,
"200"
)
useOne
(
"/ALEPH_2004_I636645/d51-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d54-x01-y01"
,
"91"
)
useOne
(
"/ALEPH_2004_I636645/d55-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d56-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d57-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d58-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d59-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d60-x01-y01"
,
"200"
)
useOne
(
"/ALEPH_2004_I636645/d61-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d62-x01-y01"
,
"91"
)
useOne
(
"/ALEPH_2004_I636645/d63-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d64-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d65-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d66-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d67-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d68-x01-y01"
,
"200"
)
useOne
(
"/ALEPH_2004_I636645/d69-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d70-x01-y01"
,
"91"
)
useOne
(
"/ALEPH_2004_I636645/d71-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d72-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d73-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d74-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d75-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d76-x01-y01"
,
"200"
)
useOne
(
"/ALEPH_2004_I636645/d77-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d78-x01-y01"
,
"91"
)
useOne
(
"/ALEPH_2004_I636645/d79-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d80-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d81-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d82-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d83-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d84-x01-y01"
,
"200"
)
useOne
(
"/ALEPH_2004_I636645/d85-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d86-x01-y01"
,
"91"
)
useOne
(
"/ALEPH_2004_I636645/d87-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d88-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d89-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d90-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d91-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d92-x01-y01"
,
"200"
)
useOne
(
"/ALEPH_2004_I636645/d93-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d94-x01-y01"
,
"91"
)
useOne
(
"/ALEPH_2004_I636645/d95-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d96-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d97-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d98-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d99-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d100-x01-y01"
,
"200"
)
useOne
(
"/ALEPH_2004_I636645/d101-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d102-x01-y01"
,
"91"
)
useOne
(
"/ALEPH_2004_I636645/d103-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d104-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d105-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d106-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d107-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d108-x01-y01"
,
"200"
)
useOne
(
"/ALEPH_2004_I636645/d109-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d110-x01-y01"
,
"91"
)
useOne
(
"/ALEPH_2004_I636645/d111-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d112-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d113-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d114-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d115-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d116-x01-y01"
,
"200"
)
useOne
(
"/ALEPH_2004_I636645/d117-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d118-x01-y01"
,
"91"
)
useOne
(
"/ALEPH_2004_I636645/d119-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d120-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d121-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d122-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d123-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d124-x01-y01"
,
"200"
)
useOne
(
"/ALEPH_2004_I636645/d125-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d126-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d127-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d128-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d129-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d130-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d131-x01-y01"
,
"200"
)
useOne
(
"/ALEPH_2004_I636645/d132-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d133-x01-y01"
,
"91"
)
useOne
(
"/ALEPH_2004_I636645/d134-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d135-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d136-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d137-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d138-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d139-x01-y01"
,
"200"
)
useOne
(
"/ALEPH_2004_I636645/d140-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d141-x01-y01"
,
"91"
)
useOne
(
"/ALEPH_2004_I636645/d142-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d143-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d144-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d145-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d146-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d147-x01-y01"
,
"200"
)
useOne
(
"/ALEPH_2004_I636645/d148-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d149-x01-y01"
,
"91"
)
useOne
(
"/ALEPH_2004_I636645/d150-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d151-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d152-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d153-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d154-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d155-x01-y01"
,
"200"
)
useOne
(
"/ALEPH_2004_I636645/d156-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d157-x01-y01"
,
"91"
)
useOne
(
"/ALEPH_2004_I636645/d158-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d159-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d160-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d161-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d162-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d163-x01-y01"
,
"200"
)
useOne
(
"/ALEPH_2004_I636645/d164-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d165-x01-y01"
,
"91"
)
useOne
(
"/ALEPH_2004_I636645/d166-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d167-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d168-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d169-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d170-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d172-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d173-x01-y01"
,
"91"
)
useOne
(
"/ALEPH_2004_I636645/d174-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d175-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d176-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d177-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d178-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d179-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d180-x01-y01"
,
"91"
)
useOne
(
"/ALEPH_2004_I636645/d181-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d182-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d183-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d184-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d185-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d186-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d187-x01-y01"
,
"91"
)
useOne
(
"/ALEPH_2004_I636645/d188-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d189-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d190-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d191-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d192-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d193-x01-y01"
,
"200"
)
useOne
(
"/ALEPH_2004_I636645/d194-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d195-x01-y01"
,
"91"
)
useOne
(
"/ALEPH_2004_I636645/d196-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d197-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d198-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d199-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d200-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d201-x01-y01"
,
"200"
)
useOne
(
"/ALEPH_2004_I636645/d202-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d203-x01-y01"
,
"91"
)
useOne
(
"/ALEPH_2004_I636645/d204-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d205-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d206-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d207-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d208-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d209-x01-y01"
,
"200"
)
useOne
(
"/ALEPH_2004_I636645/d210-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d211-x01-y01"
,
"91"
)
useOne
(
"/ALEPH_2004_I636645/d212-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d213-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d214-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d215-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d216-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d217-x01-y01"
,
"200"
)
useOne
(
"/ALEPH_2004_I636645/d218-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d219-x01-y01"
,
"91"
)
useOne
(
"/ALEPH_2004_I636645/d220-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d221-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d222-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d223-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d224-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d225-x01-y01"
,
"200"
)
useOne
(
"/ALEPH_2004_I636645/d226-x01-y01"
,
"206"
)
useOne
(
"/ALEPH_2004_I636645/d227-x01-y01"
,
"91"
)
useOne
(
"/ALEPH_2004_I636645/d228-x01-y01"
,
"133"
)
useOne
(
"/ALEPH_2004_I636645/d229-x01-y01"
,
"161"
)
useOne
(
"/ALEPH_2004_I636645/d230-x01-y01"
,
"172"
)
useOne
(
"/ALEPH_2004_I636645/d231-x01-y01"
,
"183"
)
useOne
(
"/ALEPH_2004_I636645/d232-x01-y01"
,
"189"
)
useOne
(
"/ALEPH_2004_I636645/d233-x01-y01"
,
"200"
)
useOne
(
"/ALEPH_2004_I636645/d234-x01-y01"
,
"206"
)
# hadron multiplicities
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d01-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d02-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d03-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d04-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d05-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d06-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d07-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d08-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d09-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d13-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d15-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d17-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d18-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d19-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d20-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d21-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d22-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d23-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d25-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d31-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d38-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d39-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d40-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d44-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d45-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d46-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d47-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d48-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d49-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d50-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d51-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d53-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d54-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d01-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d02-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d03-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d04-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d05-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d06-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d07-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d08-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d09-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d13-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d15-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d18-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d19-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d20-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d21-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d22-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d31-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d33-x01-y01"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d34-x01-y01"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d38-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d39-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d44-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d46-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d47-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d48-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d50-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d51-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d01-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d02-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d03-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d04-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d05-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d06-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d07-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d08-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d09-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d10-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d11-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d12-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d13-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d14-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d15-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d16-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d17-x01-y02"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d18-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d19-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d20-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d21-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d23-x01-y02"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d24-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d25-x01-y02"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d26-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d27-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d28-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d29-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d30-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d31-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d32-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d34-x01-y02"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d35-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d36-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d37-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d38-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d39-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d40-x01-y02"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d41-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d42-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d43-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d44-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d45-x01-y02"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d46-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d47-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d48-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d49-x01-y02"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d50-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d51-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d52-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d54-x01-y02"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d01-x01-y04"
,
"177"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d03-x01-y04"
,
"177"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d04-x01-y04"
,
"177"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d38-x01-y04"
,
"177"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES/d39-x01-y04"
,
"177"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d02-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d03-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d04-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d05-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d06-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d07-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d08-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d09-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d13-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d15-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d17-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d18-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d19-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d20-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d21-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d22-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d23-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d25-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d31-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d38-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d39-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d40-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d44-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d45-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d46-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d47-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d48-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d49-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d50-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d51-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d53-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d54-x01-y01"
,
"10"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d02-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d03-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d04-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d05-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d06-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d07-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d08-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d09-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d13-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d15-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d18-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d19-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d20-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d21-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d22-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d31-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d33-x01-y01"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d34-x01-y01"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d38-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d39-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d44-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d46-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d47-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d48-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d50-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d51-x01-y02"
,
"35"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d02-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d03-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d04-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d05-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d06-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d07-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d08-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d09-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d10-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d11-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d12-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d13-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d14-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d15-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d16-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d17-x01-y02"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d18-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d19-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d20-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d21-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d23-x01-y02"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d24-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d25-x01-y02"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d26-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d27-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d28-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d29-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d30-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d31-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d32-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d34-x01-y02"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d35-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d36-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d37-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d38-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d39-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d40-x01-y02"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d41-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d42-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d43-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d44-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d45-x01-y02"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d46-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d47-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d48-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d49-x01-y02"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d50-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d51-x01-y03"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d52-x01-y01"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d54-x01-y02"
,
"91"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d03-x01-y04"
,
"177"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d04-x01-y04"
,
"177"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d38-x01-y04"
,
"177"
)
useOne
(
"/PDG_HADRON_MULTIPLICITIES_RATIOS/d39-x01-y04"
,
"177"
)
# AMY analysis
useOne
(
"/AMY_1990_I295160/d01-x01-y01"
,
"50"
)
useOne
(
"/AMY_1990_I295160/d01-x01-y02"
,
"52"
)
useOne
(
"/AMY_1990_I295160/d01-x01-y03"
,
"55"
)
useOne
(
"/AMY_1990_I295160/d01-x01-y04"
,
"56"
)
useOne
(
"/AMY_1990_I295160/d01-x01-y05"
,
"57"
)
useOne
(
"/AMY_1990_I295160/d01-x01-y06"
,
"60"
)
useOne
(
"/AMY_1990_I295160/d01-x01-y07"
,
"60.8"
)
useOne
(
"/AMY_1990_I295160/d01-x01-y08"
,
"61.4"
)
useOne
(
"/AMY_1990_I295160/d01-x01-y09"
,
"57"
)
useOne
(
"/AMY_1990_I295160/d02-x02-y01"
,
"57"
)
if
"/AMY_1990_I295160/d02-x01-y01"
in
inhistos
:
if
hasattr
(
outhistos
[
"/AMY_1990_I295160/d02-x01-y01"
],
'points'
)
:
merge
(
"/AMY_1990_I295160/d02-x01-y01"
)
else
:
for
i
,
bin
in
enumerate
(
outhistos
[
"/AMY_1990_I295160/d02-x01-y01"
]
.
bins
())
:
try
:
xx
=
float
(
outhistos
[
"/AMY_1990_I295160/d02-x01-y01"
]
.
xEdges
()[
i
])
src
=
inhistos
[
"/AMY_1990_I295160/d02-x01-y01"
][
xx
]
.
bin
(
i
+
1
)
except
:
src
=
inhistos
[
"/AMY_1990_I295160/d02-x01-y01"
][
57.
]
.
bin
(
i
+
1
)
bin
.
setVal
(
src
.
val
())
for
key
in
src
.
sources
()
:
bin
.
setErr
(
src
.
err
(
key
),
key
)
merge
(
"/JADE_1983_I190818/d01-x01-y01"
)
merge
(
"/PLUTO_1980_I154270/d01-x01-y01"
)
merge
(
"/TASSO_1989_I277658/d02-x01-y01"
)
useOne
(
"/TASSO_1989_I277658/d05-x01-y01"
,
"14"
)
useOne
(
"/TASSO_1989_I277658/d05-x01-y02"
,
"22"
)
useOne
(
"/TASSO_1989_I277658/d05-x01-y03"
,
"34.8"
)
useOne
(
"/TASSO_1989_I277658/d05-x01-y04"
,
"43.6"
)
# BELLE
useOne
(
"/BELLE_2006_S6265367/d01-x01-y01"
,
"10.52"
)
useOne
(
"/BELLE_2006_S6265367/d01-x01-y02"
,
"10.52"
)
useOne
(
"/BELLE_2006_S6265367/d01-x01-y03"
,
"10.52"
)
useOne
(
"/BELLE_2006_S6265367/d01-x01-y04"
,
"10.52"
)
useOne
(
"/BELLE_2006_S6265367/d01-x01-y05"
,
"10.52"
)
useOne
(
"/BELLE_2006_S6265367/d01-x01-y06"
,
"10.52"
)
useOne
(
"/BELLE_2006_S6265367/d01-x01-y07"
,
"10.52"
)
useOne
(
"/BELLE_2006_S6265367/d01-x01-y08"
,
"10.52"
)
useOne
(
"/BELLE_2006_S6265367/d02-x01-y01"
,
"10.52"
)
useOne
(
"/BELLE_2006_S6265367/d02-x01-y02"
,
"10.52"
)
useOne
(
"/BELLE_2006_S6265367/d03-x01-y01"
,
"10.52"
)
useOne
(
"/BELLE_2006_S6265367/d03-x01-y02"
,
"10.52"
)
useOne
(
"/BELLE_2006_S6265367/d04-x01-y01"
,
"10.52"
)
useOne
(
"/BELLE_2006_S6265367/d04-x01-y02"
,
"10.52"
)
useOne
(
"/BELLE_2006_S6265367/d05-x01-y01"
,
"10.52"
)
useOne
(
"/BELLE_2006_S6265367/d05-x01-y02"
,
"10.52"
)
useOne
(
"/BELLE_2006_S6265367/d06-x01-y01"
,
"10.52"
)
useOne
(
"/BELLE_2006_S6265367/d06-x01-y02"
,
"10.52"
)
useOne
(
"/BELLE_2006_S6265367/d07-x01-y01"
,
"10.52"
)
useOne
(
"/BELLE_2006_S6265367/d07-x01-y02"
,
"10.52"
)
useOne
(
"/BELLE_2006_S6265367/d08-x01-y01"
,
"10.52"
)
useOne
(
"/BELLE_2006_S6265367/d08-x01-y02"
,
"10.52"
)
useOne
(
"/BELLE_2006_S6265367/d09-x01-y01"
,
"U4"
)
useOne
(
"/BELLE_2006_S6265367/d09-x01-y02"
,
"U4"
)
useOne
(
"/BELLE_2006_S6265367/d10-x01-y01"
,
"U4"
)
useOne
(
"/BELLE_2006_S6265367/d10-x01-y02"
,
"U4"
)
useOne
(
"/BELLE_2006_S6265367/d11-x01-y01"
,
"U4"
)
useOne
(
"/BELLE_2006_S6265367/d11-x01-y02"
,
"U4"
)
useOne
(
"/BELLE_2006_S6265367/d12-x01-y01"
,
"U4"
)
useOne
(
"/BELLE_2006_S6265367/d12-x01-y02"
,
"U4"
)
useOne
(
"/BELLE_2006_S6265367/d13-x01-y01"
,
"U4"
)
useOne
(
"/BELLE_2006_S6265367/d13-x01-y02"
,
"U4"
)
useOne
(
"/BELLE_2006_S6265367/d14-x01-y01"
,
"U4"
)
useOne
(
"/BELLE_2006_S6265367/d14-x01-y02"
,
"U4"
)
useOne
(
"/BELLE_2006_S6265367/d15-x01-y01"
,
"U4"
)
useOne
(
"/BELLE_2006_S6265367/d15-x01-y02"
,
"U4"
)
# BABAR
useOne
(
"/BABAR_2007_I725377/d01-x01-y01"
,
"10.54"
)
useOne
(
"/BABAR_2007_I725377/d02-x01-y01"
,
"10.54"
)
useOne
(
"/BABAR_2007_I725377/d03-x01-y01"
,
"U4"
)
useOne
(
"/BABAR_2007_I725377/d04-x01-y01"
,
"U4"
)
# BABAR
useOne
(
"/BABAR_2005_I679961/d01-x01-y01"
,
"10.58"
)
useOne
(
"/BABAR_2005_I679961/d02-x01-y01"
,
"10.58"
)
useOne
(
"/BABAR_2005_I679961/d02-x01-y02"
,
"10.54"
)
useOne
(
"/BABAR_2005_I679961/d03-x01-y01"
,
"10.54"
)
useOne
(
"/BABAR_2005_I679961/d04-x01-y01"
,
"10.58"
)
useOne
(
"/BABAR_2005_I679961/d05-x01-y01"
,
"10.58"
)
useOne
(
"/BABAR_2005_I679961/d05-x01-y02"
,
"10.54"
)
# ARGUS
useOne
(
"/ARGUS_1993_I356616/d01-x01-y01"
,
"10.45"
)
useOne
(
"/ARGUS_1993_I356616/d01-x01-y02"
,
"10.45"
)
useOne
(
"/ARGUS_1993_I356616/d01-x01-y03"
,
"10.45"
)
useOne
(
"/ARGUS_1993_I356616/d01-x01-y04"
,
"10.45"
)
useOne
(
"/ARGUS_1993_I356616/d01-x01-y05"
,
"10.45"
)
useOne
(
"/ARGUS_1993_I356616/d02-x01-y01"
,
"U1"
)
useOne
(
"/ARGUS_1993_I356616/d02-x01-y02"
,
"U1"
)
useOne
(
"/ARGUS_1993_I356616/d02-x01-y03"
,
"U1"
)
useOne
(
"/ARGUS_1993_I356616/d02-x01-y04"
,
"U1"
)
useOne
(
"/ARGUS_1993_I356616/d02-x01-y05"
,
"U1"
)
useOne
(
"/ARGUS_1993_I356616/d03-x01-y01"
,
"U4"
)
useOne
(
"/ARGUS_1993_I356616/d03-x01-y02"
,
"U4"
)
useOne
(
"/ARGUS_1993_I356616/d03-x01-y03"
,
"U4"
)
useOne
(
"/ARGUS_1993_I356616/d03-x01-y04"
,
"U4"
)
useOne
(
"/ARGUS_1993_I356616/d03-x01-y05"
,
"U4"
)
useOne
(
"/ARGUS_1993_I356616/d04-x01-y01"
,
"10.45"
)
useOne
(
"/ARGUS_1993_I356616/d05-x01-y01"
,
"U1"
)
useOne
(
"/ARGUS_1993_I356616/d06-x01-y01"
,
"U4"
)
useOne
(
"/ARGUS_1993_I356616/d07-x01-y01"
,
"10.45"
)
useOne
(
"/ARGUS_1993_I356616/d08-x01-y01"
,
"U1"
)
useOne
(
"/ARGUS_1993_I356616/d09-x01-y01"
,
"U4"
)
useOne
(
"/ARGUS_1993_I356616/d10-x01-y01"
,
"10.45"
)
useOne
(
"/ARGUS_1993_I356616/d11-x01-y01"
,
"U1"
)
useOne
(
"/ARGUS_1993_I356616/d12-x01-y01"
,
"U4"
)
useOne
(
"/ARGUS_1993_I356616/d13-x01-y01"
,
"10.45"
)
useOne
(
"/ARGUS_1993_I356616/d14-x01-y01"
,
"U1"
)
useOne
(
"/ARGUS_1993_I356616/d15-x01-y01"
,
"U4"
)
if
(
"/ARGUS_1993_I342061/d04-x01-y01"
in
outhistos
)
:
useOne
(
"/ARGUS_1993_I342061/d02-x01-y01"
,
"10.45"
)
useOne
(
"/ARGUS_1993_I342061/d03-x01-y01"
,
"U1"
)
useOne
(
"/ARGUS_1993_I342061/d04-x01-y01"
,
"U2"
)
if
hasattr
(
outhistos
[
"/ARGUS_1993_I342061/d01-x01-y01"
],
'points'
)
:
merge
(
"/ARGUS_1993_I342061/d01-x01-y01"
)
merge
(
"/ARGUS_1993_I342061/d01-x01-y02"
)
merge
(
"/ARGUS_1993_I342061/d05-x01-y01"
)
else
:
for
hist
in
[
outhistos
[
"/ARGUS_1993_I342061/d01-x01-y01"
],
outhistos
[
"/ARGUS_1993_I342061/d01-x01-y02"
],
outhistos
[
"/ARGUS_1993_I342061/d05-x01-y01"
]]
:
for
i
,
bin
in
enumerate
(
hist
.
bins
())
:
if
i
==
1
:
loc
=
"U1"
elif
i
==
2
:
loc
=
"U2"
else
:
if
"d01"
in
hist
.
path
()
:
loc
=
9.9
else
:
loc
=
10.45
src
=
inhistos
[
hist
.
path
()][
loc
]
.
bins
()[
i
]
bin
.
setVal
(
src
.
val
())
for
key
in
src
.
sources
()
:
bin
.
setErr
(
src
.
err
(
key
),
key
)
useOne
(
"/ARGUS_1990_I278933/d01-x01-y01"
,
"9.46"
)
useOne
(
"/ARGUS_1990_I278933/d01-x01-y02"
,
"U1"
)
useOne
(
"/ARGUS_1990_I278933/d01-x01-y03"
,
"U2"
)
useOne
(
"/ARGUS_1990_I278933/d02-x01-y01"
,
"9.46"
)
useOne
(
"/ARGUS_1990_I278933/d02-x01-y02"
,
"U1"
)
useOne
(
"/ARGUS_1990_I278933/d02-x01-y03"
,
"U2"
)
useOne
(
"/ARGUS_1990_I278933/d03-x01-y01"
,
"9.46"
)
useOne
(
"/ARGUS_1990_I278933/d03-x01-y02"
,
"9.46"
)
useOne
(
"/ARGUS_1990_I278933/d04-x01-y01"
,
"U1"
)
useOne
(
"/ARGUS_1990_I278933/d04-x01-y02"
,
"U2"
)
useOne
(
"/ARGUS_1990_I278933/d05-x01-y01"
,
"9.46"
)
useOne
(
"/ARGUS_1990_I278933/d05-x01-y02"
,
"9.46"
)
useOne
(
"/ARGUS_1990_I278933/d06-x01-y01"
,
"U1"
)
useOne
(
"/ARGUS_1990_I278933/d06-x01-y02"
,
"U2"
)
useOne
(
"/CRYSTAL_BALL_1991_I297905/d01-x01-y01"
,
"9.46"
)
useOne
(
"/CRYSTAL_BALL_1991_I297905/d01-x01-y02"
,
"9.46"
)
useOne
(
"/CRYSTAL_BALL_1991_I297905/d02-x01-y01"
,
"U1"
)
useOne
(
"/CRYSTAL_BALL_1991_I297905/d02-x01-y02"
,
"U1"
)
useOne
(
"/CRYSTAL_BALL_1991_I297905/d03-x01-y01"
,
"9.46"
)
useOne
(
"/CRYSTAL_BALL_1991_I297905/d03-x01-y02"
,
"9.46"
)
useOne
(
"/CRYSTAL_BALL_1991_I297905/d04-x01-y01"
,
"U1"
)
useOne
(
"/CRYSTAL_BALL_1991_I297905/d05-x01-y01"
,
"9.46"
)
useOne
(
"/CRYSTAL_BALL_1991_I297905/d05-x01-y02"
,
"9.46"
)
useOne
(
"/CRYSTAL_BALL_1991_I297905/d06-x01-y01"
,
"U1"
)
useOne
(
"/ARGUS_1989_I262551/d01-x01-y01"
,
"10.00"
)
useOne
(
"/ARGUS_1989_I262551/d02-x01-y01"
,
"U1"
)
useOne
(
"/ARGUS_1989_I262551/d02-x01-y02"
,
"U2"
)
useOne
(
"/ARGUS_1989_I262551/d03-x01-y01"
,
"U1"
)
useOne
(
"/ARGUS_1989_I262551/d04-x01-y01"
,
"U2"
)
merge
(
"/ARGUS_1989_I276860/d01-x01-y01"
)
merge
(
"/ARGUS_1989_I276860/d01-x01-y02"
)
merge
(
"/ARGUS_1989_I276860/d02-x01-y01"
)
merge
(
"/ARGUS_1989_I276860/d03-x01-y01"
)
merge
(
"/ARGUS_1989_I276860/d04-x01-y01"
)
merge
(
"/ARGUS_1989_I276860/d04-x01-y02"
)
for
i
in
range
(
5
,
13
)
:
useOne
(
"/ARGUS_1989_I276860/d
%02d
-x01-y01"
%
i
,
"U1"
)
useOne
(
"/ARGUS_1989_I276860/d
%02d
-x01-y02"
%
i
,
"10.00"
)
for
i
in
range
(
1
,
8
)
:
useOne
(
"/ARGUS_1988_I251097/d01-x01-y
%02d
"
%
i
,
"U1"
)
useOne
(
"/ARGUS_1988_I251097/d02-x01-y
%02d
"
%
i
,
"10.00"
)
useOne
(
"/ARGUS_1988_I251097/d03-x01-y01"
,
"U1"
)
useOne
(
"/ARGUS_1988_I251097/d04-x01-y01"
,
"U2"
)
useOne
(
"/ARGUS_1988_I251097/d05-x01-y01"
,
"10.00"
)
useOne
(
"/ARGUS_1988_I251097/d06-x01-y01"
,
"10.00"
)
useOne
(
"/ARGUS_1988_I251097/d07-x01-y01"
,
"U1"
)
useOne
(
"/ARGUS_1988_I251097/d08-x01-y01"
,
"U2"
)
useOne
(
"/ARGUS_1988_I251097/d09-x01-y01"
,
"10.00"
)
useOne
(
"/ARGUS_1989_I262415/d03-x01-y01"
,
"U1"
)
useOne
(
"/ARGUS_1989_I262415/d04-x01-y01"
,
"10.00"
)
useOne
(
"/ARGUS_1989_I262415/d01-x01-y01"
,
"U1"
)
useOne
(
"/ARGUS_1989_I262415/d01-x01-y02"
,
"10.00"
)
useOne
(
"/ARGUS_1989_I262415/d01-x02-y01"
,
"U1"
)
useOne
(
"/ARGUS_1989_I262415/d01-x02-y02"
,
"10.00"
)
merge
(
"/PLUTO_1981_I165122/d02-x01-y01"
)
useOne
(
"/PLUTO_1981_I165122/d06-x01-y01"
,
"U1"
)
useOne
(
"/PLUTO_1981_I165122/d04-x01-y01"
,
"30.2"
)
useOne
(
"/PLUTO_1981_I165122/d05-x01-y01"
,
"9.4"
)
useOne
(
"/PLUTO_1977_I118873/d02-x01-y01"
,
"3.63"
)
useOne
(
"/PLUTO_1977_I118873/d03-x01-y01"
,
"4.03"
)
useOne
(
"/PLUTO_1977_I118873/d04-x01-y01"
,
"4.5"
)
# useOne("/TASSO_1982_I177174/d01-x01-y01","14.")
# useOne("/TASSO_1982_I177174/d01-x01-y02","22.")
# useOne("/TASSO_1982_I177174/d01-x01-y03","34.")
for
i
in
range
(
2
,
4
)
:
useOne
(
"/TASSO_1982_I177174/d0
%s
-x01-y01"
%
i
,
"12."
)
useOne
(
"/TASSO_1982_I177174/d0
%s
-x01-y02"
%
i
,
"14."
)
useOne
(
"/TASSO_1982_I177174/d0
%s
-x01-y03"
%
i
,
"22."
)
useOne
(
"/TASSO_1982_I177174/d0
%s
-x01-y04"
%
i
,
"25."
)
useOne
(
"/TASSO_1982_I177174/d0
%s
-x01-y05"
%
i
,
"30."
)
useOne
(
"/TASSO_1982_I177174/d0
%s
-x01-y06"
%
i
,
"34."
)
useOne
(
"/TASSO_1982_I177174/d0
%s
-x01-y07"
%
i
,
"35."
)
merge
(
"/TASSO_1980_I143691/d01-x01-y01"
)
useOne
(
"/TASSO_1980_I143691/d02-x01-y01"
,
"13."
)
useOne
(
"/TASSO_1980_I143691/d05-x01-y01"
,
"13."
)
for
ih
in
[
3
,
6
]
:
if
((
"/TASSO_1980_I143691/d0
%s
-x01-y01"
%
ih
)
in
inhistos
and
17.
in
inhistos
[
"/TASSO_1980_I143691/d0
%s
-x01-y01"
%
ih
]
and
22.
in
inhistos
[
"/TASSO_1980_I143691/d0
%s
-x01-y01"
%
ih
])
:
average
(
"/TASSO_1980_I143691/d0
%s
-x01-y01"
%
ih
,
"17."
,
"22."
)
useOne
(
"/TASSO_1980_I143691/d04-x01-y01"
,
"30.3"
)
useOne
(
"/TASSO_1980_I143691/d07-x01-y01"
,
"30.3"
)
useOne
(
"/TASSO_1990_I284251/d01-x01-y01"
,
"42.6"
)
useOne
(
"/TASSO_1990_I284251/d01-x01-y02"
,
"35."
)
useOne
(
"/TASSO_1990_I284251/d01-x01-y03"
,
"34.5"
)
useOne
(
"/TASSO_1990_I284251/d02-x01-y01"
,
"14.8"
)
useOne
(
"/TASSO_1990_I284251/d03-x01-y01"
,
"21.5"
)
merge
(
"/TASSO_1990_I284251/d04-x01-y01"
)
useOne
(
"/TASSO_1990_I284251/d05-x01-y01"
,
"42.6"
)
useOne
(
"/TASSO_1990_I284251/d05-x01-y02"
,
"42.6"
)
useOne
(
"/TASSO_1990_I284251/d05-x01-y03"
,
"35"
)
useOne
(
"/TASSO_1990_I284251/d05-x01-y04"
,
"35"
)
useOne
(
"/TASSO_1990_I284251/d06-x01-y01"
,
"14.8"
)
useOne
(
"/TASSO_1990_I284251/d06-x01-y02"
,
"14.8"
)
useOne
(
"/TASSO_1990_I284251/d07-x01-y01"
,
"21.5"
)
useOne
(
"/TASSO_1990_I284251/d07-x01-y02"
,
"21.5"
)
useOne
(
"/TASSO_1990_I284251/d08-x01-y01"
,
"42.6"
)
useOne
(
"/TASSO_1990_I284251/d08-x01-y02"
,
"35."
)
useOne
(
"/TASSO_1990_I284251/d08-x01-y03"
,
"34.5"
)
merge
(
"/TASSO_1990_I284251/d09-x01-y01"
)
useOne
(
"/TASSO_1990_I284251/d10-x01-y01"
,
"35"
)
useOne
(
"/TASSO_1990_I284251/d10-x01-y02"
,
"35"
)
merge
(
"/DASP_1979_I132410/d01-x01-y01"
)
# BES xi analysis
useOne
(
"/BESIII_2016_I1422780/d02-x01-y01"
,
"psi"
)
useOne
(
"/BESIII_2016_I1422780/d02-x01-y02"
,
"psi"
)
useOne
(
"/BESIII_2016_I1422780/d02-x01-y03"
,
"psi"
)
useOne
(
"/BESIII_2016_I1422780/d02-x01-y04"
,
"psi2s"
)
useOne
(
"/BESIII_2016_I1422780/d02-x01-y05"
,
"psi2s"
)
useOne
(
"/BESIII_2016_I1422780/d02-x01-y06"
,
"psi2s"
)
# if ( "/BESIII_2016_I1422780/d01-x01-y03" in inhistos and
# "psi" in inhistos["/BESIII_2016_I1422780/d01-x01-y03"]) :
# for point in inhistos["/BESIII_2016_I1422780/d01-x01-y03"]["psi"].points():
# outhistos["/BESIII_2016_I1422780/d01-x01-y03"].addPoint(point)
# if ( "/BESIII_2016_I1422780/d01-x01-y03" in inhistos and
# "psi2s" in inhistos["/BESIII_2016_I1422780/d01-x01-y03"]) :
# for point in inhistos["/BESIII_2016_I1422780/d01-x01-y03"]["psi2s"].points():
# outhistos["/BESIII_2016_I1422780/d01-x01-y03"].addPoint(point)
# pluto analysis
for
id
in
range
(
1
,
3
)
:
for
iy
in
range
(
1
,
5
)
:
merge
(
"/PLUTO_1983_I191161/d0
%s
-x01-y0
%s
"
%
(
id
,
iy
))
merge
(
"/OPAL_2000_I513476/d14-x01-y01"
)
merge
(
"/OPAL_2000_I513476/d20-x01-y01"
)
merge
(
"/OPAL_2000_I513476/d20-x01-y02"
)
merge
(
"/OPAL_2000_I513476/d20-x01-y03"
)
merge
(
"/OPAL_2000_I513476/d20-x01-y04"
)
merge
(
"/JADE_1979_I142874/d02-x01-y01"
)
merge
(
"/LENA_1981_I164397/d03-x01-y01"
)
useOne
(
"/LENA_1981_I164397/d04-x01-y01"
,
"9.51"
)
useOne
(
"/LENA_1981_I164397/d04-x01-y02"
,
"10."
)
useOne
(
"/LENA_1981_I164397/d04-x01-y03"
,
"U1"
)
useOne
(
"/LENA_1981_I164397/d04-x01-y04"
,
"U2"
)
useOne
(
"/ARGUS_1991_I315059/d01-x01-y01"
,
"10.47"
)
useOne
(
"/ARGUS_1991_I315059/d01-x01-y02"
,
"10.47"
)
useOne
(
"/ARGUS_1991_I315059/d01-x01-y03"
,
"10.47"
)
useOne
(
"/ARGUS_1991_I315059/d02-x01-y01"
,
"10.47"
)
useOne
(
"/ARGUS_1991_I315059/d03-x01-y01"
,
"10.47"
)
useOne
(
"/ARGUS_1991_I315059/d04-x01-y01"
,
"10.47"
)
useOne
(
"/ARGUS_1991_I315059/d05-x01-y01"
,
"U4"
)
useOne
(
"/ARGUS_1991_I315059/d06-x01-y01"
,
"U4"
)
useOne
(
"/ARGUS_1991_I315059/d07-x01-y01"
,
"U4"
)
for
i
in
[
3
,
4
,
5
,
6
,
7
,
8
,
18
,
19
,
20
,
21
,
22
,
23
]
:
useOne
(
"/TASSO_1989_I266893/d
%02d
-x01-y01"
%
i
,
"34.8"
)
for
i
in
range
(
9
,
15
)
:
useOne
(
"/TASSO_1989_I266893/d
%02d
-x01-y01"
%
i
,
"42.1"
)
for
i
in
range
(
1
,
4
)
:
useOne
(
"/TASSO_1989_I266893/d15-x01-y
%02d
"
%
i
,
"34.8"
)
useOne
(
"/TASSO_1989_I266893/d16-x01-y
%02d
"
%
i
,
"42.1"
)
for
i
in
range
(
1
,
12
)
:
useOne
(
"/CLEO_1985_I205668/d
%02d
-x01-y01"
%
i
,
10.47
)
useOne
(
"/CLEO_1985_I205668/d
%02d
-x01-y02"
%
i
,
"U1"
)
for
i
in
range
(
12
,
24
)
:
merge
(
"/CLEO_1985_I205668/d
%02d
-x01-y01"
%
i
)
useOne
(
"/BABAR_2014_I1286317/d01-x01-y01"
,
"U3"
)
useOne
(
"/BABAR_2014_I1286317/d02-x01-y01"
,
"U2"
)
useOne
(
"/BABAR_2014_I1286317/d03-x01-y01"
,
"U1"
)
useOne
(
"/BABAR_2014_I1286317/d06-x01-y01"
,
"U3"
)
useOne
(
"/BABAR_2014_I1286317/d06-x02-y01"
,
"U2"
)
useOne
(
"/BABAR_2014_I1286317/d06-x03-y01"
,
"U1"
)
useOne
(
"/BABAR_2014_I1286317/d04-x01-y01"
,
"10.6"
)
useOne
(
"/BABAR_2014_I1286317/d05-x01-y01"
,
"10.6"
)
useOne
(
"/BABAR_2014_I1286317/d06-x04-y01"
,
"10.6"
)
for
ix
in
range
(
0
,
2
)
:
if
ix
==
0
:
en
=
"189"
else
:
en
=
"183"
for
iy
in
range
(
1
,
3
)
:
useOne
(
"/DELPHI_2001_I526164/d
%02d
-x01-y0
%s
"
%
(
5
+
2
*
ix
,
iy
),
en
)
useOne
(
"/DELPHI_2001_I526164/d
%02d
-x01-y01"
%
(
6
+
2
*
ix
),
en
)
for
iloc
in
range
(
2
,
5
,
2
)
:
useOne
(
"/DELPHI_2001_I526164/d16-x01-y
%02d
"
%
(
iloc
-
ix
),
en
)
for
iy
in
range
(
1
,
5
)
:
useOne
(
"/DELPHI_2001_I526164/d
%02d
-x01-y0
%s
"
%
(
9
+
ix
,
iy
),
en
)
useOne
(
"/DELPHI_2001_I526164/d
%02d
-x01-y0
%s
"
%
(
11
+
ix
,
iy
),
en
)
for
ix
in
range
(
13
,
16
)
:
for
iy
in
range
(
1
,
5
)
:
useOne
(
"/DELPHI_2001_I526164/d
%02d
-x01-y0
%s
"
%
(
ix
,
iy
),
"189"
)
-
merge
(
"/DELPHI_2001_I526164/d01-x01-y01"
)
+
merge
(
"/DELPHI_2001_I526164/d01-x01-y01"
)
+
merge
(
"/DELPHI_2001_I526164/d03-x01-y01"
)
+
merge
(
"/DELPHI_2001_I526164/d03-x01-y03"
)
for
ix
in
range
(
1
,
6
)
:
merge
(
"/DELPHI_2001_I526164/d02-x01-y0
%s
"
%
ix
)
for
ix
in
range
(
1
,
7
)
:
useOne
(
"/DELPHI_2001_I526164/d04-x01-y0
%s
"
%
ix
,
"189"
)
-
# weird histo, select bins by hand
-
if
"/DELPHI_2001_I526164/d03-x01-y01"
in
inhistos
:
-
if
hasattr
(
outhistos
[
"/DELPHI_2001_I526164/d03-x01-y01"
],
'points'
)
:
-
outhistos
[
"/DELPHI_2001_I526164/d03-x01-y01"
]
.
addPoint
(
inhistos
[
"/DELPHI_2001_I526164/d03-x01-y01"
][
183.
]
.
points
()[
0
])
-
outhistos
[
"/DELPHI_2001_I526164/d03-x01-y01"
]
.
addPoint
(
inhistos
[
"/DELPHI_2001_I526164/d03-x01-y01"
][
189.
]
.
points
()[
1
])
-
outhistos
[
"/DELPHI_2001_I526164/d03-x01-y01"
]
.
addPoint
(
inhistos
[
"/DELPHI_2001_I526164/d03-x01-y01"
][
183.
]
.
points
()[
2
])
-
outhistos
[
"/DELPHI_2001_I526164/d03-x01-y01"
]
.
addPoint
(
inhistos
[
"/DELPHI_2001_I526164/d03-x01-y01"
][
189.
]
.
points
()[
3
])
-
else
:
-
for
i
,
bin
in
enumerate
(
outhistos
[
"/DELPHI_2001_I526164/d03-x01-y01"
]
.
bins
())
:
-
if
i
%
2
==
0
:
src
=
inhistos
[
"/DELPHI_2001_I526164/d03-x01-y01"
][
183.
]
.
bins
()[
i
]
-
else
:
src
=
inhistos
[
"/DELPHI_2001_I526164/d03-x01-y01"
][
189.
]
.
bins
()[
i
]
-
bin
.
setVal
(
src
.
val
())
-
for
key
in
src
.
sources
()
:
-
bin
.
setErr
(
src
.
err
(
key
),
key
)
useOne
(
"/MARKII_1982_I178416/d01-x01-y01"
,
"5.2"
)
useOne
(
"/MARKII_1982_I178416/d01-x01-y02"
,
"6.5"
)
useOne
(
"/MARKII_1982_I178416/d01-x01-y03"
,
"29.0"
)
useOne
(
"/CLEO_2005_I1649168/d01-x01-y07"
,
"U4"
)
useOne
(
"/CLEO_2005_I1649168/d01-x01-y08"
,
"U5"
)
useOne
(
"/CLEO_2007_I728872/d01-x01-y05"
,
"U4"
)
useOne
(
"/CLEO_2007_I728872/d02-x01-y05"
,
"U5"
)
for
ih
in
[
3
,
5
,
6
,
7
,
8
,
9
,
10
,
11
,
12
,
13
,
14
]
:
eTemp
=
[
"14"
,
"22"
,
"34"
]
for
iy
in
range
(
0
,
3
)
:
useOne
(
"/TASSO_1984_I195333/d
%02d
-x01-y
%02d
"
%
(
ih
,
iy
+
1
)
,
eTemp
[
iy
])
for
iy
in
range
(
1
,
12
)
:
merge
(
"/TASSO_1984_I195333/d04-x01-y
%02d
"
%
iy
)
# # normalize where we have sum histos
# for i in range(1,5) :
# hname="/BABAR_2007_I746745/d0%s-x01-y01" %i
# if hname in outhistos and outhistos[hname].numEntries()!=0.) :
# outhistos[hname].normalize()
# Choose output file
name
=
args
[
0
]
+
".yoda"
removeNan
()
# output the yoda file
yoda
.
writeYODA
(
outhistos
,
name
)
sys
.
exit
(
0
)
diff
--
git
a
/
Tests
/
python
/
merge
-
LHC
-
Jets
.
in
b
/
Tests
/
python
/
merge
-
LHC
-
Jets
.
in
---
a
/
Tests
/
python
/
merge
-
LHC
-
Jets
.
in
+++
b
/
Tests
/
python
/
merge
-
LHC
-
Jets
.
in
@@
-
1
,
1791
+
1
,
1803
@@
#! @PYTHON@
# -*- mode: python -*-
from
__future__
import
print_function
import
logging
,
sys
,
math
if
sys
.
version_info
[:
3
]
<
(
2
,
4
,
0
):
print
(
"rivet scripts require Python version >= 2.4.0... exiting"
)
sys
.
exit
(
1
)
import
os
,
yoda
# #############################################
def
rescale
(
path
,
scale
)
:
if
(
path
not
in
outhistos
)
:
return
-
outhistos
[
path
]
.
scaleW
(
scale
)
+
if
hasattr
(
outhistos
[
path
],
'scaleW'
)
:
+
outhistos
[
path
]
.
scaleW
(
scale
)
+
elif
hasattr
(
outhistos
[
path
],
'scale'
)
:
+
outhistos
[
path
]
.
scale
(
scale
)
+
else
:
+
print
(
"Can't scale "
,
path
)
def
fillAbove
(
scale
,
desthisto
,
sourcehistosbyptmin
)
:
pthigh
=
1e100
ptlow
=-
1e100
-
for
pt
,
h
in
sorted
(
sourcehistosbyptmin
.
items
(),
reverse
=
True
):
+
temp
=
{}
+
for
(
pt
,
h
)
in
sorted
(
sourcehistosbyptmin
.
items
(),
reverse
=
True
):
ptlow
=
pt
if
(
type
(
desthisto
)
==
yoda
.
core
.
Scatter2D
)
:
for
i
in
range
(
0
,
h
.
numPoints
())
:
-
xMin
=
h
.
points
()[
i
]
.
x
()
-
h
.
points
()[
i
]
.
xErrs
()
.
minus
-
if
(
xMin
*
scale
>=
ptlow
and
-
xMin
*
scale
<
pthigh
)
:
+
xMin
=
h
.
points
()[
i
]
.
x
-
h
.
points
()[
i
]
.
xErrs
()
.
minus
+
if
(
xMin
>=
ptlow
and
xMin
<
pthigh
)
:
desthisto
.
addPoint
(
h
.
points
()[
i
])
elif
(
type
(
desthisto
)
==
yoda
.
core
.
Profile1D
)
:
for
i
in
range
(
0
,
h
.
numBins
())
:
-
if
(
h
.
bins
()[
i
]
.
xMin
()
*
scale
>=
ptlow
and
-
h
.
bins
()[
i
]
.
xMin
()
*
scale
<
pthigh
)
:
+
if
(
h
.
bins
()[
i
]
.
xMin
()
>=
ptlow
and
+
h
.
bins
()[
i
]
.
xMin
()
<
pthigh
)
:
desthisto
.
bins
()[
i
]
+=
h
.
bins
()[
i
]
elif
(
type
(
desthisto
)
==
yoda
.
core
.
Histo1D
)
:
for
i
in
range
(
0
,
h
.
numBins
())
:
-
if
(
h
.
bins
()[
i
]
.
xMin
()
*
scale
>=
ptlow
and
-
h
.
bins
()[
i
]
.
xMin
()
*
scale
<
pthigh
)
:
+
if
(
h
.
bins
()[
i
]
.
xMin
()
>=
ptlow
and
+
h
.
bins
()[
i
]
.
xMin
()
<
pthigh
)
:
desthisto
.
bins
()[
i
]
+=
h
.
bins
()[
i
]
-
elif
(
type
(
desthisto
)
==
yoda
.
core
.
Counter
)
:
-
desthisto
+=
h
+
elif
(
type
(
desthisto
)
==
yoda
.
core
.
BinnedEstimate1D
)
:
+
for
b
in
h
.
bins
()
:
+
if
(
b
.
xMin
()
>=
ptlow
and
+
b
.
xMin
()
<
pthigh
)
:
+
desthisto
.
bin
(
b
.
index
())
.
setVal
(
b
.
val
())
+
for
key
in
b
.
sources
()
:
+
desthisto
.
bin
(
b
.
index
())
.
setErr
(
b
.
err
(
key
),
key
)
else
:
-
logging
.
error
(
"Can't merge
%s
, unknown type"
%
desthisto
.
path
())
+
logging
.
error
(
"Can't merge
%s
, unknown type"
%
desthisto
.
path
)
sys
.
exit
(
1
)
pthigh
=
pt
def
mergeByPt
(
hpath
,
sqrts
,
scale
=
1.
)
:
global
inhistos_pt
global
outhistos
-
try
:
-
fillAbove
(
scale
,
outhistos
[
hpath
],
inhistos_pt
[
hpath
][
float
(
sqrts
)])
-
except
:
-
pass
+
if
hpath
not
in
outhistos
or
hpath
not
in
inhistos_pt
:
+
print
(
"Histograms not found for
%s
, can't merge by pT"
%
hpath
)
+
return
+
fillAbove
(
scale
,
outhistos
[
hpath
],
inhistos_pt
[
hpath
][
float
(
sqrts
)])
def
mergeByMass
(
hpath
,
sqrts
,
scale
=
1.
):
global
inhistos_mass
global
outhistos
-
try
:
-
fillAbove
(
scale
,
outhistos
[
hpath
],
inhistos_mass
[
hpath
][
float
(
sqrts
)])
-
except
:
-
pass
+
fillAbove
(
scale
,
outhistos
[
hpath
],
inhistos_mass
[
hpath
][
float
(
sqrts
)])
def
useOnePt
(
hpath
,
sqrts
,
ptmin
):
global
inhistos_pt
global
outhistos
try
:
## Find best pT_min match
ptmins
=
inhistos_pt
[
hpath
][
float
(
sqrts
)]
.
keys
()
closest_ptmin
=
None
for
ptm
in
ptmins
:
if
closest_ptmin
is
None
or
\
abs
(
ptm
-
float
(
ptmin
))
<
abs
(
closest_ptmin
-
float
(
ptmin
)):
closest_ptmin
=
ptm
if
closest_ptmin
!=
float
(
ptmin
):
logging
.
warning
(
"Inexact match for requested pTmin=
%s
: "
%
ptmin
+
\
"using pTmin=
%e
instead"
%
closest_ptmin
)
outhistos
[
hpath
]
=
inhistos_pt
[
hpath
][
float
(
sqrts
)][
closest_ptmin
]
except
:
pass
def
useOneMass
(
hpath
,
sqrts
,
ptmin
):
global
inhistos_pt
global
outhistos
try
:
## Find best pT_min match
ptmins
=
inhistos_mass
[
hpath
][
float
(
sqrts
)]
.
keys
()
closest_ptmin
=
None
for
ptm
in
ptmins
:
if
closest_ptmin
is
None
or
\
abs
(
ptm
-
float
(
ptmin
))
<
abs
(
closest_ptmin
-
float
(
ptmin
)):
closest_ptmin
=
ptm
if
closest_ptmin
!=
float
(
ptmin
):
logging
.
warning
(
"Inexact match for requested mass=
%s
: "
%
ptmin
+
\
"using mass=
%e
instead"
%
closest_ptmin
)
outhistos
[
hpath
]
=
inhistos_mass
[
hpath
][
float
(
sqrts
)][
closest_ptmin
]
except
:
pass
# #######################################
if
__name__
==
"__main__"
:
import
logging
from
optparse
import
OptionParser
,
OptionGroup
parser
=
OptionParser
(
usage
=
"%prog name"
)
verbgroup
=
OptionGroup
(
parser
,
"Verbosity control"
)
parser
.
add_option
(
"--with-ue"
,
action
=
'store_true'
,
dest
=
"ue"
,
default
=
True
,
help
=
"Include UE analyses"
)
parser
.
add_option
(
"--without-ue"
,
action
=
'store_false'
,
dest
=
"ue"
,
default
=
True
,
help
=
"Don
\'
t include UE analyses"
)
verbgroup
.
add_option
(
"-v"
,
"--verbose"
,
action
=
"store_const"
,
const
=
logging
.
DEBUG
,
dest
=
"LOGLEVEL"
,
default
=
logging
.
INFO
,
help
=
"print debug (very verbose) messages"
)
verbgroup
.
add_option
(
"-q"
,
"--quiet"
,
action
=
"store_const"
,
const
=
logging
.
WARNING
,
dest
=
"LOGLEVEL"
,
default
=
logging
.
INFO
,
help
=
"be very quiet"
)
parser
.
add_option_group
(
verbgroup
)
(
opts
,
args
)
=
parser
.
parse_args
()
logging
.
basicConfig
(
level
=
opts
.
LOGLEVEL
,
format
=
"
%(message)s
"
)
(
opts
,
args
)
=
parser
.
parse_args
()
## Check args
if
len
(
args
)
<
1
:
logging
.
error
(
"Must specify at least the name of the files"
)
sys
.
exit
(
1
)
yodafiles
=
[
"-7-Bottom-0.yoda"
,
"-7-Bottom-1.yoda"
,
"-7-Bottom-2.yoda"
,
"-7-Bottom-3.yoda"
,
"-7-Bottom-4.yoda"
,
"-7-Bottom-5.yoda"
,
"-7-Bottom-6.yoda"
,
"-13-Bottom-0.yoda"
,
"-13-Bottom-1.yoda"
,
"-13-Bottom-2.yoda"
,
"-13-Bottom-3.yoda"
,
"-13-Bottom-4.yoda"
,
"-13-Bottom-5.yoda"
,
"-13-Bottom-6.yoda"
,
"-7-Charm-1.yoda"
,
"-7-Charm-2.yoda"
,
"-7-Charm-3.yoda"
,
"-7-Charm-4.yoda"
,
"-7-Charm-5.yoda"
,
"-7-Top-SL.yoda"
,
"-7-Top-L.yoda"
,
"-8-Top-SL.yoda"
,
"-8-Top-L.yoda"
,
"-8-Top-All.yoda"
,
"-13-Top-L.yoda"
,
"-13-Top-SL.yoda"
,
"-13-Top-All.yoda"
]
for
i
in
range
(
1
,
11
)
:
for
j
in
[
7
,
8
,
13
]
:
yodafiles
.
append
(
"-
%1.1i
-Jets-
%1.1i
.yoda"
%
(
j
,
i
))
for
i
in
range
(
1
,
4
)
:
yodafiles
.
append
(
"-2760-Jets-
%1.1i
.yoda"
%
i
)
if
(
opts
.
ue
)
:
yodafiles
+=
[
"-7-Jets-0.yoda"
,
"-8-Jets-0.yoda"
,
"-900-UE.yoda"
,
"-2360-UE.yoda"
,
"-2760-UE.yoda"
,
"-7-UE.yoda"
,
"-900-UE-Long.yoda"
,
"-8-UE.yoda"
,
"-7-UE-Long.yoda"
,
"-13-UE.yoda"
,
"-13-UE-Long.yoda"
]
# "-7-UE-Cent.yoda","-13-UE-Cent.yoda"]
## Get histos
inhistos_pt
=
{}
inhistos_mass
=
{}
outhistos
=
{}
weights
=
{}
for
f
in
yodafiles
:
file
=
'Rivet-'
+
args
[
0
]
+
f
ptmin
=
0.
sqrts
=
7000
# CMS energy
if
(
file
.
find
(
"-900-"
)
>
0
)
:
sqrts
=
900
elif
(
file
.
find
(
"-2360-"
)
>
0
)
:
sqrts
=
2360
elif
(
file
.
find
(
"-2760-"
)
>
0
)
:
sqrts
=
2760
elif
(
file
.
find
(
"-7-"
)
>=
0
)
:
sqrts
=
7000
elif
(
file
.
find
(
"-8-"
)
>=
0
)
:
sqrts
=
8000
elif
(
file
.
find
(
"-13-"
)
>
0
)
:
sqrts
=
13000
# pT min
if
(
file
.
find
(
"UE"
)
>
0
)
:
ptmin
=
0.
elif
(
file
.
find
(
"Jets-0"
)
>
0
)
:
ptmin
=
4.
elif
(
file
.
find
(
"Jets-10"
)
>
0
)
:
ptmin
=
1900.
elif
(
file
.
find
(
"Jets-1"
)
>
0
)
:
if
(
not
opts
.
ue
)
:
ptmin
=
10.
else
:
ptmin
=
20.
elif
(
file
.
find
(
"Jets-2"
)
>
0
)
:
ptmin
=
40.
elif
(
file
.
find
(
"Jets-3"
)
>
0
)
:
ptmin
=
80.
elif
(
file
.
find
(
"Jets-4"
)
>
0
)
:
ptmin
=
110.
elif
(
file
.
find
(
"Jets-5"
)
>
0
)
:
ptmin
=
210.
elif
(
file
.
find
(
"Jets-6"
)
>
0
)
:
ptmin
=
260.
elif
(
file
.
find
(
"Jets-7"
)
>
0
)
:
ptmin
=
400.
elif
(
file
.
find
(
"Jets-8"
)
>
0
)
:
ptmin
=
600.
elif
(
file
.
find
(
"Jets-9"
)
>
0
)
:
ptmin
=
900.
elif
(
file
.
find
(
"Bottom-0"
)
>
0
)
:
ptmin
=
0.
elif
(
file
.
find
(
"Bottom-1"
)
>
0
or
file
.
find
(
"Charm-1"
)
>
0
)
:
ptmin
=
10.
elif
(
file
.
find
(
"Bottom-2"
)
>
0
or
file
.
find
(
"Charm-2"
)
>
0
)
:
ptmin
=
20.
elif
(
file
.
find
(
"Bottom-3"
)
>
0
or
file
.
find
(
"Charm-3"
)
>
0
)
:
ptmin
=
30.
elif
(
file
.
find
(
"Bottom-4"
)
>
0
or
file
.
find
(
"Charm-4"
)
>
0
)
:
ptmin
=
70.
elif
(
file
.
find
(
"Bottom-5"
)
>
0
or
file
.
find
(
"Charm-5"
)
>
0
)
:
ptmin
=
100.
elif
(
file
.
find
(
"Bottom-6"
)
>
0
or
file
.
find
(
"Charm-6"
)
>
0
)
:
ptmin
=
130.
elif
(
file
.
find
(
"Top-SL.yoda"
)
>
0
or
file
.
find
(
"Top-L.yoda"
)
>
0
or
\
file
.
find
(
"Top-All.yoda"
)
>
0
):
ptmin
=
0.
if
not
os
.
access
(
file
,
os
.
R_OK
):
logging
.
error
(
"
%s
can not be read"
%
file
)
continue
try
:
aos
=
yoda
.
read
(
file
)
except
:
logging
.
error
(
"
%s
can not be parsed as YODA"
%
file
)
continue
## Get histos from this YODA file
for
aopath
,
ao
in
aos
.
items
()
:
aopath
=
aopath
.
replace
(
":MODE=DIJET"
,
""
)
ao
.
setPath
(
ao
.
path
()
.
replace
(
":MODE=DIJET"
,
""
))
if
"RAW"
in
aopath
:
continue
-
if
(
"S8924791"
in
aopath
or
"S8971293"
in
aopath
or
-
"S8817804"
in
aopath
or
"I1082936"
in
aopath
or
-
"S8994773"
in
aopath
or
"S8918562"
in
aopath
or
-
"S8624100"
in
aopath
or
"S8625980"
in
aopath
or
-
"S8894728"
in
aopath
or
"S8957746"
in
aopath
or
-
"S9126244"
in
aopath
or
"S9120041"
in
aopath
or
-
"S8950903"
in
aopath
or
"S9086218"
in
aopath
or
-
"S9088458"
in
aopath
or
"I919017"
in
aopath
or
-
"I926145"
in
aopath
or
"S8941262"
in
aopath
or
-
"S8973270"
in
aopath
or
"I1118269"
in
aopath
or
+
if
(
"I882984"
in
aopath
or
"I889546"
in
aopath
or
+
"871366"
in
aopath
or
"I1082936"
in
aopath
or
+
"I891834"
in
aopath
or
"I882098"
in
aopath
or
+
"I852450"
in
aopath
or
"852264"
in
aopath
or
+
"I879407"
in
aopath
or
"I886332"
in
aopath
or
+
"917526"
in
aopath
or
"916908"
in
aopath
or
+
"I885663"
in
aopath
or
"902309"
in
aopath
or
+
"I912560"
in
aopath
or
"I919017"
in
aopath
or
+
"I926145"
in
aopath
or
"I884811"
in
aopath
or
+
"I889807"
in
aopath
or
"I1118269"
in
aopath
or
"I1188891"
in
aopath
or
"I1082009"
in
aopath
or
-
"I1087342"
in
aopath
or
"S9035664"
in
aopath
or
+
"I1087342"
in
aopath
or
"I896268"
in
aopath
or
"I1125575"
in
aopath
or
"I1094564"
in
aopath
or
"I930220"
in
aopath
or
"I1224539"
in
aopath
or
"I1273574"
in
aopath
or
"I1261026"
in
aopath
or
"I1307243"
in
aopath
or
"I1325553"
in
aopath
or
"I1298810"
in
aopath
or
"I1298811"
in
aopath
or
"I1208923"
in
aopath
or
"I1305624"
in
aopath
or
"I1419070"
in
aopath
or
"I1394679"
in
aopath
or
"I929691"
in
aopath
or
"I1393758"
in
aopath
or
"I1459051"
in
aopath
or
"I1487277"
in
aopath
or
"I1421646"
in
aopath
or
"I1111014"
in
aopath
or
"I1605749"
in
aopath
or
"I1682495"
in
aopath
or
"I1609253"
in
aopath
or
"1385107"
in
aopath
or
"I1486238"
in
aopath
or
"1634970"
in
aopath
or
"I1604271"
in
aopath
or
"I1598460"
in
aopath
or
"I1643640"
in
aopath
or
"I1808726"
in
aopath
or
"I1724098"
in
aopath
or
"I1719955"
in
aopath
or
"I1740909"
in
aopath
or
"I1913061"
in
aopath
or
"I1932460"
in
aopath
or
"I1972986"
in
aopath
or
"I1920187"
in
aopath
or
"ATLAS_2016_CONF_2016_092"
in
aopath
or
"CMS_2012_PAS_QCD_11_010"
in
aopath
)
:
if
(
"1419070"
in
aopath
and
(
"forward"
in
aopath
or
"central"
in
aopath
))
:
continue
if
aopath
not
in
inhistos_pt
:
inhistos_pt
[
aopath
]
=
{}
tmpE
=
inhistos_pt
[
aopath
]
if
sqrts
not
in
tmpE
:
tmpE
[
sqrts
]
=
{}
if
ptmin
not
in
tmpE
[
sqrts
]:
tmpE
[
sqrts
][
ptmin
]
=
ao
else
:
tmpE
[
sqrts
][
ptmin
]
+=
ao
#raise Exception("A set with ptmin = %s already exists" % ( ptmin))
else
:
if
(
"1509919"
in
aopath
and
"Ctr_cut"
in
aopath
)
:
continue
elif
"I1393758"
in
aopath
and
(
"d02"
in
aopath
or
"d04"
in
aopath
or
"d06"
in
aopath
or
"d08"
in
aopath
or
"d10"
in
aopath
or
"d12"
in
aopath
)
:
continue
elif
"1387176"
in
aopath
and
"y02"
in
aopath
:
continue
elif
"1454211"
in
aopath
and
"cutflow"
in
aopath
:
continue
elif
(
"ATLAS_2016_I1468168"
in
aopath
)
:
newPath
=
aopath
.
replace
(
"Passed_events"
,
"d02-x01-y01"
)
outhistos
[
newPath
]
=
ao
ao
.
setPath
(
newPath
)
elif
(
aopath
.
find
(
"I1243871"
)
>
0
)
:
if
(
aopath
.
find
(
"x01"
)
>
0
and
file
.
find
(
"-7-Top-L.yoda"
)
>
0
)
:
outhistos
[
aopath
]
=
ao
elif
(
aopath
.
find
(
"x02"
)
>
0
and
file
.
find
(
"-7-Top-SL.yoda"
)
>
0
)
:
outhistos
[
aopath
]
=
ao
elif
(
aopath
.
find
(
"1467230"
)
>
0
or
aopath
.
find
(
"1419652"
)
>
0
)
:
if
(
aopath
.
find
(
"y01"
)
>
0
and
file
.
find
(
"Long"
)
>
0
)
:
outhistos
[
aopath
]
=
ao
elif
(
aopath
.
find
(
"y02"
)
>
0
and
file
.
find
(
"Long"
)
<
0
)
:
outhistos
[
aopath
]
=
ao
elif
(
"CMS_2017_I1471287"
in
aopath
)
:
if
(
"CMS_2017_I1471287/d"
in
aopath
)
:
outhistos
[
aopath
]
=
ao
elif
(
"ATLAS_2018_I1705857"
in
aopath
)
:
ihist
=
int
(
aopath
.
split
(
"/d"
)[
1
]
.
split
(
"-"
)[
0
])
if
"-SL"
in
file
:
if
ihist
in
[
9
,
10
,
11
,
12
,
19
,
20
,
21
,
22
,
23
,
24
,
25
,
26
,
33
,
34
,
35
,
36
,
37
,
38
,
45
,
46
,
47
,
48
,
49
,
50
]
:
outhistos
[
aopath
]
=
ao
elif
"-L"
in
file
:
if
ihist
in
[
3
,
4
,
5
,
6
,
7
,
8
,
13
,
14
,
15
,
16
,
17
,
18
,
27
,
28
,
29
,
30
,
31
,
32
,
39
,
40
,
41
,
42
,
43
,
44
]
:
outhistos
[
aopath
]
=
ao
if
ihist
in
[
1
,
2
]
:
if
aopath
not
in
outhistos
:
outhistos
[
aopath
]
=
ao
else
:
title
=
""
path
=
""
# if hasattr(ao, 'title'):
# title=ao.title()
# if hasattr(ao, 'path'):
# path=ao.path()
# if type(ao) == yoda.core.Histo1D(path,title) :
# temp = yoda.core.Histo1D(path,title)
# for i in range(0,ao.numBins()) :
# temp.addBin(ao.bins()[i].xMin(),ao.bins()[i].xMax())
# if("-SL" in file) :
# temp.bins()[0] += outhistos[aopath].bins()[0]
# temp.bins()[1] += outhistos[aopath].bins()[1]
# temp.bins()[2] += ao.bins()[2]
# temp.bins()[3] += ao.bins()[3]
# temp.bins()[2] += ao.bins()[2]
# temp.bins()[3] += ao.bins()[3]
# else :
# temp.bins()[0] += ao.bins()[0]
# temp.bins()[1] += ao.bins()[1]
# temp.bins()[2] += outhistos[aopath].bins()[2]
# temp.bins()[3] += outhistos[aopath].bins()[3]
# temp.bins()[2] += outhistos[aopath].bins()[2]
# temp.bins()[3] += outhistos[aopath].bins()[3]
# else :
# temp = yoda.core.BinnedHisto1D(path,title,)
# quit()
#outhistos[aopath] = temp
elif
"ATLAS_2018_I1707015"
in
aopath
:
if
"d03"
in
aopath
or
"d04"
in
aopath
or
"d05"
in
aopath
:
if
"Top-SL"
in
file
:
outhistos
[
aopath
]
=
ao
else
:
if
(
"Top-L"
in
file
)
:
outhistos
[
aopath
]
=
ao
else
:
outhistos
[
aopath
]
=
ao
yodafiles
=
[
"-7-Bottom-7.yoda"
,
"-7-Bottom-8.yoda"
,
"-7-Bottom-9.yoda"
]
for
i
in
range
(
1
,
8
)
:
yodafiles
.
append
(
"-7-DiJets-
%1.1i
-A.yoda"
%
i
)
yodafiles
.
append
(
"-7-DiJets-
%1.1i
-B.yoda"
%
i
)
yodafiles
.
append
(
"-7-DiJets-
%1.1i
-C.yoda"
%
i
)
for
i
in
range
(
1
,
12
)
:
yodafiles
.
append
(
"-13-DiJets-
%1.1i
-A.yoda"
%
i
)
# for i in range(6,12) :
# yodafiles.append("-13-DiJets-%1.1i-B.yoda" % i)
for
f
in
yodafiles
:
file
=
'Rivet-'
+
args
[
0
]
+
f
if
"-7-Jets"
in
file
or
"-7-DiJets"
in
file
or
"-7-Bottom"
in
file
:
sqrts
=
7000
elif
"-13-Jets"
in
file
or
"-13-DiJets"
in
file
:
sqrts
=
13000
if
(
file
.
find
(
"-DiJets-2"
)
>
0
)
:
mass
=
250
elif
(
file
.
find
(
"-DiJets-3"
)
>
0
)
:
mass
=
500
elif
(
file
.
find
(
"-DiJets-4"
)
>
0
)
:
mass
=
800
elif
(
file
.
find
(
"-DiJets-5"
)
>
0
)
:
mass
=
1000
elif
(
file
.
find
(
"-DiJets-6"
)
>
0
)
:
mass
=
1600
elif
(
file
.
find
(
"-DiJets-7"
)
>
0
)
:
mass
=
2200
elif
(
file
.
find
(
"-DiJets-8"
)
>
0
)
:
mass
=
2800
elif
(
file
.
find
(
"-DiJets-9"
)
>
0
)
:
mass
=
3900
elif
(
file
.
find
(
"-DiJets-10"
)
>
0
)
:
mass
=
4900
elif
(
file
.
find
(
"-DiJets-11"
)
>
0
)
:
mass
=
5900
elif
(
file
.
find
(
"-DiJets-1"
)
>
0
)
:
mass
=
100
elif
(
file
.
find
(
"-Bottom-7"
)
>
0
)
:
mass
=
110
elif
(
file
.
find
(
"-Bottom-8"
)
>
0
)
:
mass
=
370
elif
(
file
.
find
(
"-Bottom-9"
)
>
0
)
:
mass
=
550
elif
(
file
.
find
(
"-Jets-1"
)
>
0
)
:
mass
=
0
if
not
os
.
access
(
file
,
os
.
R_OK
):
logging
.
error
(
"
%s
can not be read"
%
file
)
continue
try
:
aos
=
yoda
.
read
(
file
)
except
:
logging
.
error
(
"
%s
can not be parsed as YODA"
%
file
)
continue
## Get histos from this YODA file
for
aopath
,
ao
in
aos
.
items
()
:
if
(
"RAW"
in
aopath
)
:
continue
-
if
(
aopath
.
find
(
"8817804"
)
>
0
or
aopath
.
find
(
"8968497"
)
>
0
or
+
if
(
aopath
.
find
(
"871366"
)
>
0
or
aopath
.
find
(
"889175"
)
>
0
or
aopath
.
find
(
"1082936"
)
>
0
or
aopath
.
find
(
"I930220"
)
>
0
or
aopath
.
find
(
"1261026"
)
>
0
or
aopath
.
find
(
"1090423"
)
>
0
or
aopath
.
find
(
"1268975"
)
>
0
or
aopath
.
find
(
"1519995"
)
>
0
or
aopath
.
find
(
"1663452"
)
>
0
or
aopath
.
find
(
"1634970"
)
>
0
or
aopath
.
find
(
"CMS_2013_I1208923"
)
>
0
)
:
if
aopath
not
in
inhistos_mass
:
inhistos_mass
[
aopath
]
=
{}
tmpE
=
inhistos_mass
[
aopath
]
if
sqrts
not
in
tmpE
:
tmpE
[
sqrts
]
=
{}
tmpP
=
tmpE
[
sqrts
]
if
mass
not
in
tmpP
:
tmpP
[
mass
]
=
ao
else
:
print
(
aopath
)
print
(
sqrts
,
mass
,
file
)
raise
Exception
(
"A set with mass =
%s
already exists"
%
(
mass
))
## Make empty output histos if needed
for
hpath
,
hsets
in
inhistos_pt
.
items
():
-
if
(
"8924791"
in
hpath
or
"8971293"
in
hpath
or
-
"8817804"
in
hpath
or
"8968497"
in
hpath
or
-
(
"9120041"
in
hpath
and
(
"d01"
in
hpath
or
"d02"
in
hpath
))
or
-
"9126244"
in
hpath
or
"926145"
in
hpath
or
-
"9086218"
in
hpath
or
"1082936"
in
hpath
or
-
"8941262"
in
hpath
or
"1118269"
in
hpath
or
+
if
(
"882984"
in
hpath
or
"889546"
in
hpath
or
+
"871366"
in
hpath
or
"889175"
in
hpath
or
+
(
"916908"
in
hpath
and
(
"d01"
in
hpath
or
"d02"
in
hpath
))
or
+
"917526"
in
hpath
or
"926145"
in
hpath
or
+
"902309"
in
hpath
or
"1082936"
in
hpath
or
+
"884811"
in
hpath
or
"1118269"
in
hpath
or
"1087342"
in
hpath
or
"1188891"
in
hpath
or
-
"919017"
in
hpath
or
"9035664"
in
hpath
or
-
"1125575"
in
hpath
or
"1094564"
in
hpath
or
+
"919017"
in
hpath
or
"896268"
in
hpath
or
+
(
"1125575"
in
hpath
and
"nEvents"
not
in
hpath
)
or
+
"1094564"
in
hpath
or
(
"I930220"
in
hpath
and
"Counter"
not
in
hpath
)
or
-
"S9088458"
in
hpath
or
+
"I912560"
in
hpath
or
"I1273574"
in
hpath
or
"I1261026"
in
hpath
or
"I1090423"
in
hpath
or
"QCD_11_010"
in
hpath
or
"1298811"
in
hpath
or
"I1325553"
in
hpath
or
"I1298810"
in
hpath
or
"1307243"
in
hpath
or
"I1419070"
in
hpath
or
"I1394679"
in
hpath
or
"I1487277"
in
hpath
or
"I1604271"
in
hpath
or
"I1598460"
in
hpath
or
"CMS_2013_I1208923"
in
hpath
or
"1393758"
in
hpath
or
"ATLAS_2016_CONF_2016_092"
in
hpath
or
"1111014"
in
hpath
or
"1385107"
in
hpath
or
"I1486238"
in
hpath
or
"1459051"
in
hpath
or
"1634970"
in
hpath
or
"I1740909"
in
hpath
or
"1913061"
in
hpath
or
"I1972986"
in
hpath
or
"I1932460"
in
hpath
)
:
title
=
""
path
=
""
histo
=
list
(
list
(
hsets
.
values
())[
0
]
.
values
())[
0
]
if
hasattr
(
histo
,
'title'
):
title
=
histo
.
title
()
if
hasattr
(
histo
,
'path'
):
path
=
histo
.
path
()
if
(
type
(
histo
)
==
yoda
.
core
.
Counter
)
:
outhistos
[
hpath
]
=
yoda
.
core
.
Counter
(
path
,
title
)
elif
(
type
(
histo
)
==
yoda
.
core
.
Scatter2D
)
:
outhistos
[
hpath
]
=
yoda
.
core
.
Scatter2D
(
path
,
title
)
elif
(
type
(
histo
)
==
yoda
.
core
.
Profile1D
)
:
outhistos
[
hpath
]
=
yoda
.
core
.
Profile1D
(
path
,
title
)
for
i
in
range
(
0
,
histo
.
numBins
())
:
outhistos
[
hpath
]
.
addBin
(
histo
.
bins
()[
i
]
.
xMin
(),
histo
.
bins
()[
i
]
.
xMax
())
elif
(
type
(
histo
)
==
yoda
.
core
.
Histo1D
)
:
outhistos
[
hpath
]
=
yoda
.
core
.
Histo1D
(
path
,
title
)
for
i
in
range
(
0
,
histo
.
numBins
())
:
outhistos
[
hpath
]
.
addBin
(
histo
.
bins
()[
i
]
.
xMin
(),
histo
.
bins
()[
i
]
.
xMax
())
elif
(
type
(
histo
)
==
yoda
.
core
.
BinnedEstimate1D
)
:
outhistos
[
hpath
]
=
yoda
.
core
.
BinnedEstimate1D
(
histo
.
xEdges
(),
path
,
title
)
if
len
(
histo
.
maskedBins
())
>
0
:
outhistos
[
hpath
]
.
maskBins
(
histo
.
maskedBins
())
else
:
logging
.
error
(
"Histogram
%s
is of unknown type
%s
"
%
(
hpath
,
type
(
ao
)))
sys
.
exit
(
1
)
## Make empty output histos if needed
for
hpath
,
hsets
in
inhistos_mass
.
items
():
if
(
"1268975"
in
hpath
or
"1634970"
in
hpath
)
:
title
=
""
path
=
""
histo
=
list
(
list
(
hsets
.
values
())[
0
]
.
values
())[
0
]
if
hasattr
(
histo
,
'title'
):
title
=
histo
.
title
()
if
hasattr
(
histo
,
'path'
):
path
=
histo
.
path
()
if
(
type
(
histo
)
==
yoda
.
core
.
Counter
)
:
outhistos
[
hpath
]
=
yoda
.
core
.
Counter
(
path
,
title
)
elif
(
type
(
histo
)
==
yoda
.
core
.
Scatter2D
)
:
outhistos
[
hpath
]
=
yoda
.
core
.
Scatter2D
(
path
,
title
)
elif
(
type
(
histo
)
==
yoda
.
core
.
Profile1D
)
:
outhistos
[
hpath
]
=
yoda
.
core
.
Profile1D
(
path
,
title
)
for
i
in
range
(
0
,
histo
.
numBins
())
:
outhistos
[
hpath
]
.
addBin
(
histo
.
bins
()[
i
]
.
xMin
(),
histo
.
bins
()[
i
]
.
xMax
())
elif
(
type
(
histo
)
==
yoda
.
core
.
Histo1D
)
:
outhistos
[
hpath
]
=
yoda
.
core
.
Histo1D
(
path
,
title
)
for
i
in
range
(
0
,
histo
.
numBins
())
:
outhistos
[
hpath
]
.
addBin
(
histo
.
bins
()[
i
]
.
xMin
(),
histo
.
bins
()[
i
]
.
xMax
())
+
elif
(
type
(
histo
)
==
yoda
.
core
.
BinnedEstimate1D
)
:
+
outhistos
[
hpath
]
=
yoda
.
core
.
BinnedEstimate1D
(
histo
.
xEdges
(),
path
,
title
)
+
if
len
(
histo
.
maskedBins
())
>
0
:
+
outhistos
[
hpath
]
.
maskBins
(
histo
.
maskedBins
())
else
:
logging
.
error
(
"Histogram
%s
is of unknown type"
%
hpath
)
sys
.
exit
(
1
)
logging
.
info
(
"Processing CMS_2011_I886332"
)
useOnePt
(
"/CMS_2011_I886332/d01-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/CMS_2011_I886332/d02-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/CMS_2011_I886332/d03-x01-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/CMS_2011_I886332/d04-x01-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/CMS_2011_I886332/d05-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/CMS_2011_I886332/d06-x01-y01"
,
"7000"
,
"210"
)
logging
.
info
(
"Processing ATLAS_2010_I879407"
)
useOnePt
(
"/ATLAS_2010_I879407/d01-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d01-x01-y02"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d01-x01-y03"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d02-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d02-x01-y02"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d02-x01-y03"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d03-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d03-x01-y02"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d03-x01-y03"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d04-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d04-x01-y02"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d04-x01-y03"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d05-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d06-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d07-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d08-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d09-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d09-x01-y02"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d09-x01-y03"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d10-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d10-x01-y02"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d10-x01-y03"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d11-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d11-x01-y02"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d11-x01-y03"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d12-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d12-x01-y02"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d12-x01-y03"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d13-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d13-x01-y02"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d13-x01-y03"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d13-x01-y04"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d14-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d14-x01-y02"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d14-x01-y03"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d14-x01-y04"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d15-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d15-x01-y02"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d15-x01-y03"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d15-x01-y04"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d16-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d16-x01-y02"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d16-x01-y03"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d16-x01-y04"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d17-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d17-x01-y02"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d17-x01-y03"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d18-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d18-x01-y02"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d18-x01-y03"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d19-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d19-x01-y02"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d19-x01-y03"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d20-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d20-x01-y02"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d20-x01-y03"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d21-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I879407/d22-x01-y01"
,
"7000"
,
"0"
)
logging
.
info
(
"Processing ATLAS_2011_I891834"
)
useOnePt
(
"/ATLAS_2011_I891834/d01-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2011_I891834/d02-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2011_I891834/d03-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2011_I891834/d04-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2011_I891834/d13-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2011_I891834/d13-x01-y02"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2011_I891834/d13-x01-y03"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2011_I891834/d14-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2011_I891834/d14-x01-y02"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2011_I891834/d14-x01-y03"
,
"7000"
,
"0"
)
logging
.
info
(
"Processing ALICE_2010_I852450"
)
useOnePt
(
"/ALICE_2010_I852450/d11-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ALICE_2010_I852450/d12-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ALICE_2010_I852450/d13-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ALICE_2010_I852450/d17-x01-y01"
,
"2360"
,
"0"
)
useOnePt
(
"/ALICE_2010_I852450/d18-x01-y01"
,
"2360"
,
"0"
)
useOnePt
(
"/ALICE_2010_I852450/d19-x01-y01"
,
"2360"
,
"0"
)
logging
.
info
(
"Processing ALICE_2010_I852264"
)
useOnePt
(
"/ALICE_2010_I852264/d03-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ALICE_2010_I852264/d04-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ALICE_2010_I852264/d05-x01-y01"
,
"2360"
,
"0"
)
useOnePt
(
"/ALICE_2010_I852264/d06-x01-y01"
,
"7000"
,
"0"
)
logging
.
info
(
"Processing ATLAS_2010_I882098"
)
useOnePt
(
"/ATLAS_2010_I882098/d01-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d02-x01-y01"
,
"2360"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d03-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d04-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d05-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d06-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d07-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d08-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d09-x01-y01"
,
"2360"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d10-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d11-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d12-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d13-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d14-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d15-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d16-x01-y01"
,
"2360"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d17-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d18-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d19-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d20-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d21-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d22-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d23-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d24-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d25-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d26-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d27-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d28-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d29-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d30-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d31-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d32-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d33-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d34-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d35-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d36-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d37-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d38-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/ATLAS_2010_I882098/d39-x01-y01"
,
"7000"
,
"0"
)
logging
.
info
(
"Processing ATLAS_2011_I889546"
)
useOnePt
(
"/ATLAS_2011_I889546/d01-x01-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I889546/d01-x01-y02"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I889546/d01-x01-y03"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I889546/d01-x01-y04"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I889546/d01-x01-y05"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I889546/d01-x01-y06"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2011_I889546/d01-x01-y07"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2011_I889546/d01-x01-y08"
,
"7000"
,
"600"
)
useOnePt
(
"/ATLAS_2011_I889546/d01-x01-y09"
,
"7000"
,
"600"
)
logging
.
info
(
"Processing ATLAS_2011_I882984"
)
if
(
not
opts
.
ue
)
:
useOnePt
(
"/ATLAS_2011_I882984/d01-x01-y01"
,
"7000"
,
"10"
)
useOnePt
(
"/ATLAS_2011_I882984/d01-x01-y02"
,
"7000"
,
"10"
)
useOnePt
(
"/ATLAS_2011_I882984/d01-x02-y01"
,
"7000"
,
"10"
)
useOnePt
(
"/ATLAS_2011_I882984/d01-x02-y02"
,
"7000"
,
"10"
)
useOnePt
(
"/ATLAS_2011_I882984/d01-x03-y01"
,
"7000"
,
"10"
)
useOnePt
(
"/ATLAS_2011_I882984/d01-x03-y02"
,
"7000"
,
"10"
)
useOnePt
(
"/ATLAS_2011_I882984/d01-x04-y01"
,
"7000"
,
"10"
)
useOnePt
(
"/ATLAS_2011_I882984/d01-x04-y02"
,
"7000"
,
"10"
)
useOnePt
(
"/ATLAS_2011_I882984/d01-x05-y01"
,
"7000"
,
"10"
)
useOnePt
(
"/ATLAS_2011_I882984/d01-x05-y02"
,
"7000"
,
"10"
)
useOnePt
(
"/ATLAS_2011_I882984/d01-x06-y01"
,
"7000"
,
"10"
)
useOnePt
(
"/ATLAS_2011_I882984/d01-x06-y02"
,
"7000"
,
"10"
)
else
:
useOnePt
(
"/ATLAS_2011_I882984/d01-x01-y01"
,
"7000"
,
"20"
)
useOnePt
(
"/ATLAS_2011_I882984/d01-x01-y02"
,
"7000"
,
"20"
)
useOnePt
(
"/ATLAS_2011_I882984/d01-x02-y01"
,
"7000"
,
"20"
)
useOnePt
(
"/ATLAS_2011_I882984/d01-x02-y02"
,
"7000"
,
"20"
)
useOnePt
(
"/ATLAS_2011_I882984/d01-x03-y01"
,
"7000"
,
"20"
)
useOnePt
(
"/ATLAS_2011_I882984/d01-x03-y02"
,
"7000"
,
"20"
)
useOnePt
(
"/ATLAS_2011_I882984/d01-x04-y01"
,
"7000"
,
"20"
)
useOnePt
(
"/ATLAS_2011_I882984/d01-x04-y02"
,
"7000"
,
"20"
)
useOnePt
(
"/ATLAS_2011_I882984/d01-x05-y01"
,
"7000"
,
"20"
)
useOnePt
(
"/ATLAS_2011_I882984/d01-x05-y02"
,
"7000"
,
"20"
)
useOnePt
(
"/ATLAS_2011_I882984/d01-x06-y01"
,
"7000"
,
"20"
)
useOnePt
(
"/ATLAS_2011_I882984/d01-x06-y02"
,
"7000"
,
"20"
)
useOnePt
(
"/ATLAS_2011_I882984/d02-x01-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I882984/d02-x01-y02"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I882984/d02-x02-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I882984/d02-x02-y02"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I882984/d02-x03-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I882984/d02-x03-y02"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I882984/d02-x04-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I882984/d02-x04-y02"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I882984/d02-x05-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I882984/d02-x05-y02"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I882984/d02-x06-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I882984/d02-x06-y02"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I882984/d03-x01-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I882984/d03-x01-y02"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I882984/d03-x02-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I882984/d03-x02-y02"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I882984/d03-x03-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I882984/d03-x03-y02"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I882984/d03-x04-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I882984/d03-x04-y02"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I882984/d03-x05-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I882984/d03-x05-y02"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I882984/d03-x06-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I882984/d03-x06-y02"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I882984/d04-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2011_I882984/d04-x01-y02"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2011_I882984/d04-x02-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2011_I882984/d04-x02-y02"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2011_I882984/d04-x03-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2011_I882984/d04-x03-y02"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2011_I882984/d04-x04-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2011_I882984/d04-x04-y02"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2011_I882984/d04-x05-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2011_I882984/d04-x05-y02"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2011_I882984/d04-x06-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2011_I882984/d04-x06-y02"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2011_I882984/d05-x01-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I882984/d05-x01-y02"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I882984/d05-x02-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I882984/d05-x02-y02"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I882984/d05-x03-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I882984/d05-x03-y02"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I882984/d05-x04-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I882984/d05-x04-y02"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I882984/d05-x05-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I882984/d05-x05-y02"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I882984/d05-x06-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I882984/d05-x06-y02"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I882984/d06-x01-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I882984/d06-x01-y02"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I882984/d06-x02-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I882984/d06-x02-y02"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I882984/d06-x03-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I882984/d06-x03-y02"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I882984/d06-x04-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I882984/d06-x04-y02"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I882984/d06-x05-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I882984/d06-x05-y02"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I882984/d06-x06-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I882984/d06-x06-y02"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I882984/d07-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I882984/d07-x01-y02"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I882984/d07-x02-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I882984/d07-x02-y02"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I882984/d07-x03-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I882984/d07-x03-y02"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I882984/d07-x04-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I882984/d07-x04-y02"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I882984/d07-x05-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I882984/d07-x05-y02"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I882984/d07-x06-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I882984/d07-x06-y02"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I882984/d08-x01-y01"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I882984/d08-x01-y02"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I882984/d08-x02-y01"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I882984/d08-x02-y02"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I882984/d08-x03-y01"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I882984/d08-x03-y02"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I882984/d08-x04-y01"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I882984/d08-x04-y02"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I882984/d08-x05-y01"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I882984/d08-x05-y02"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I882984/d08-x06-y01"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I882984/d08-x06-y02"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I882984/d09-x01-y01"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I882984/d09-x01-y02"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I882984/d09-x02-y01"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I882984/d09-x02-y02"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I882984/d09-x03-y01"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I882984/d09-x03-y02"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I882984/d09-x04-y01"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I882984/d09-x04-y02"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I882984/d09-x05-y01"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I882984/d09-x05-y02"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I882984/d09-x06-y01"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I882984/d09-x06-y02"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I882984/d10-x01-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2011_I882984/d10-x01-y02"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2011_I882984/d10-x02-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2011_I882984/d10-x02-y02"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2011_I882984/d10-x03-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2011_I882984/d10-x03-y02"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2011_I882984/d10-x04-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2011_I882984/d10-x04-y02"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2011_I882984/d10-x05-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2011_I882984/d10-x05-y02"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2011_I882984/d10-x06-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2011_I882984/d10-x06-y02"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2011_I882984/d11-x01-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2011_I882984/d11-x01-y02"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2011_I882984/d11-x02-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2011_I882984/d11-x02-y02"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2011_I882984/d11-x03-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2011_I882984/d11-x03-y02"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2011_I882984/d11-x04-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2011_I882984/d11-x04-y02"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2011_I882984/d11-x05-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2011_I882984/d11-x05-y02"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2011_I882984/d11-x06-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2011_I882984/d11-x06-y02"
,
"7000"
,
"400"
)
logging
.
info
(
"Processing ATLAS_2010_I871366"
)
mergeByPt
(
"/ATLAS_2010_I871366/d01-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2010_I871366/d02-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2010_I871366/d03-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2010_I871366/d04-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2010_I871366/d05-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2010_I871366/d06-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2010_I871366/d07-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2010_I871366/d08-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2010_I871366/d09-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2010_I871366/d10-x01-y01"
,
"7000"
)
mergeByMass
(
"/ATLAS_2010_I871366/d11-x01-y01"
,
"7000"
)
mergeByMass
(
"/ATLAS_2010_I871366/d12-x01-y01"
,
"7000"
)
mergeByMass
(
"/ATLAS_2010_I871366/d13-x01-y01"
,
"7000"
)
mergeByMass
(
"/ATLAS_2010_I871366/d14-x01-y01"
,
"7000"
)
mergeByMass
(
"/ATLAS_2010_I871366/d15-x01-y01"
,
"7000"
)
mergeByMass
(
"/ATLAS_2010_I871366/d16-x01-y01"
,
"7000"
)
mergeByMass
(
"/ATLAS_2010_I871366/d17-x01-y01"
,
"7000"
)
mergeByMass
(
"/ATLAS_2010_I871366/d18-x01-y01"
,
"7000"
)
mergeByMass
(
"/ATLAS_2010_I871366/d19-x01-y01"
,
"7000"
)
mergeByMass
(
"/ATLAS_2010_I871366/d20-x01-y01"
,
"7000"
)
useOneMass
(
"/ATLAS_2010_I871366/d21-x01-y01"
,
"7000"
,
"250"
)
useOneMass
(
"/ATLAS_2010_I871366/d22-x01-y01"
,
"7000"
,
"250"
)
useOneMass
(
"/ATLAS_2010_I871366/d23-x01-y01"
,
"7000"
,
"650"
)
useOneMass
(
"/ATLAS_2010_I871366/d24-x01-y01"
,
"7000"
,
"250"
)
useOneMass
(
"/ATLAS_2010_I871366/d25-x01-y01"
,
"7000"
,
"250"
)
useOneMass
(
"/ATLAS_2010_I871366/d26-x01-y01"
,
"7000"
,
"650"
)
logging
.
info
(
"Processing ATLAS_2011_I930220"
)
mergeByPt
(
"/ATLAS_2011_I930220/d01-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I930220/d02-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I930220/d03-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I930220/d04-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I930220/d05-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I930220/d06-x01-y01"
,
"7000"
)
mergeByMass
(
"/ATLAS_2011_I930220/d07-x01-y01"
,
"7000"
)
useOneMass
(
"/ATLAS_2011_I930220/d08-x01-y01"
,
"7000"
,
"110"
)
useOneMass
(
"/ATLAS_2011_I930220/d09-x01-y01"
,
"7000"
,
"110"
)
useOneMass
(
"/ATLAS_2011_I930220/d10-x01-y01"
,
"7000"
,
"370"
)
logging
.
info
(
"Processing ATLAS_2012_I1082936"
)
mergeByPt
(
"/ATLAS_2012_I1082936/d01-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1082936/d01-x01-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1082936/d01-x01-y03"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1082936/d01-x01-y04"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1082936/d01-x01-y05"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1082936/d01-x01-y06"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1082936/d01-x01-y07"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1082936/d02-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1082936/d02-x01-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1082936/d02-x01-y03"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1082936/d02-x01-y04"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1082936/d02-x01-y05"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1082936/d02-x01-y06"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1082936/d02-x01-y07"
,
"7000"
)
mergeByMass
(
"/ATLAS_2012_I1082936/d03-x01-y01"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2012_I1082936/d03-x01-y02"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2012_I1082936/d03-x01-y03"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2012_I1082936/d03-x01-y04"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2012_I1082936/d03-x01-y05"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2012_I1082936/d03-x01-y06"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2012_I1082936/d03-x01-y07"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2012_I1082936/d03-x01-y08"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2012_I1082936/d03-x01-y09"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2012_I1082936/d04-x01-y01"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2012_I1082936/d04-x01-y02"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2012_I1082936/d04-x01-y03"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2012_I1082936/d04-x01-y04"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2012_I1082936/d04-x01-y05"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2012_I1082936/d04-x01-y06"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2012_I1082936/d04-x01-y07"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2012_I1082936/d04-x01-y08"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2012_I1082936/d04-x01-y09"
,
"7000"
,
1000.
)
logging
.
info
(
"Processing CMS_2011_I889175"
)
useOneMass
(
"/CMS_2011_I889175/d01-x01-y01"
,
"7000"
,
"1700"
)
useOneMass
(
"/CMS_2011_I889175/d02-x01-y01"
,
"7000"
,
"1700"
)
useOneMass
(
"/CMS_2011_I889175/d03-x01-y01"
,
"7000"
,
"1100"
)
useOneMass
(
"/CMS_2011_I889175/d04-x01-y01"
,
"7000"
,
"1100"
)
useOneMass
(
"/CMS_2011_I889175/d05-x01-y01"
,
"7000"
,
"650"
)
useOneMass
(
"/CMS_2011_I889175/d06-x01-y01"
,
"7000"
,
"650"
)
useOneMass
(
"/CMS_2011_I889175/d07-x01-y01"
,
"7000"
,
"250"
)
useOneMass
(
"/CMS_2011_I889175/d08-x01-y01"
,
"7000"
,
"250"
)
useOneMass
(
"/CMS_2011_I889175/d09-x01-y01"
,
"7000"
,
"250"
)
logging
.
info
(
"Processing ATLAS_2011_I917526"
)
mergeByPt
(
"/ATLAS_2011_I917526/d01-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I917526/d01-x01-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I917526/d02-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I917526/d02-x01-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I917526/d03-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I917526/d03-x01-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I917526/d04-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I917526/d04-x01-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I917526/d05-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I917526/d05-x01-y02"
,
"7000"
)
useOnePt
(
"/ATLAS_2011_I917526/d06-x01-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I917526/d06-x01-y02"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I917526/d07-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2011_I917526/d07-x01-y02"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2011_I917526/d08-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2011_I917526/d08-x01-y02"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2011_I917526/d09-x01-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I917526/d09-x01-y02"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I917526/d10-x01-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I917526/d10-x01-y02"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I917526/d11-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I917526/d11-x01-y02"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I917526/d12-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I917526/d12-x01-y02"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I917526/d13-x01-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I917526/d13-x01-y02"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I917526/d14-x01-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I917526/d14-x01-y02"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I917526/d15-x01-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I917526/d15-x01-y02"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I917526/d16-x01-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I917526/d16-x01-y02"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I917526/d17-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I917526/d17-x01-y02"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I917526/d18-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I917526/d18-x01-y02"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I917526/d19-x01-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I917526/d20-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2011_I917526/d21-x01-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I917526/d22-x01-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I917526/d23-x01-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I917526/d24-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I917526/d25-x01-y01"
,
"7000"
,
"210"
)
mergeByPt
(
"/ATLAS_2011_I917526/d26-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I917526/d26-x01-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I917526/d27-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I917526/d27-x01-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I917526/d28-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I917526/d28-x01-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I917526/d29-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I917526/d29-x01-y02"
,
"7000"
)
useOnePt
(
"/ATLAS_2011_I917526/d30-x01-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I917526/d31-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2011_I917526/d32-x01-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I917526/d33-x01-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I917526/d34-x01-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I917526/d35-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I917526/d36-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I917526/d37-x01-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I917526/d37-x01-y02"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I917526/d38-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2011_I917526/d38-x01-y02"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2011_I917526/d39-x01-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I917526/d39-x01-y02"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I917526/d40-x01-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I917526/d40-x01-y02"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I917526/d41-x01-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I917526/d41-x01-y02"
,
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I917526/d42-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I917526/d42-x01-y02"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I917526/d43-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I917526/d43-x01-y02"
,
"7000"
,
"210"
)
# CMS_2011_I916908 UE analysis
logging
.
info
(
"Processing CMS_2011_I916908"
)
mergeByPt
(
"/CMS_2011_I916908/d01-x01-y01"
,
"7000"
)
mergeByPt
(
"/CMS_2011_I916908/d02-x01-y01"
,
"7000"
)
if
(
opts
.
ue
)
:
useOnePt
(
"/CMS_2011_I916908/d03-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/CMS_2011_I916908/d04-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/CMS_2011_I916908/d05-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/CMS_2011_I916908/d06-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/CMS_2011_I916908/d07-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/CMS_2011_I916908/d11-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/CMS_2011_I916908/d12-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/CMS_2011_I916908/d13-x01-y01"
,
"900"
,
"0"
)
useOnePt
(
"/CMS_2011_I916908/d08-x01-y01"
,
"7000"
,
"20"
)
useOnePt
(
"/CMS_2011_I916908/d09-x01-y01"
,
"7000"
,
"20"
)
useOnePt
(
"/CMS_2011_I916908/d10-x01-y01"
,
"7000"
,
"20"
)
else
:
useOnePt
(
"/CMS_2011_I916908/d08-x01-y01"
,
"7000"
,
"10"
)
useOnePt
(
"/CMS_2011_I916908/d09-x01-y01"
,
"7000"
,
"10"
)
useOnePt
(
"/CMS_2011_I916908/d10-x01-y01"
,
"7000"
,
"10"
)
# CMS dijet decorrelation
logging
.
info
(
"Processing CMS_2011_I885663"
)
useOnePt
(
"/CMS_2011_I885663/d01-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/CMS_2011_I885663/d02-x01-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/CMS_2011_I885663/d03-x01-y01"
,
"7000"
,
"110"
)
useOnePt
(
"/CMS_2011_I885663/d04-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/CMS_2011_I885663/d05-x01-y01"
,
"7000"
,
"260"
)
# CMS jet cross section
logging
.
info
(
"Processing CMS_2011_I902309"
)
mergeByPt
(
"/CMS_2011_I902309/d01-x01-y01"
,
"7000"
)
mergeByPt
(
"/CMS_2011_I902309/d02-x01-y01"
,
"7000"
)
mergeByPt
(
"/CMS_2011_I902309/d03-x01-y01"
,
"7000"
)
mergeByPt
(
"/CMS_2011_I902309/d04-x01-y01"
,
"7000"
)
mergeByPt
(
"/CMS_2011_I902309/d05-x01-y01"
,
"7000"
)
mergeByPt
(
"/CMS_2011_I902309/d06-x01-y01"
,
"7000"
)
# CMS 2/3 jet cross section ratio
logging
.
info
(
"Processing CMS_2011_I902309"
)
mergeByPt
(
"/CMS_2011_I912560/d01-x01-y01"
,
"7000"
,
500.
)
# ATLAS track jet
logging
.
info
(
"Processing ATLAS_2011_I919017"
)
for
d
in
range
(
1
,
3
)
:
for
y
in
range
(
1
,
5
)
:
mergeByPt
(
"/ATLAS_2011_I919017/d0
%s
-x01-y0
%s
"
%
(
d
,
y
),
"7000"
)
if
(
opts
.
ue
)
:
for
x
in
range
(
2
,
6
)
:
for
y
in
[
"01"
,
"02"
,
"06"
,
"07"
,
"11"
,
"12"
,
"16"
,
"17"
,
"21"
,
"22"
]
:
useOnePt
(
"/ATLAS_2011_I919017/d0
%s
-x0
%s
-y
%s
"
%
(
d
,
x
,
y
),
"7000"
,
"0"
)
for
y
in
[
"03"
,
"04"
,
"08"
,
"09"
,
"13"
,
"14"
,
"18"
,
"19"
,
"23"
,
"24"
]
:
useOnePt
(
"/ATLAS_2011_I919017/d0
%s
-x0
%s
-y
%s
"
%
(
d
,
x
,
y
),
"7000"
,
"4"
)
for
y
in
range
(
5
,
30
,
5
)
:
useOnePt
(
"/ATLAS_2011_I919017/d0
%s
-x
%02d
-y
%02d
"
%
(
d
,
x
,
y
)
,
"7000"
,
"20"
)
else
:
for
x
in
range
(
2
,
6
)
:
for
y
in
range
(
5
,
30
,
5
)
:
useOnePt
(
"/ATLAS_2011_I919017/d0
%s
-x
%02d
-y
%02d
"
%
(
d
,
x
,
y
)
,
"7000"
,
"10"
)
logging
.
info
(
"Processing ATLAS_2011_I926145"
)
mergeByPt
(
"/ATLAS_2011_I926145/d01-x01-y01"
,
"7000"
,
1.5
)
mergeByPt
(
"/ATLAS_2011_I926145/d02-x01-y01"
,
"7000"
,
1.5
)
mergeByPt
(
"/ATLAS_2011_I926145/d03-x01-y01"
,
"7000"
,
1.5
)
logging
.
info
(
"Processing CMS_2011_I884811"
)
useOnePt
(
"/CMS_2011_I884811/d01-x01-y01"
,
"7000"
,
"10"
)
useOnePt
(
"/CMS_2011_I884811/d03-x01-y01"
,
"7000"
,
"10"
)
mergeByPt
(
"/CMS_2011_I884811/d02-x01-y01"
,
"7000"
,
1.5
)
logging
.
info
(
"Processing CMS_2011_I889807"
)
useOnePt
(
"/CMS_2011_I889807/d01-x01-y01"
,
"7000"
,
"70"
)
useOnePt
(
"/CMS_2011_I889807/d02-x01-y01"
,
"7000"
,
"100"
)
useOnePt
(
"/CMS_2011_I889807/d03-x01-y01"
,
"7000"
,
"130"
)
useOnePt
(
"/CMS_2011_I889807/d04-x01-y01"
,
"7000"
,
"70"
)
useOnePt
(
"/CMS_2011_I889807/d05-x01-y01"
,
"7000"
,
"100"
)
useOnePt
(
"/CMS_2011_I889807/d06-x01-y01"
,
"7000"
,
"130"
)
logging
.
info
(
"Processing ATLAS_2012_I1082009"
)
useOnePt
(
"/ATLAS_2012_I1082009/d08-x01-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2012_I1082009/d09-x01-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2012_I1082009/d10-x01-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2012_I1082009/d11-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2012_I1082009/d12-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2012_I1082009/d13-x01-y01"
,
"7000"
,
"40"
)
logging
.
info
(
"Processing ATLAS_2012_I1118269"
)
mergeByPt
(
"/ATLAS_2012_I1118269/d01-x01-y01"
,
"7000"
)
useOnePt
(
"/ATLAS_2012_I1118269/d02-x01-y01"
,
"7000"
,
"10"
)
logging
.
info
(
"Processing ATLAS_2012_I1188891"
)
mergeByPt
(
"/ATLAS_2012_I1188891/d01-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1188891/d02-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1188891/d03-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1188891/d04-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1188891/d05-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1188891/d06-x01-y01"
,
"7000"
)
logging
.
info
(
"Processing CMS_2012_I1087342"
)
mergeByPt
(
"/CMS_2012_I1087342/d01-x01-y01"
,
"7000"
)
mergeByPt
(
"/CMS_2012_I1087342/d02-x01-y01"
,
"7000"
)
mergeByPt
(
"/CMS_2012_I1087342/d03-x01-y01"
,
"7000"
)
logging
.
info
(
"Processing CMS_2012_PAS_QCD_11_010"
)
mergeByPt
(
"/CMS_2012_PAS_QCD_11_010/d01-x01-y01"
,
"7000"
)
mergeByPt
(
"/CMS_2012_PAS_QCD_11_010/d02-x01-y01"
,
"7000"
)
mergeByPt
(
"/CMS_2012_PAS_QCD_11_010/d03-x01-y01"
,
"7000"
)
mergeByPt
(
"/CMS_2012_PAS_QCD_11_010/d04-x01-y01"
,
"7000"
)
logging
.
info
(
"Processing ATLAS_2011_I896268"
)
mergeByPt
(
"/ATLAS_2011_I896268/d11-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I896268/d12-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I896268/d13-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I896268/d14-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I896268/d15-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I896268/d16-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I896268/d17-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I896268/d18-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I896268/d20-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I896268/d21-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I896268/d22-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2011_I896268/d23-x01-y01"
,
"7000"
)
logging
.
info
(
"Processing ATLAS_2012_I1125575"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d01-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d01-x01-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d01-x02-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d01-x02-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d01-x03-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d01-x03-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d01-x04-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d01-x04-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d01-x05-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d01-x05-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d02-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d02-x01-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d02-x02-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d02-x02-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d02-x03-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d02-x03-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d02-x04-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d02-x04-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d02-x05-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d02-x05-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d03-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d03-x01-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d03-x02-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d03-x02-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d03-x03-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d03-x03-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d03-x04-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d03-x04-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d03-x05-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2012_I1125575/d03-x05-y02"
,
"7000"
)
for
d
in
range
(
4
,
7
)
:
for
x
in
range
(
1
,
6
)
:
if
(
opts
.
ue
)
:
for
y
in
range
(
1
,
9
)
:
useOnePt
(
"/ATLAS_2012_I1125575/d0
%s
-x0
%s
-y0
%s
"
%
(
d
,
x
,
y
),
"7000"
,
"0"
)
for
y
in
[
"09"
,
"10"
,
"11"
,
"12"
,
"13"
,
"14"
,
"15"
,
"16"
]
:
useOnePt
(
"/ATLAS_2012_I1125575/d0
%s
-x0
%s
-y
%s
"
%
(
d
,
x
,
y
),
"7000"
,
"0"
)
for
y
in
range
(
17
,
19
)
:
useOnePt
(
"/ATLAS_2012_I1125575/d0
%s
-x0
%s
-y
%s
"
%
(
d
,
x
,
y
),
"7000"
,
"20"
)
else
:
for
y
in
range
(
17
,
19
)
:
useOnePt
(
"/ATLAS_2012_I1125575/d0
%s
-x0
%s
-y
%s
"
%
(
d
,
x
,
y
),
"7000"
,
"10"
)
for
y
in
range
(
19
,
21
)
:
useOnePt
(
"/ATLAS_2012_I1125575/d0
%s
-x0
%s
-y
%s
"
%
(
d
,
x
,
y
),
"7000"
,
"40"
)
# ATLAS_2012_I1094564
useOnePt
(
"/ATLAS_2012_I1094564/d01-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2012_I1094564/d02-x01-y01"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2012_I1094564/d03-x01-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2012_I1094564/d04-x01-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2012_I1094564/d05-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2012_I1094564/d06-x01-y01"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2012_I1094564/d07-x01-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2012_I1094564/d08-x01-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2012_I1094564/d09-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2012_I1094564/d10-x01-y01"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2012_I1094564/d11-x01-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2012_I1094564/d12-x01-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2012_I1094564/d13-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2012_I1094564/d14-x01-y01"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2012_I1094564/d15-x01-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2012_I1094564/d16-x01-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2012_I1094564/d17-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2012_I1094564/d18-x01-y01"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2012_I1094564/d19-x01-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2012_I1094564/d20-x01-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2012_I1094564/d21-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2012_I1094564/d22-x01-y01"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2012_I1094564/d23-x01-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2012_I1094564/d24-x01-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2012_I1094564/d25-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2012_I1094564/d26-x01-y01"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2012_I1094564/d27-x01-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2012_I1094564/d28-x01-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2012_I1094564/d29-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2012_I1094564/d30-x01-y01"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2012_I1094564/d31-x01-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2012_I1094564/d32-x01-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2012_I1094564/d33-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2012_I1094564/d34-x01-y01"
,
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2012_I1094564/d35-x01-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/ATLAS_2012_I1094564/d36-x01-y01"
,
"7000"
,
"400"
)
logging
.
info
(
"Processing CMS_2013_I1224539_DIJET"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d01-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d02-x01-y01"
,
"7000"
,
"260"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d03-x01-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d04-x01-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d05-x01-y01"
,
"7000"
,
"600"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d06-x01-y01"
,
"7000"
,
"600"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d07-x01-y01"
,
"7000"
,
"600"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d08-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d09-x01-y01"
,
"7000"
,
"260"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d10-x01-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d11-x01-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d12-x01-y01"
,
"7000"
,
"600"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d13-x01-y01"
,
"7000"
,
"600"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d14-x01-y01"
,
"7000"
,
"600"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d15-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d16-x01-y01"
,
"7000"
,
"260"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d17-x01-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d18-x01-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d19-x01-y01"
,
"7000"
,
"600"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d20-x01-y01"
,
"7000"
,
"600"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d21-x01-y01"
,
"7000"
,
"600"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d22-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d23-x01-y01"
,
"7000"
,
"260"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d24-x01-y01"
,
"7000"
,
"400"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d25-x01-y01"
,
"7000"
,
"600"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d26-x01-y01"
,
"7000"
,
"600"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d27-x01-y01"
,
"7000"
,
"600"
)
useOnePt
(
"/CMS_2013_I1224539_DIJET/d28-x01-y01"
,
"7000"
,
"600"
)
useOnePt
(
"/CMS_2013_I1273574/d01-x01-y01"
,
"7000"
,
"80"
)
mergeByPt
(
"/CMS_2013_I1273574/d02-x01-y01"
,
"7000"
,
1.
)
useOnePt
(
"/CMS_2013_I1273574/d03-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/CMS_2013_I1273574/d04-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/CMS_2013_I1273574/d05-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/CMS_2013_I1273574/d06-x01-y01"
,
"7000"
,
"80"
)
mergeByPt
(
"/CMS_2013_I1273574/d07-x01-y01"
,
"7000"
,
1.
)
useOnePt
(
"/CMS_2013_I1273574/d08-x01-y01"
,
"7000"
,
"80"
)
mergeByPt
(
"/CMS_2013_I1273574/d09-x01-y01"
,
"7000"
,
1.
)
useOnePt
(
"/CMS_2013_I1273574/d10-x01-y01"
,
"7000"
,
"80"
)
mergeByPt
(
"/CMS_2013_I1273574/d11-x01-y01"
,
"7000"
,
1.
)
useOnePt
(
"/CMS_2013_I1261026/d01-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/CMS_2013_I1261026/d02-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/CMS_2013_I1261026/d03-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/CMS_2013_I1261026/d04-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/CMS_2013_I1261026/d05-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/CMS_2013_I1261026/d06-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/CMS_2013_I1261026/d07-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/CMS_2013_I1261026/d08-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/CMS_2013_I1261026/d09-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/CMS_2013_I1261026/d10-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/CMS_2013_I1261026/d11-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/CMS_2013_I1261026/d12-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/CMS_2013_I1261026/d13-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/CMS_2013_I1261026/d14-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/CMS_2013_I1261026/d15-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/CMS_2013_I1261026/d16-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/CMS_2013_I1261026/d17-x01-y01"
,
"7000"
,
"0"
)
logging
.
info
(
"Processing CMS_2012_I1090423"
)
useOneMass
(
"/CMS_2012_I1090423/d01-x01-y01"
,
"7000"
,
"2900"
)
useOneMass
(
"/CMS_2012_I1090423/d02-x01-y01"
,
"7000"
,
"2300"
)
useOneMass
(
"/CMS_2012_I1090423/d03-x01-y01"
,
"7000"
,
"1700"
)
useOneMass
(
"/CMS_2012_I1090423/d04-x01-y01"
,
"7000"
,
"1100"
)
useOneMass
(
"/CMS_2012_I1090423/d05-x01-y01"
,
"7000"
,
"1100"
)
useOneMass
(
"/CMS_2012_I1090423/d06-x01-y01"
,
"7000"
,
"650"
)
useOneMass
(
"/CMS_2012_I1090423/d07-x01-y01"
,
"7000"
,
"650"
)
useOneMass
(
"/CMS_2012_I1090423/d08-x01-y01"
,
"7000"
,
"250"
)
useOneMass
(
"/CMS_2012_I1090423/d09-x01-y01"
,
"7000"
,
"250"
)
logging
.
info
(
"Processing ATLAS_2014_I1298811"
)
mergeByPt
(
"/ATLAS_2014_I1298811/d01-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1298811/d01-x01-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1298811/d02-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1298811/d02-x01-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1298811/d03-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1298811/d03-x01-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1298811/d04-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1298811/d04-x01-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1298811/d05-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1298811/d05-x01-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1298811/d06-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1298811/d06-x01-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1298811/d07-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1298811/d07-x01-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1298811/d08-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1298811/d08-x01-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1298811/d09-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1298811/d09-x01-y02"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1298811/d10-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1298811/d10-x01-y02"
,
"7000"
)
useOnePt
(
"/ATLAS_2014_I1298811/d11-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2014_I1298811/d12-x01-y01"
,
"7000"
,
"0"
)
useOnePt
(
"/ATLAS_2014_I1298811/d13-x01-y01"
,
"7000"
,
"4"
)
useOnePt
(
"/ATLAS_2014_I1298811/d13-x01-y02"
,
"7000"
,
"4"
)
useOnePt
(
"/ATLAS_2014_I1298811/d14-x01-y01"
,
"7000"
,
"4"
)
useOnePt
(
"/ATLAS_2014_I1298811/d14-x01-y02"
,
"7000"
,
"4"
)
useOnePt
(
"/ATLAS_2014_I1298811/d15-x01-y01"
,
"7000"
,
"4"
)
useOnePt
(
"/ATLAS_2014_I1298811/d15-x01-y02"
,
"7000"
,
"4"
)
useOnePt
(
"/ATLAS_2014_I1298811/d25-x01-y01"
,
"7000"
,
"4"
)
useOnePt
(
"/ATLAS_2014_I1298811/d25-x01-y02"
,
"7000"
,
"4"
)
useOnePt
(
"/ATLAS_2014_I1298811/d26-x01-y01"
,
"7000"
,
"4"
)
useOnePt
(
"/ATLAS_2014_I1298811/d26-x01-y02"
,
"7000"
,
"4"
)
useOnePt
(
"/ATLAS_2014_I1298811/d27-x01-y01"
,
"7000"
,
"4"
)
useOnePt
(
"/ATLAS_2014_I1298811/d27-x01-y02"
,
"7000"
,
"4"
)
useOnePt
(
"/ATLAS_2014_I1298811/d16-x01-y01"
,
"7000"
,
"4"
)
useOnePt
(
"/ATLAS_2014_I1298811/d16-x01-y02"
,
"7000"
,
"4"
)
useOnePt
(
"/ATLAS_2014_I1298811/d17-x01-y01"
,
"7000"
,
"4"
)
useOnePt
(
"/ATLAS_2014_I1298811/d17-x01-y02"
,
"7000"
,
"4"
)
useOnePt
(
"/ATLAS_2014_I1298811/d18-x01-y01"
,
"7000"
,
"4"
)
useOnePt
(
"/ATLAS_2014_I1298811/d18-x01-y02"
,
"7000"
,
"4"
)
useOnePt
(
"/ATLAS_2014_I1298811/d28-x01-y01"
,
"7000"
,
"4"
)
useOnePt
(
"/ATLAS_2014_I1298811/d28-x01-y02"
,
"7000"
,
"4"
)
useOnePt
(
"/ATLAS_2014_I1298811/d29-x01-y01"
,
"7000"
,
"4"
)
useOnePt
(
"/ATLAS_2014_I1298811/d29-x01-y02"
,
"7000"
,
"4"
)
useOnePt
(
"/ATLAS_2014_I1298811/d30-x01-y01"
,
"7000"
,
"4"
)
useOnePt
(
"/ATLAS_2014_I1298811/d30-x01-y02"
,
"7000"
,
"4"
)
useOnePt
(
"/ATLAS_2014_I1298811/d19-x01-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2014_I1298811/d19-x01-y02"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2014_I1298811/d20-x01-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2014_I1298811/d20-x01-y02"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2014_I1298811/d21-x01-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2014_I1298811/d21-x01-y02"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2014_I1298811/d31-x01-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2014_I1298811/d31-x01-y02"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2014_I1298811/d32-x01-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2014_I1298811/d32-x01-y02"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2014_I1298811/d33-x01-y01"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2014_I1298811/d33-x01-y02"
,
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2014_I1298811/d22-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2014_I1298811/d22-x01-y02"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2014_I1298811/d23-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2014_I1298811/d23-x01-y02"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2014_I1298811/d24-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2014_I1298811/d24-x01-y02"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2014_I1298811/d34-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2014_I1298811/d34-x01-y02"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2014_I1298811/d35-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2014_I1298811/d35-x01-y02"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2014_I1298811/d36-x01-y01"
,
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2014_I1298811/d36-x01-y02"
,
"7000"
,
"210"
)
logging
.
info
(
"Processing ATLAS_2014_I1268975"
)
mergeByMass
(
"/ATLAS_2014_I1268975/d01-x01-y01"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2014_I1268975/d01-x01-y02"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2014_I1268975/d01-x01-y03"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2014_I1268975/d01-x01-y04"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2014_I1268975/d01-x01-y05"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2014_I1268975/d01-x01-y06"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2014_I1268975/d02-x01-y01"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2014_I1268975/d02-x01-y02"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2014_I1268975/d02-x01-y03"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2014_I1268975/d02-x01-y04"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2014_I1268975/d02-x01-y05"
,
"7000"
,
1000.
)
mergeByMass
(
"/ATLAS_2014_I1268975/d02-x01-y06"
,
"7000"
,
1000.
)
logging
.
info
(
"Processing ATLAS_2014_I1307243"
)
useOnePt
(
"/ATLAS_2014_I1307243/d01-x01-y01"
,
"7000"
,
"80"
)
mergeByPt
(
"/ATLAS_2014_I1307243/d02-x01-y01"
,
"7000"
)
useOnePt
(
"/ATLAS_2014_I1307243/d03-x01-y01"
,
"7000"
,
"80"
)
mergeByPt
(
"/ATLAS_2014_I1307243/d04-x01-y01"
,
"7000"
)
useOnePt
(
"/ATLAS_2014_I1307243/d05-x01-y01"
,
"7000"
,
"80"
)
mergeByPt
(
"/ATLAS_2014_I1307243/d06-x01-y01"
,
"7000"
)
useOnePt
(
"/ATLAS_2014_I1307243/d07-x01-y01"
,
"7000"
,
"80"
)
mergeByPt
(
"/ATLAS_2014_I1307243/d08-x01-y01"
,
"7000"
)
useOnePt
(
"/ATLAS_2014_I1307243/d09-x01-y01"
,
"7000"
,
"80"
)
mergeByPt
(
"/ATLAS_2014_I1307243/d10-x01-y01"
,
"7000"
)
useOnePt
(
"/ATLAS_2014_I1307243/d11-x01-y01"
,
"7000"
,
"80"
)
mergeByPt
(
"/ATLAS_2014_I1307243/d12-x01-y01"
,
"7000"
)
useOnePt
(
"/ATLAS_2014_I1307243/d13-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2014_I1307243/d14-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2014_I1307243/d15-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2014_I1307243/d16-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2014_I1307243/d17-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2014_I1307243/d18-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2014_I1307243/d19-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2014_I1307243/d20-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2014_I1307243/d21-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2014_I1307243/d22-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2014_I1307243/d23-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2014_I1307243/d24-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2014_I1307243/d25-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2014_I1307243/d26-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2014_I1307243/d27-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2014_I1307243/d28-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2014_I1307243/d29-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2014_I1307243/d30-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2014_I1307243/d31-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2014_I1307243/d32-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2014_I1307243/d33-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2014_I1307243/d34-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2014_I1307243/d35-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2014_I1307243/d36-x01-y01"
,
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2014_I1307243/d37-x01-y01"
,
"7000"
,
"80"
)
mergeByPt
(
"/ATLAS_2014_I1307243/d38-x01-y01"
,
"7000"
)
useOnePt
(
"/ATLAS_2014_I1307243/d39-x01-y01"
,
"7000"
,
"80"
)
mergeByPt
(
"/ATLAS_2014_I1307243/d40-x01-y01"
,
"7000"
)
logging
.
info
(
"Processing ATLAS_2014_I1325553"
)
mergeByPt
(
"/ATLAS_2014_I1325553/d01-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1325553/d02-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1325553/d03-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1325553/d04-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1325553/d05-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1325553/d06-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1325553/d07-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1325553/d08-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1325553/d09-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1325553/d10-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1325553/d11-x01-y01"
,
"7000"
)
mergeByPt
(
"/ATLAS_2014_I1325553/d12-x01-y01"
,
"7000"
)
logging
.
info
(
"Processing ATLAS_2016_I1419070"
)
for
i
in
range
(
1
,
13
)
:
if
(
i
<
10
)
:
mergeByPt
(
"/ATLAS_2016_I1419070/d0
%s
-x01-y01"
%
i
,
"8000"
)
else
:
mergeByPt
(
"/ATLAS_2016_I1419070/d
%s
-x01-y01"
%
i
,
"8000"
)
# remake differences and sums
for
ihist
in
range
(
1
,
4
)
:
if
not
(
"/ATLAS_2016_I1419070/d0
%s
-x01-y01"
%
ihist
)
in
outhistos
:
continue
h1
=
outhistos
[
"/ATLAS_2016_I1419070/d0
%s
-x01-y01"
%
ihist
]
h2
=
outhistos
[
"/ATLAS_2016_I1419070/d0
%s
-x01-y01"
%
(
ihist
+
3
)]
sstring
=
"/ATLAS_2016_I1419070/d
%s
-x01-y01"
%
(
9
+
ihist
)
dstring
=
"/ATLAS_2016_I1419070/d0
%s
-x01-y01"
%
(
6
+
ihist
)
hdiff
=
yoda
.
Scatter2D
(
dstring
,
dstring
)
hsum
=
yoda
.
Scatter2D
(
sstring
,
sstring
)
outhistos
[
dstring
]
=
hdiff
outhistos
[
sstring
]
=
hsum
for
nbin
in
range
(
0
,
h2
.
numBins
())
:
bsum
=
h1
.
bins
()[
nbin
]
+
h2
.
bins
()[
nbin
]
try
:
ydiff
=
h2
.
bins
()[
nbin
]
.
mean
()
-
h1
.
bins
()[
nbin
]
.
mean
()
except
:
ydiff
=
0
try
:
ysum
=
bsum
.
mean
()
bstderr
=
bsum
.
stdErr
()
except
:
ysum
=
0
bstderr
=
0
try
:
yerr
=
math
.
sqrt
(
h1
.
bins
()[
nbin
]
.
stdErr
()
**
2
+
h2
.
bins
()[
nbin
]
.
stdErr
()
**
2
)
except
:
yerr
=
0
x
=
h1
.
bins
()[
nbin
]
.
xMid
()
xerr
=
0.5
*
h1
.
bins
()[
nbin
]
.
xWidth
()
hdiff
.
addPoint
(
x
,
ydiff
,
xerr
,
yerr
)
hsum
.
addPoint
(
x
,
ysum
,
xerr
,
bstderr
)
logging
.
info
(
"Processing ATLAS_2015_I1394679"
)
for
i
in
range
(
1
,
5
)
:
mergeByPt
(
"/ATLAS_2015_I1394679/d0
%s
-x01-y01"
%
i
,
"8000"
)
for
i
in
range
(
5
,
11
)
:
if
(
i
<
10
)
:
useOnePt
(
"/ATLAS_2015_I1394679/d0
%s
-x01-y01"
%
i
,
"8000"
,
"110"
)
else
:
useOnePt
(
"/ATLAS_2015_I1394679/d
%s
-x01-y01"
%
i
,
"8000"
,
"110"
)
for
i
in
range
(
0
,
4
)
:
useOnePt
(
"/ATLAS_2015_I1394679/d
%s
-x01-y01"
%
(
11
+
4
*
i
),
"8000"
,
"110"
)
useOnePt
(
"/ATLAS_2015_I1394679/d
%s
-x01-y01"
%
(
12
+
4
*
i
),
"8000"
,
"260"
)
useOnePt
(
"/ATLAS_2015_I1394679/d
%s
-x01-y01"
%
(
13
+
4
*
i
),
"8000"
,
"600"
)
useOnePt
(
"/ATLAS_2015_I1394679/d
%s
-x01-y01"
%
(
14
+
4
*
i
),
"8000"
,
"900"
)
for
i
in
range
(
0
,
5
)
:
useOnePt
(
"/ATLAS_2015_I1394679/d
%s
-x01-y01"
%
(
27
+
4
*
i
),
"8000"
,
"110"
)
useOnePt
(
"/ATLAS_2015_I1394679/d
%s
-x01-y01"
%
(
28
+
4
*
i
),
"8000"
,
"260"
)
useOnePt
(
"/ATLAS_2015_I1394679/d
%s
-x01-y01"
%
(
29
+
4
*
i
),
"8000"
,
"400"
)
useOnePt
(
"/ATLAS_2015_I1394679/d
%s
-x01-y01"
%
(
30
+
4
*
i
),
"8000"
,
"400"
)
logging
.
info
(
"Processing CMS_2013_I1208923"
)
for
i
in
range
(
1
,
6
)
:
mergeByPt
(
"/CMS_2013_I1208923/d01-x01-y0
%s
"
%
i
,
"7000"
)
mergeByMass
(
"/CMS_2013_I1208923/d02-x01-y0
%s
"
%
i
,
"7000"
,
1.
)
logging
.
info
(
"Processing CMS_2014_I1298810"
)
for
i
in
range
(
1
,
19
)
:
if
(
i
<
10
)
:
mergeByPt
(
"/CMS_2014_I1298810/d0"
+
str
(
i
)
+
"-x01-y01"
,
"7000"
)
else
:
mergeByPt
(
"/CMS_2014_I1298810/d"
+
str
(
i
)
+
"-x01-y01"
,
"7000"
)
logging
.
info
(
"Processing CMS_2014_I1305624"
)
for
x
in
range
(
1
,
6
)
:
useOnePt
(
"/CMS_2014_I1305624/d01-x
%02d
-y01"
%
x
,
"7000"
,
"110"
)
useOnePt
(
"/CMS_2014_I1305624/d01-x
%02d
-y02"
%
x
,
"7000"
,
"110"
)
useOnePt
(
"/CMS_2014_I1305624/d01-x
%02d
-y03"
%
x
,
"7000"
,
"260"
)
useOnePt
(
"/CMS_2014_I1305624/d01-x
%02d
-y04"
%
x
,
"7000"
,
"260"
)
useOnePt
(
"/CMS_2014_I1305624/d01-x
%02d
-y05"
%
x
,
"7000"
,
"400"
)
logging
.
info
(
"Processing ATLAS_2011_I929691"
)
for
x
in
range
(
0
,
3
)
:
useOnePt
(
"/ATLAS_2011_I929691/d
%02d
-x01-y01"
%
(
10
*
x
+
1
),
"7000"
,
"20"
)
useOnePt
(
"/ATLAS_2011_I929691/d
%02d
-x01-y01"
%
(
10
*
x
+
2
),
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I929691/d
%02d
-x01-y01"
%
(
10
*
x
+
3
),
"7000"
,
"40"
)
useOnePt
(
"/ATLAS_2011_I929691/d
%02d
-x01-y01"
%
(
10
*
x
+
4
),
"7000"
,
"80"
)
useOnePt
(
"/ATLAS_2011_I929691/d
%02d
-x01-y01"
%
(
10
*
x
+
5
),
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I929691/d
%02d
-x01-y01"
%
(
10
*
x
+
6
),
"7000"
,
"110"
)
useOnePt
(
"/ATLAS_2011_I929691/d
%02d
-x01-y01"
%
(
10
*
x
+
7
),
"7000"
,
"210"
)
useOnePt
(
"/ATLAS_2011_I929691/d
%02d
-x01-y01"
%
(
10
*
x
+
8
),
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I929691/d
%02d
-x01-y01"
%
(
10
*
x
+
9
),
"7000"
,
"260"
)
useOnePt
(
"/ATLAS_2011_I929691/d
%02d
-x01-y01"
%
(
10
*
x
+
10
),
"7000"
,
"400"
)
logging
.
info
(
"Processing ATLAS_2015_I1393758"
)
for
i
in
range
(
1
,
13
)
:
mergeByPt
(
"/ATLAS_2015_I1393758/d
%02d
-x01-y01"
%
i
,
"8000"
)
logging
.
info
(
"Processing CMS_2016_I1459051"
)
for
i
in
range
(
1
,
15
)
:
mergeByPt
(
"/CMS_2016_I1459051/d
%02d
-x01-y01"
%
i
,
"13000"
)
logging
.
info
(
"Processing ATLAS_2016_CONF_2016_092"
)
for
i
in
range
(
1
,
7
)
:
mergeByPt
(
"/ATLAS_2016_CONF_2016_092/d
%02d
-x01-y01"
%
i
,
"13000"
)
logging
.
info
(
"Processing ATLAS_2017_I1609253"
)
useOnePt
(
"/ATLAS_2017_I1609253/d01-x01-y01"
,
"8000"
,
"260"
)
useOnePt
(
"/ATLAS_2017_I1609253/d02-x01-y01"
,
"8000"
,
"260"
)
useOnePt
(
"/ATLAS_2017_I1609253/d03-x01-y01"
,
"8000"
,
"260"
)
useOnePt
(
"/ATLAS_2017_I1609253/d04-x01-y01"
,
"8000"
,
"260"
)
useOnePt
(
"/ATLAS_2017_I1609253/d05-x01-y01"
,
"8000"
,
"400"
)
useOnePt
(
"/ATLAS_2017_I1609253/d06-x01-y01"
,
"8000"
,
"400"
)
useOnePt
(
"/ATLAS_2017_I1609253/d07-x01-y01"
,
"8000"
,
"400"
)
useOnePt
(
"/ATLAS_2017_I1609253/d08-x01-y01"
,
"8000"
,
"400"
)
useOnePt
(
"/ATLAS_2017_I1609253/d09-x01-y01"
,
"8000"
,
"400"
)
useOnePt
(
"/ATLAS_2017_I1609253/d10-x01-y01"
,
"8000"
,
"400"
)
useOnePt
(
"/ATLAS_2017_I1609253/d11-x01-y01"
,
"8000"
,
"600"
)
useOnePt
(
"/ATLAS_2017_I1609253/d12-x01-y01"
,
"8000"
,
"600"
)
logging
.
info
(
"Processing CMS_2016_I1487277"
)
mergeByPt
(
"/CMS_2016_I1487277/d01-x01-y01"
,
"8000"
)
mergeByPt
(
"/CMS_2016_I1487277/d02-x01-y01"
,
"8000"
)
mergeByPt
(
"/CMS_2016_I1487277/d03-x01-y01"
,
"8000"
)
mergeByPt
(
"/CMS_2016_I1487277/d04-x01-y01"
,
"8000"
)
mergeByPt
(
"/CMS_2016_I1487277/d05-x01-y01"
,
"8000"
)
mergeByPt
(
"/CMS_2016_I1487277/d06-x01-y01"
,
"8000"
)
mergeByPt
(
"/CMS_2016_I1487277/d07-x01-y01"
,
"8000"
)
logging
.
info
(
"Processing CMS_2016_I1421646"
)
useOnePt
(
"/CMS_2016_I1421646/d01-x01-y01"
,
"8000"
,
"210"
)
useOnePt
(
"/CMS_2016_I1421646/d02-x01-y01"
,
"8000"
,
"260"
)
useOnePt
(
"/CMS_2016_I1421646/d03-x01-y01"
,
"8000"
,
"400"
)
useOnePt
(
"/CMS_2016_I1421646/d04-x01-y01"
,
"8000"
,
"400"
)
useOnePt
(
"/CMS_2016_I1421646/d05-x01-y01"
,
"8000"
,
"600"
)
useOnePt
(
"/CMS_2016_I1421646/d06-x01-y01"
,
"8000"
,
"900"
)
useOnePt
(
"/CMS_2016_I1421646/d07-x01-y01"
,
"8000"
,
"900"
)
logging
.
info
(
"Processing CMS_2017_I1605749"
)
for
i
in
[
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
,
13
,
16
]
:
useOnePt
(
"/CMS_2017_I1605749/d
%02d
-x01-y01"
%
i
,
"8000"
,
"400"
)
for
i
in
[
11
,
14
,
17
]:
useOnePt
(
"/CMS_2017_I1605749/d
%02d
-x01-y01"
%
i
,
"8000"
,
"600"
)
for
i
in
[
12
,
15
,
18
]:
useOnePt
(
"/CMS_2017_I1605749/d
%02d
-x01-y01"
%
i
,
"8000"
,
"900"
)
def
CMS_2012_I1111014_name
(
i
,
j
)
:
if
(
i
+
j
<
100
)
:
return
"/CMS_2012_I1111014/d
%02d
-x01-y01"
%
(
i
+
j
)
else
:
return
"/CMS_2012_I1111014/d
%03d
-x01-y01"
%
(
i
+
j
)
logging
.
info
(
"Processing CMS_2012_I1111014"
)
for
j
in
[
0
,
22
,
44
,
66
,
87
,
106
]:
for
i
in
[
1
,
2
,
3
]
:
useOnePt
(
CMS_2012_I1111014_name
(
i
,
j
),
"7000"
,
"20"
)
for
i
in
[
4
,
5
,
6
,
7
]:
useOnePt
(
CMS_2012_I1111014_name
(
i
,
j
),
"7000"
,
"40"
)
for
i
in
[
8
,
9
,
10
]:
useOnePt
(
CMS_2012_I1111014_name
(
i
,
j
),
"7000"
,
"80"
)
for
i
in
[
11
,
12
,
13
,
14
,
15
,
16
]:
useOnePt
(
CMS_2012_I1111014_name
(
i
,
j
),
"7000"
,
"110"
)
for
i
in
[
17
,
18
]:
useOnePt
(
CMS_2012_I1111014_name
(
i
,
j
),
"7000"
,
"210"
)
useOnePt
(
CMS_2012_I1111014_name
(
19
,
j
),
"7000"
,
"260"
)
if
(
j
<
87
)
:
for
i
in
[
20
,
21
]:
useOnePt
(
CMS_2012_I1111014_name
(
i
,
j
),
"7000"
,
"400"
)
if
(
j
<
66
)
:
useOnePt
(
CMS_2012_I1111014_name
(
22
,
j
),
"7000"
,
"600"
)
for
i
in
[
126
,
127
,
128
]
:
for
j
in
[
1
,
2
]
:
mergeByPt
(
"/CMS_2012_I1111014/d
%03d
-x01-y
%02d
"
%
(
i
,
j
),
"7000"
)
logging
.
info
(
"Processing CMS_2018_I1682495"
)
for
i
in
[
0
,
1
,
2
,
3
]
:
useOnePt
(
"/CMS_2018_I1682495/d
%02d
-x01-y01"
%
(
12
*
i
+
1
),
"13000"
,
"110"
)
useOnePt
(
"/CMS_2018_I1682495/d
%02d
-x01-y01"
%
(
12
*
i
+
2
),
"13000"
,
"260"
)
useOnePt
(
"/CMS_2018_I1682495/d
%02d
-x01-y01"
%
(
12
*
i
+
3
),
"13000"
,
"260"
)
useOnePt
(
"/CMS_2018_I1682495/d
%02d
-x01-y01"
%
(
12
*
i
+
4
),
"13000"
,
"400"
)
useOnePt
(
"/CMS_2018_I1682495/d
%02d
-x01-y01"
%
(
12
*
i
+
5
),
"13000"
,
"400"
)
useOnePt
(
"/CMS_2018_I1682495/d
%02d
-x01-y01"
%
(
12
*
i
+
6
),
"13000"
,
"600"
)
useOnePt
(
"/CMS_2018_I1682495/d
%02d
-x01-y01"
%
(
12
*
i
+
7
),
"13000"
,
"600"
)
useOnePt
(
"/CMS_2018_I1682495/d
%02d
-x01-y01"
%
(
12
*
i
+
8
),
"13000"
,
"900"
)
useOnePt
(
"/CMS_2018_I1682495/d
%02d
-x01-y01"
%
(
12
*
i
+
9
),
"13000"
,
"900"
)
useOnePt
(
"/CMS_2018_I1682495/d
%02d
-x01-y01"
%
(
12
*
i
+
10
),
"13000"
,
"900"
)
useOnePt
(
"/CMS_2018_I1682495/d
%02d
-x01-y01"
%
(
12
*
i
+
11
),
"13000"
,
"900"
)
useOnePt
(
"/CMS_2018_I1682495/d
%02d
-x01-y01"
%
(
12
*
i
+
12
),
"13000"
,
"900"
)
logging
.
info
(
"Processing CMS_2015_I1385107"
)
for
i
in
range
(
1
,
9
)
:
mergeByPt
(
"/CMS_2015_I1385107/d
%02d
-x01-y01"
%
i
,
"2760"
)
logging
.
info
(
"Processing CMS_2018_I1663452"
)
useOneMass
(
"/CMS_2018_I1663452/d01-x01-y01"
,
"13000"
,
"5900"
)
useOneMass
(
"/CMS_2018_I1663452/d02-x01-y01"
,
"13000"
,
"4900"
)
useOneMass
(
"/CMS_2018_I1663452/d03-x01-y01"
,
"13000"
,
"3900"
)
useOneMass
(
"/CMS_2018_I1663452/d04-x01-y01"
,
"13000"
,
"3900"
)
useOneMass
(
"/CMS_2018_I1663452/d05-x01-y01"
,
"13000"
,
"2800"
)
useOneMass
(
"/CMS_2018_I1663452/d06-x01-y01"
,
"13000"
,
"2800"
)
useOneMass
(
"/CMS_2018_I1663452/d07-x01-y01"
,
"13000"
,
"2200"
)
logging
.
info
(
"Processing CMS_2017_I1519995"
)
useOneMass
(
"/CMS_2017_I1519995/d01-x01-y01"
,
"13000"
,
"3900"
)
useOneMass
(
"/CMS_2017_I1519995/d02-x01-y01"
,
"13000"
,
"3900"
)
useOneMass
(
"/CMS_2017_I1519995/d03-x01-y01"
,
"13000"
,
"2800"
)
useOneMass
(
"/CMS_2017_I1519995/d04-x01-y01"
,
"13000"
,
"2800"
)
useOneMass
(
"/CMS_2017_I1519995/d05-x01-y01"
,
"13000"
,
"2200"
)
useOneMass
(
"/CMS_2017_I1519995/d06-x01-y01"
,
"13000"
,
"1600"
)
logging
.
info
(
"Processing CMS_2016_I1486238"
)
for
i
in
[
1
,
5
,
9
,
10
,
12
,
13
,
14
,
16
,
17
]
:
useOnePt
(
"/CMS_2016_I1486238/d
%02d
-x01-y01"
%
i
,
"7000"
,
"20"
)
mergeByPt
(
"/CMS_2016_I1486238/d11-x01-y01"
,
"7000"
)
mergeByPt
(
"/CMS_2016_I1486238/d15-x01-y01"
,
"7000"
)
logging
.
info
(
"Processing ATLAS_2018_I1634970"
)
for
i
in
range
(
1
,
7
)
:
mergeByPt
(
"/ATLAS_2018_I1634970/d
%02d
-x01-y01"
%
i
,
"13000"
)
for
i
in
range
(
7
,
13
)
:
mergeByMass
(
"/ATLAS_2018_I1634970/d
%02d
-x01-y01"
%
i
,
"13000"
,
1.
)
logging
.
info
(
"Processing ATLAS_2017_I1604271"
)
for
i
in
range
(
1
,
13
)
:
mergeByPt
(
"/ATLAS_2017_I1604271/d
%02d
-x01-y01"
%
i
,
"8000"
)
logging
.
info
(
"Processing CMS_2017_I1598460"
)
for
i
in
range
(
1
,
7
)
:
mergeByPt
(
"/CMS_2017_I1598460/d
%02d
-x01-y01"
%
i
,
"8000"
)
logging
.
info
(
"Processing ATLAS_2019_I1724098"
)
for
i
in
range
(
1
,
45
)
:
if
(
i
<=
6
or
(
i
>=
23
and
i
<=
28
))
:
useOnePt
(
"/ATLAS_2019_I1724098/d
%02d
-x01-y01"
%
i
,
"13000"
,
"400"
)
else
:
useOnePt
(
"/ATLAS_2019_I1724098/d
%02d
-x01-y01"
%
i
,
"13000"
,
"0"
)
logging
.
info
(
"Processing CMS_2018_I1643640"
)
for
i
in
range
(
0
,
5
)
:
if
i
==
0
:
ioff
=
0
else
:
ioff
=
8
*
i
+
1
useOnePt
(
"/CMS_2018_I1643640/d
%02d
-x01-y01"
%
(
ioff
+
1
),
"13000"
,
"110"
)
useOnePt
(
"/CMS_2018_I1643640/d
%02d
-x01-y01"
%
(
ioff
+
2
),
"13000"
,
"260"
)
useOnePt
(
"/CMS_2018_I1643640/d
%02d
-x01-y01"
%
(
ioff
+
3
),
"13000"
,
"400"
)
useOnePt
(
"/CMS_2018_I1643640/d
%02d
-x01-y01"
%
(
ioff
+
4
),
"13000"
,
"400"
)
useOnePt
(
"/CMS_2018_I1643640/d
%02d
-x01-y01"
%
(
ioff
+
5
),
"13000"
,
"600"
)
useOnePt
(
"/CMS_2018_I1643640/d
%02d
-x01-y01"
%
(
ioff
+
6
),
"13000"
,
"600"
)
useOnePt
(
"/CMS_2018_I1643640/d
%02d
-x01-y01"
%
(
ioff
+
7
),
"13000"
,
"600"
)
useOnePt
(
"/CMS_2018_I1643640/d
%02d
-x01-y01"
%
(
ioff
+
8
),
"13000"
,
"900"
)
if
(
i
==
0
)
:
useOnePt
(
"/CMS_2018_I1643640/d
%02d
-x01-y01"
%
(
ioff
+
9
),
"13000"
,
"900"
)
logging
.
info
(
"Processing CMS_2019_I1719955"
)
for
i
in
range
(
0
,
2
)
:
useOnePt
(
"/CMS_2019_I1719955/d
%02d
-x01-y01"
%
(
9
*
i
+
1
),
"13000"
,
"110"
)
useOnePt
(
"/CMS_2019_I1719955/d
%02d
-x01-y01"
%
(
9
*
i
+
2
),
"13000"
,
"260"
)
useOnePt
(
"/CMS_2019_I1719955/d
%02d
-x01-y01"
%
(
9
*
i
+
3
),
"13000"
,
"400"
)
useOnePt
(
"/CMS_2019_I1719955/d
%02d
-x01-y01"
%
(
9
*
i
+
4
),
"13000"
,
"400"
)
useOnePt
(
"/CMS_2019_I1719955/d
%02d
-x01-y01"
%
(
9
*
i
+
5
),
"13000"
,
"600"
)
useOnePt
(
"/CMS_2019_I1719955/d
%02d
-x01-y01"
%
(
9
*
i
+
6
),
"13000"
,
"600"
)
useOnePt
(
"/CMS_2019_I1719955/d
%02d
-x01-y01"
%
(
9
*
i
+
7
),
"13000"
,
"600"
)
useOnePt
(
"/CMS_2019_I1719955/d
%02d
-x01-y01"
%
(
9
*
i
+
8
),
"13000"
,
"900"
)
useOnePt
(
"/CMS_2019_I1719955/d
%02d
-x01-y01"
%
(
9
*
i
+
9
),
"13000"
,
"900"
)
logging
.
info
(
"Processing ATLAS_2020_I1808726"
)
pts
=
[
"400"
,
"600"
,
"900"
]
for
i
in
range
(
0
,
3
)
:
useOnePt
(
"/ATLAS_2020_I1808726/d
%02d
-x01-y01"
%
(
73
+
i
),
"13000"
,
pts
[
i
])
for
j
in
range
(
0
,
6
)
:
for
k
in
range
(
1
,
5
)
:
useOnePt
(
"/ATLAS_2020_I1808726/d
%02d
-x01-y01"
%
(
4
*
i
+
12
*
j
+
k
),
"13000"
,
pts
[
i
])
logging
.
info
(
"Processing CMS_2021_I1972986"
)
for
i
in
range
(
1
,
5
)
:
for
j
in
range
(
0
,
40
,
20
)
:
mergeByPt
(
"/CMS_2021_I1972986/d
%02d
-x01-y01"
%
(
i
+
j
),
"13000"
)
logging
.
info
(
"Processing CMS_2021_I1920187"
)
for
ihist
in
[
2
,
4
,
6
,
8
,
10
,
14
,
16
,
18
]:
useOnePt
(
"/CMS_2021_I1920187/d
%02d
-x01-y01"
%
ihist
,
"13000"
,
"110"
)
useOnePt
(
"/CMS_2021_I1920187/d12-x01-y01"
,
"13000"
,
"900"
)
for
ihist
in
[
155
,
179
,
209
,
234
,
265
,
291
,
322
,
348
,
379
,
405
,
436
,
462
,
492
,
517
,
547
,
572
,
602
,
627
,
657
,
682
,
712
,
737
,
768
,
794
,
825
,
851
,
882
,
908
,
939
,
965
,
996
,
1022
,
1053
,
1079
,
1110
,
1136
,
1167
,
1193
,
1224
,
1250
,
1271
,
1283
,
1314
,
1327
,
1358
,
1371
,
1402
,
1415
,
1446
,
1459
,
1490
,
1503
,
1525
,
1538
,
1560
,
1573
,
1595
,
1608
,
1630
,
1643
,
1674
,
1687
,
1718
,
1731
,
1762
,
1775
,
1806
,
1819
,
1850
,
1863
,
1894
,
1907
,
1938
,
1951
,
1982
,
1995
,
2026
,
2039
,
2070
,
2083
]:
useOnePt
(
"/CMS_2021_I1920187/d
%s
-x01-y01"
%
ihist
,
"13000"
,
"40"
)
# 50-65
useOnePt
(
"/CMS_2021_I1920187/d
%s
-x01-y01"
%
(
ihist
+
1
),
"13000"
,
"40"
)
# 65-88
useOnePt
(
"/CMS_2021_I1920187/d
%s
-x01-y01"
%
(
ihist
+
2
),
"13000"
,
"80"
)
# 88-120
if
ihist
==
155
:
ioff
=
0
elif
ihist
==
209
or
ihist
==
492
or
ihist
==
547
or
ihist
==
602
or
ihist
==
657
or
ihist
==
712
or
ihist
==
1271
:
ioff
=
0
useOnePt
(
"/CMS_2021_I1920187/d
%s
-x01-y01"
%
(
ihist
+
11
),
"13000"
,
"900"
)
# 1000-4000
else
:
ioff
=
1
useOnePt
(
"/CMS_2021_I1920187/d
%s
-x01-y01"
%
(
ihist
+
3
),
"13000"
,
"110"
)
# 120-150
useOnePt
(
"/CMS_2021_I1920187/d
%s
-x01-y01"
%
(
ihist
+
12
),
"13000"
,
"900"
)
# 1000-4000
useOnePt
(
"/CMS_2021_I1920187/d
%s
-x01-y01"
%
(
ihist
+
3
+
ioff
),
"13000"
,
"110"
)
# 150-186
useOnePt
(
"/CMS_2021_I1920187/d
%s
-x01-y01"
%
(
ihist
+
4
+
ioff
),
"13000"
,
"110"
)
# 186-254
useOnePt
(
"/CMS_2021_I1920187/d
%s
-x01-y01"
%
(
ihist
+
5
+
ioff
),
"13000"
,
"210"
)
# 254-326
useOnePt
(
"/CMS_2021_I1920187/d
%s
-x01-y01"
%
(
ihist
+
6
+
ioff
),
"13000"
,
"260"
)
# 326-408
useOnePt
(
"/CMS_2021_I1920187/d
%s
-x01-y01"
%
(
ihist
+
7
+
ioff
),
"13000"
,
"260"
)
# 408-481
useOnePt
(
"/CMS_2021_I1920187/d
%s
-x01-y01"
%
(
ihist
+
8
+
ioff
),
"13000"
,
"260"
)
# 481-614
useOnePt
(
"/CMS_2021_I1920187/d
%s
-x01-y01"
%
(
ihist
+
9
+
ioff
),
"13000"
,
"600"
)
# 614-800
useOnePt
(
"/CMS_2021_I1920187/d
%s
-x01-y01"
%
(
ihist
+
10
+
ioff
),
"13000"
,
"600"
)
# 800-1000
logging
.
info
(
"Processing CMS_2021_I1932460"
)
for
i
in
range
(
1
,
5
):
mergeByPt
(
"/CMS_2021_I1932460/d
%02d
-x01-y01"
%
i
,
"13000"
)
for
i
in
range
(
5
,
15
):
useOnePt
(
"/CMS_2021_I1932460/d
%02d
-x01-y01"
%
i
,
"13000"
,
"40"
)
for
i
in
range
(
45
,
51
):
useOnePt
(
"/CMS_2021_I1932460/d
%02d
-x01-y01"
%
i
,
"13000"
,
"40"
)
logging
.
info
(
"Processing ATLAS_2019_I1740909"
)
for
i
in
[
1
,
2
,
9
]:
mergeByPt
(
"/ATLAS_2019_I1740909/d
%02d
-x01-y01"
%
i
,
"13000"
)
pts
=
[
"80"
,
"110"
,
"260"
,
"400"
,
"400"
,
"600"
,
"600"
,
"600"
,
"900"
,
"900"
,
"900"
,
"900"
,
"900"
,
"1900"
]
for
i
in
[
13
,
27
,
41
,
55
,
69
,
83
,
97
,
111
,
125
,
139
,
153
,
167
]
:
for
j
in
range
(
0
,
14
)
:
ihist
=
i
+
j
if
ihist
<
100
:
useOnePt
(
"/ATLAS_2019_I1740909/d
%02d
-x01-y01"
%
ihist
,
"13000"
,
pts
[
j
])
else
:
useOnePt
(
"/ATLAS_2019_I1740909/d
%03d
-x01-y01"
%
ihist
,
"13000"
,
pts
[
j
])
logging
.
info
(
"Processing ATLAS_2021_I1913061"
)
for
i
in
range
(
1
,
5
)
:
useOnePt
(
"/ATLAS_2021_I1913061/d
%02d
-x01-y01"
%
ihist
,
"13000"
,
"40"
)
for
i
in
range
(
5
,
7
)
:
useOnePt
(
"/ATLAS_2021_I1913061/d
%02d
-x01-y01"
%
ihist
,
"13000"
,
"40"
)
for
i
in
range
(
7
,
9
)
:
mergeByPt
(
"/ATLAS_2021_I1913061/d
%02d
-x01-y01"
%
i
,
"13000"
)
# rescaling for semi-leptonic top decays (we only simulate 1 charge combination)
for
i
in
range
(
96
,
116
,
2
)
:
rescale
(
"/ATLAS_2018_I1656578/d
%s
-x01-y01"
%
i
,
2.
)
for
i
in
range
(
15
,
29
,
2
)
:
rescale
(
"/ATLAS_2017_I1614149/d
%s
-x01-y01"
%
i
,
2.
)
for
i
in
range
(
1
,
23
,
2
)
:
rescale
(
"/ATLAS_2015_I1404878/d
%02d
-x01-y01"
%
i
,
2.
)
rescale
(
"/ATLAS_2015_I1397637/d01-x01-y01"
,
2.
)
for
i
in
range
(
1
,
22
,
1
)
:
rescale
(
"/ATLAS_2015_I1345452/d
%02d
-x01-y01"
%
i
,
2.
)
for
i
in
range
(
1
,
10
,
1
)
:
rescale
(
"/ATLAS_2014_I1304688/d
%02d
-x01-y01"
%
i
,
2.
)
for
i
in
range
(
1
,
82
)
:
rescale
(
"/CMS_2018_I1663958/d
%02d
-x01-y01"
%
i
,
2.
)
for
i
in
range
(
169
,
173
,
1
)
:
rescale
(
"/CMS_2018_I1663958/d
%02d
-x01-y01"
%
i
,
2.
)
for
i
in
range
(
8
,
15
)
:
rescale
(
"/CMS_2018_I1662081/d
%02d
-x01-y01"
%
i
,
2.
)
for
i
in
range
(
1
,
41
)
:
rescale
(
"/CMS_2016_I1491950/d
%02d
-x02-y01"
%
i
,
2.
)
for
i
in
range
(
1
,
13
)
:
rescale
(
"/CMS_2016_I1454211/d
%02d
-x01-y01"
%
i
,
2.
)
rescale
(
"/CMS_2017_I1518399/d01-x01-y01"
,
2.
)
for
i
in
[
4
,
8
,
12
,
16
,
20
,
24
,
28
,
32
,
36
,
40
,
44
,
48
,
52
,
75
,
76
,
77
,
78
,
79
]
:
rescale
(
"/ATLAS_2019_I1750330/d
%02d
-x01-y01"
%
i
,
2.
)
for
i
in
[
115
,
116
,
117
,
118
,
119
,
155
,
156
,
157
,
158
,
159
,
189
,
190
,
191
,
192
,
212
,
213
,
214
,
235
,
236
,
237
,
238
,
263
,
264
,
265
,
266
,
291
,
292
,
293
,
294
,
319
,
320
,
321
,
322
,
347
,
348
,
349
,
350
,
375
,
376
,
377
,
378
,
403
,
404
,
405
,
406
,
426
,
427
,
428
,
449
,
450
,
451
,
452
,
477
,
478
,
479
,
480
,
505
,
506
,
507
,
508
,
843
,
847
,
851
,
855
,
859
,
863
,
867
,
871
,
875
,
879
,
883
,
887
,
899
,
900
,
901
,
913
,
914
,
923
,
924
,
933
,
934
,
943
,
944
,
957
,
958
,
959
,
975
,
976
,
977
,
993
,
994
,
995
,
1007
,
1008
,
1021
,
1022
,
1023
,]
:
rescale
(
"/ATLAS_2019_I1750330/d
%s
-x01-y01"
%
i
,
2.
)
# Choose output file
name
=
args
[
0
]
+
"-Jets.yoda"
yoda
.
writeYODA
(
outhistos
,
name
)
sys
.
exit
(
0
)
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Sat, Dec 21, 3:25 PM (1 d, 7 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
4016198
Default Alt Text
(162 KB)
Attached To
rHERWIGHG herwighg
Event Timeline
Log In to Comment