From 5cae7e62ae463ec56991cf3172e3dabc9e251ff3 Mon Sep 17 00:00:00 2001 From: Matthew Date: Tue, 10 Dec 2019 16:26:54 -0600 Subject: [PATCH] Add methods to work with new input from ttZ and QCD --- .../python/runLimitsLocal_withHuiFile.py | 608 + Datacards/python/writeDatacard_SUSYNano19.py | 48 +- Datacards/setup/SUSYNano19/TTZ_pred.json | 732 +- .../setup/SUSYNano19/combine_bkgPred.json | 10696 ++++++++------- Datacards/setup/SUSYNano19/define_uncs.conf | 2 +- Datacards/setup/SUSYNano19/qcd_BkgPred.json | 6738 +++++----- .../setup/SUSYNano19/values_unc_diboson.conf | 10248 +++++++-------- Datacards/setup/SUSYNano19/values_unc_ll.conf | 10980 ++++++++-------- .../setup/SUSYNano19/values_unc_qcd.conf | 5124 -------- .../setup/SUSYNano19/values_unc_qcd_cr.conf | 6624 ++++++++++ .../setup/SUSYNano19/values_unc_qcd_sb.conf | 3294 +++++ .../setup/SUSYNano19/values_unc_ttZ.conf | 10980 ++++++++-------- .../setup/SUSYNano19/values_unc_zinv.conf | 5856 ++++----- dc_SUSY19Nano_setup_Local.conf | 2 +- 14 files changed, 39415 insertions(+), 32517 deletions(-) create mode 100755 Datacards/python/runLimitsLocal_withHuiFile.py delete mode 100644 Datacards/setup/SUSYNano19/values_unc_qcd.conf create mode 100644 Datacards/setup/SUSYNano19/values_unc_qcd_cr.conf create mode 100644 Datacards/setup/SUSYNano19/values_unc_qcd_sb.conf diff --git a/Datacards/python/runLimitsLocal_withHuiFile.py b/Datacards/python/runLimitsLocal_withHuiFile.py new file mode 100755 index 0000000..3124966 --- /dev/null +++ b/Datacards/python/runLimitsLocal_withHuiFile.py @@ -0,0 +1,608 @@ +#! /usr/bin/python +# +# # Note on running: +# # +# # In order to run this, you need to set up CMSSW_7_1_5 as follows +# # (for more info see: https://twiki.cern.ch/twiki/bin/view/CMS/SWGuideHiggsAnalysisCombinedLimit#How_to_prepare_the_datacard) +# +# export SCRAM_ARCH=slc6_amd64_gcc481 # for csh use: setenv SCRAM_ARCH slc6_amd64_gcc481 +# cmsrel CMSSW_7_1_5 # must be a 7_1_X release >= 7_1_5; (7.0.X and 7.2.X are NOT supported either) +# cd CMSSW_7_1_5/src +# cmsenv +# git clone https://github.com/cms-analysis/HiggsAnalysis-CombinedLimit.git HiggsAnalysis/CombinedLimit +# +# # Updating to a tag (both the first time and whenever there are updates): +# +# cd HiggsAnalysis/CombinedLimit +# git fetch origin +# git checkout v5.0.1 +# scramv1 b clean; scramv1 b # always make a clean build, as scram doesn't always see updates to src/LinkDef.h +# +import multiprocessing + +"""This takes all the per-bin datacards from makeDatacards.py, combines them into a single +datacard and then runs the limits. At the moment it assumes that the datacards for each +signal point are in their own folder and combines all files in each signal point's folder. + +It currently runs HybridNew, ProfileLikelihood, and Asymptotic. +""" + +import commands +import os +import sys +import time +import array +import argparse +from ConfigParser import SafeConfigParser +from ROOT import gROOT, TFile, TTree, TH1D, TH2D, TChain, TGraph2D +gROOT.SetBatch(True) + +import functools +from multiprocessing import Pool, Lock +lock = Lock() # global lock +def lprint(command, output): + lock.acquire() + print '>', command + print output + lock.release() + +import string +import random +def rand_generator(size=10, chars=string.ascii_letters): + return ''.join(random.choice(chars) for _ in range(size)) + + +def main(): + parser = argparse.ArgumentParser( + description='Produce or print limits based on existing datacards') + parser.add_argument("-m", "--maxlikelihood", dest="maxLikelihoodFit", action='store_true', + help="Run the maximum likelihood fit using the signal point defined by the -s option. [Default: False]") + parser.add_argument("-s", "--signal", dest="signalPoint", default='T2tt_850_100', + help="Signal point to use when running the maximum likelihood fit. [Default: T2tt_850_100]") + parser.add_argument("-p", "--print", dest="printLimits", action='store_true', + help="Print last set of limits/significances calculated. [Default: False]") + parser.add_argument("-f", "--fill", dest="fillAsymptoticLimits", action='store_true', + help="Fill root files with results of asymptotic limit calculations for all signal points. [Default: False]") + parser.add_argument("-n", "--name", dest="name", default='T2tt', + help="Name of the signal, used as suffix of the file names. [Default: T2tt]") +# parser.add_argument("-l", "--limfile", dest="limitFile", default='results_T2tt.root', +# help="Name of output file with upper limit histograms. [Default: results_T2tt.root]") +# parser.add_argument("-e", "--excfile", dest="exclusionFile", default='limit_scan_T2tt.root', +# help="Name of output file with exclusion curves and interpolated cross section limits. [Default: results_T2tt.root]") + parser.add_argument("-i", "--interpolate", dest="addInterpolation", type=int, default=0, choices=[ + 0, 1], help="Whether or not to run Chris West's interpolation. [Options: 0 (no), 1 (yes). Default: 0]") + parser.add_argument("-c", "--config", dest="configFile", default='dc_0l_setup.conf', + help="Config file to be run with. [Default: dc_0l_setup.conf]") + args = parser.parse_args() + + # to get the config file + if os.path.exists(args.configFile): + print 'running with config file', args.configFile + else: + print 'you are trying to use a config file (' + args.configFile + ') that does not exist!' + sys.exit(1) + + configparser = SafeConfigParser() + configparser.optionxform = str + + limconfig = LimitConfig(args.configFile, configparser) + + if args.printLimits: + printLimits(limconfig) + elif args.fillAsymptoticLimits: + if limconfig.limitmethod == 'Asymptotic' or limconfig.limitmethod == 'AsymptoticObs': + sigfile = 'significances_%s.root'%args.name + fillSignificances(limconfig, sigfile, args.name) + else: + limitFile = 'results_%s.root'%args.name + exclusionFile = 'limit_scan_%s.root'%args.name + fillAsymptoticLimits(limconfig, limitFile, exclusionFile, args.addInterpolation) + elif args.maxLikelihoodFit: + runMaxLikelihoodFit(limconfig, args.signalPoint) + else: + runLimits(limconfig) + + +class LimitConfig: + # setup + def __init__(self, conf_file, config_parser): + self.conf_file = conf_file + config_parser.read(self.conf_file) + self.limitmethod = config_parser.get('config', 'limitmethod') + self.subdir = config_parser.get('config', 'subdir') + self.datacarddir = os.path.join(config_parser.get('config', 'datacarddir'), self.subdir) + self.limitdir = os.path.join(config_parser.get('config', 'limitdir')) + self.signals = config_parser.get('signals', 'samples').replace(' ', '').split(',') + self.scalesigtoacc = config_parser.getboolean('config', 'scalesigtoacc') + self.expectedonly = config_parser.getboolean('config', 'expectedonly') + + +def getLimit(rootFile, getMean=False, limit={}): + file = TFile(rootFile) + output = '' + if getMean: + tree = file.Get('limit') + htmp = TH1D('htmp', 'htmp', 1, 0, 10000) + tree.Project('htmp', 'limit') + mean = htmp.GetMean() + # error = htmp.GetError() + # output = 'mean=' + str(mean) + '\terror=' + str(error) + '\n' + output = 'mean=' + str(mean) + '\n' + limit = mean + else: + tree = TChain('limit') + tree.Add(rootFile) + for entry in tree: + if entry.quantileExpected < 0: + output += 'Observed : r < %4.2f \n' % (entry.limit) + else: + output += 'Expected %4.2f %% : r < %4.2f \n' % ( + (100.0 * entry.quantileExpected), entry.limit) + if entry.quantileExpected < 0: + limit['obs'] = entry.limit + if 0.1 < entry.quantileExpected < 0.2: + limit['-1'] = entry.limit + elif 0.4 < entry.quantileExpected < 0.6: + limit['0'] = entry.limit + elif 0.8 < entry.quantileExpected < 0.9: + limit['+1'] = entry.limit + return (output, limit) + +def printLimits(config): + limits = [] + currentDir = "/eos/uscms/store/user/mkilpatr/13TeV/" + for signal in config.signals: + outputLocation = os.path.join(currentDir, config.limitdir, signal) + rootFile = '' + dummyFiles = os.listdir(outputLocation) + for df in dummyFiles: + if 'higgsCombine' in df: rootFile = os.path.join( + currentDir, config.limitdir, signal, df) + if rootFile == '': + limits.append(signal + ': no limit found..') + else: + output = getLimit( + rootFile, False) if config.limitmethod == 'AsymptoticLimits' else getLimit(rootFile, True) + # print signal, ':\n', output + tempLimit = '' + if config.limitmethod == 'AsymptoticLimits': + for line in output[0].split('\n'): + if 'Expected 50' in line: + tempLimit = line.replace('Expected', signal + ' expected') + else: + for line in output[0].split('\n'): + if 'mean' in line: + tempLimit = line.replace('mean=', signal + ': ') + limits.append(tempLimit) + + # print the results + print '=' * 5, 'RESULTS', '(' + config.limitmethod + ')', '=' * 5 + print '\n'.join(limits) + print '\n' + +def fillSignificances(config, sigfile, name): + limits = [] + currentDir = os.getcwd() + outfile = TFile(sigfile, 'RECREATE') + maxmstop = 0.0 + minmstop = 0.0 + maxmlsp = 0.0 + minmlsp = 0.0 + mstop_step = 1 + mlsp_step = 10 if 'fbd' in sigfile else 1 + for signal in config.signals: + mstop = int(signal.split('_')[1]) + mlsp = int(signal.split('_')[2]) + if mstop > maxmstop: maxmstop = mstop + if mlsp > maxmlsp: maxmlsp = mlsp + if minmstop == 0.0 or mstop < minmstop: minmstop = mstop + if minmlsp == 0.0 or mlsp < minmlsp: minmlsp = mlsp + nbinsx = int((maxmstop - minmstop) / mstop_step) + nbinsy = int((maxmlsp - minmlsp) / mlsp_step) +# minmstop -= 0.5*mstop_step +# maxmstop -= 0.5*mstop_step +# minmlsp -= 0.5*mlsp_step +# maxmlsp -= 0.5*mlsp_step + print 'XMin: %4.2f, XMax: %4.2f, YMin: %4.2f, YMax: %4.2f, NXBins: %d, NYBins: %d' % (minmstop, maxmstop, minmlsp, maxmlsp, nbinsx, nbinsy) + + hsig = TH2D('hsig', '', nbinsx, minmstop, maxmstop, nbinsy, minmlsp, maxmlsp) + for signal in config.signals: + outputLocation = os.path.join(currentDir, config.limitdir, signal) + rootFile = '' + dummyFiles = os.listdir(outputLocation) + for df in dummyFiles: + if 'higgsCombine' in df: rootFile = os.path.join( + currentDir, config.limitdir, signal, df) + if rootFile == '': + limits.append(signal + ': no limit found..') + else: + output = getLimit(rootFile, True) + print signal, ':\n', output + tempLimit = '' + for line in output[0].split('\n'): + if 'mean' in line: + tempLimit = line.replace('mean=', signal + ': ') + limits.append(tempLimit) + mstop = int(signal.split('_')[1]) + mlsp = int(signal.split('_')[2]) + limit = output[1] + bin = hsig.FindBin(mstop, mlsp) + hsig.SetBinContent(bin, limit) +# hsig.Fill(mstop, mlsp, limit) + + outfile.cd() + hsig.Write() + outfile.Close() + os.system('root -l -q -b makeSigScanPlots.C\\(\\"%s\\",\\"%s\\"\\)'%(sigfile, name)) + + # print the results + print '=' * 5, 'RESULTS', '(' + config.limitmethod + ')', '=' * 5 + print '\n'.join(limits) + print '\n' + +def fillAsymptoticLimits(config, limfilename, excfilename, interpolate): + limits = [] + currentDir = "/eos/uscms/store/user/mkilpatr/13TeV/" + xsecfilename = ('Datacards/setup/xsecs/xSec.root') + outfile = TFile(limfilename, 'RECREATE') + + maxmstop = 0.0 + minmstop = 0.0 + maxmlsp = 0.0 + minmlsp = 0.0 + mstop_step = 1 + mlsp_step = 10 if 'fbd' in limfilename else 1 + for signal in config.signals: + mstop = int(signal.split('_')[1]) + mlsp = int(signal.split('_')[2]) + if mstop > maxmstop: maxmstop = mstop + if mlsp > maxmlsp: maxmlsp = mlsp + if minmstop == 0.0 or mstop < minmstop: minmstop = mstop + if mlsp < minmlsp: minmlsp = mlsp + nbinsx = int((maxmstop - minmstop) / mstop_step) + nbinsy = int((maxmlsp - minmlsp) / mlsp_step) + minmstop -= 0.5*mstop_step + maxmstop -= 0.5*mstop_step + print 'XMin: %4.2f, XMax: %4.2f, YMin: %4.2f, YMax: %4.2f, NXBins: %d, NYBins: %d' % (minmstop, maxmstop, minmlsp, maxmlsp, nbinsx, nbinsy) + + hexp = TH2D('hexp', '', nbinsx, minmstop, maxmstop, nbinsy, minmlsp, maxmlsp) + hexpup = TH2D('hexpup', '', nbinsx, minmstop, maxmstop, nbinsy, minmlsp, maxmlsp) + hexpdown = TH2D('hexpdown', '', nbinsx, minmstop, maxmstop, nbinsy, minmlsp, maxmlsp) + hxsecexp = TH2D('hxsecexp', '', nbinsx, minmstop, maxmstop, nbinsy, minmlsp, maxmlsp) + hxsecobs = TH2D('hxsecobs', '', nbinsx, minmstop, maxmstop, nbinsy, minmlsp, maxmlsp) + hobs = TH2D('hobs', '', nbinsx, minmstop, maxmstop, nbinsy, minmlsp, maxmlsp) + hobsup = TH2D('hobsup', '', nbinsx, minmstop, maxmstop, nbinsy, minmlsp, maxmlsp) + hobsdown = TH2D('hobsdown', '', nbinsx, minmstop, maxmstop, nbinsy, minmlsp, maxmlsp) + + xsecfile = TFile(xsecfilename) + xsechist = TH1D() + if "T2tt" in limfilename or "T2bb" in limfilename or "T2tb" in limfilename or "T6tt" in limfilename: + xsechist = xsecfile.Get("stop_xsection") + elif "T1tt" in limfilename or "T5tt" in limfilename: + xsechist = xsecfile.Get("gluino_xsection") + + for signal in config.signals: + outputLocation = os.path.join(currentDir, config.limitdir, signal) + rootFile = '' + dummyFiles = os.listdir(outputLocation) + for df in dummyFiles: + if 'higgsCombine' in df: rootFile = os.path.join( + currentDir, config.limitdir, signal, df) + if rootFile == '': + limits.append(signal + ': no limit found..') + else: + output = getLimit(rootFile, False) + print signal, ':\n', output + tempLimit = '' + for line in output[0].split('\n'): + if 'Observed' in line: + tempLimit = line.replace('Observed\t', signal + ' observed') + if 'Expected 50' in line: + tempLimit += line.replace('Expected\t', signal + ' expected') + limits.append(tempLimit) + mstop = int(signal.split('_')[1]) + mlsp = int(signal.split('_')[2]) + limit = output[1] + binIdx = xsechist.FindBin(float(mstop)) + xsec = xsechist.GetBinContent(binIdx) + xsecup = xsec + xsechist.GetBinError(binIdx) + xsecdown = xsec - xsechist.GetBinError(binIdx) + if config.scalesigtoacc: + xseclimit = limit['0'] + xsecobslimit = 0.0 + hexp.Fill(mstop, mlsp, limit['0'] / xsec) + hexpdown.Fill(mstop, mlsp, limit['-1'] / xsec) + hexpup.Fill(mstop, mlsp, limit['+1'] / xsec) + if limit.has_key('obs'): + xsecobslimit = limit['obs'] + hobs.Fill(mstop, mlsp, limit['obs'] / xsec) + hobsdown.Fill(mstop, mlsp, limit['obs'] / xsecup) + hobsup.Fill(mstop, mlsp, limit['obs'] / xsecdown) + print 'MStop: %d, MLSP: %d, XS: %4.2f, Exp Limit: %4.2f (+1 expt: %4.2f, -1 expt: %4.2f), Obs Limit: %4.2f (+1 theory: %4.2f, -1 theory: %4.2f), XS Limit: %4.2f exp, %4.2f obs' % (mstop, mlsp, xsec, limit['0'] / xsec, limit['+1'] / xsec, limit['-1'] / xsec, limit['obs'] / xsec, limit['obs'] / xsecdown, limit['obs'] / xsecup, xseclimit, xsecobslimit) + else: + print 'MStop: %d, MLSP: %d, XS: %4.2f, Limit: %4.2f (+1: %4.2f, -1: %4.2f), XS Limit: %4.2f' % (mstop, mlsp, xsec, limit['0'] / xsec, limit['+1'] / xsec, limit['-1'] / xsec, xseclimit) + else: + xseclimit = limit['0'] * xsec + xsecobslimit = 0.0 + hexp.Fill(mstop, mlsp, limit['0']) + hexpdown.Fill(mstop, mlsp, limit['-1']) + hexpup.Fill(mstop, mlsp, limit['+1']) + if limit.has_key('obs'): + xsecobslimit = limit['obs'] * xsec + hobs.Fill(mstop, mlsp, limit['obs']) + hobsdown.Fill(mstop, mlsp, limit['obs'] * xsec / xsecup) + hobsup.Fill(mstop, mlsp, limit['obs'] * xsec / xsecdown) + # print 'Can\'t fill obs +/- 1 sigma theory if you didn\'t + # scale the signals to acceptance!' + print 'MStop: %d, MLSP: %d, XS: %4.2f, Exp Limit: %4.2f (+1 expt: %4.2f, -1 expt: %4.2f), Obs Limit: %4.2f (+1 theory: %4.2f, -1 theory: %4.2f), XS Limit: %4.2f exp, %4.2f obs' % (mstop, mlsp, xsec, limit['0'], limit['+1'], limit['-1'], limit['obs'], limit['obs'] * xsec / xsecdown, limit['obs'] * xsec / xsecup, xseclimit, xsecobslimit) + else: + print 'MStop: %d, MLSP: %d, XS: %4.2f, Limit: %4.2f (+1: %4.2f, -1: %4.2f), XS Limit: %4.2f' % (mstop, mlsp, xsec, limit['0'], limit['+1'], limit['-1'], xseclimit) + hxsecexp.Fill(mstop, mlsp, xseclimit) + hxsecobs.Fill(mstop, mlsp, xsecobslimit) + + outfile.cd() + hexp.Write() + hexpdown.Write() + hexpup.Write() + hobs.Write() + hobsdown.Write() + hobsup.Write() + hxsecexp.Write() + hxsecobs.Write() + outfile.Close() + os.system('root -l -q -b makeScanPlots.C\\(\\"%s\\",\\"%s\\",%d,%d\\)' % + (limfilename, excfilename, config.expectedonly, interpolate)) + + # print the results + print '=' * 5, 'RESULTS', '(' + config.limitmethod + ')', '=' * 5 + print '\n'.join(limits) + print '\n' + + +def runMaxLikelihoodFit(config, signal): + # get all datacards for combining + currentDir = os.getcwd() + datacardSaveLocation = os.path.join(currentDir, config.datacarddir, signal) + datacards = os.listdir(datacardSaveLocation) + + # create and move into a dummy directory (using the timestamp in the name for uniqueness). At the end of + # each signal loop, all remaining files will be either deleted or moved to + # the actual output directory. + dummyRunDir = 'dummy_' + rand_generator() + os.makedirs(dummyRunDir) + os.chdir(dummyRunDir) + + combinedDatacard = 'combined_' + signal + '.txt' + combineDatacardsCommand = 'combineCards.py' + for datacard in datacards: + combineDatacardsCommand += ' ' + os.path.join(datacardSaveLocation, datacard) + combineDatacardsCommand += ' > ' + combinedDatacard + output = commands.getoutput(combineDatacardsCommand) + + with open(combinedDatacard, 'r') as f : + contents = f.readlines() + + contents.insert(4,'shapes * * FAKE\n') + + with open(combinedDatacard, 'w') as f : + f.writelines(contents) + + #lprint(combineDatacardsCommand, output) + + # run the maximum likelihood fit + runLimitsCommand = 'combine -M MaxLikelihoodFit --saveNormalizations --saveShapes --saveWithUncertainties ' + combinedDatacard + output = commands.getoutput(runLimitsCommand) + lprint(runLimitsCommand, output) + + # move any output files to the correct directory + os.chdir(currentDir) + dummyFiles = os.listdir(dummyRunDir) + for f in dummyFiles: + if 'roostats' in f or 'higgsCombineTest' in f: + os.remove(os.path.join(dummyRunDir, f)) + continue + os.rename(os.path.join(dummyRunDir, f), os.path.join(currentDir, f)) + os.removedirs(dummyRunDir) + + +def calcLimit(config, signal): + # for each signal, combine the datacards for it, run the + # chosen limit method, then print the significances for + # eachpoint at the end. + + # get all datacards for combining + currentDir = os.getcwd() + datacardSaveLocation = os.path.join(currentDir, config.datacarddir, signal) + datacards = os.listdir(datacardSaveLocation) + + # create and move into a dummy directory (using the timestamp in the name for uniqueness). At the end of + # each signal loop, all remaining files will be either deleted or moved to + # the actual output directory. + dummyRunDir = 'dummy_' + rand_generator() + os.makedirs(dummyRunDir) + os.chdir(dummyRunDir) + + combinedDatacard = 'combined_' + signal + '.txt' + combineDatacardsCommand = 'combineCards.py' + for datacard in datacards: + combineDatacardsCommand += ' ' + os.path.join(datacardSaveLocation, datacard) + combineDatacardsCommand += ' > ' + combinedDatacard + output = commands.getoutput(combineDatacardsCommand) + + #lprint(combineDatacardsCommand, output) + + # ===== run the limits ===== + # + # ## notes from previous versions: + # runLimitsCommand = 'combine -M ProfileLikelihood '+combinedDatacard+' --significance -t 500 --expectSignal=1 -n '+limitsOutputFile + # for now, remove '--pvalue' (between --significance and -t 500) + # note: the default for -t is -1 (Asimov dataset) see https://twiki.cern.ch/twiki/bin/view/CMS/SWGuideHiggsAnalysisCombinedLimit + ##### + + result = {} + # === Asymptotic + if config.limitmethod == 'AsymptoticLimits': + # runLimitsCommand = 'combine -M Asymptotic '+combinedDatacard+' --run + # expected -t -1 --rMin 0 --rMax 10 -n '+signal + mstop = int(signal.split('_')[1]) + mlsp = int(signal.split('_')[2]) + sigtype = signal.split('_')[0] + runLimitsCommand = 'combine -M AsymptoticLimits ' + combinedDatacard + ' -n ' + signal + if (mstop<450 and 'fbd' not in sigtype) or (mstop >= 350 and mlsp < 350 and 'T2tt' in sigtype) : + runLimitsCommand = 'combine -M AsymptoticLimits ' + combinedDatacard + ' --rMin 0 --rMax 10 -n ' + signal + if ('fbd' in sigtype or '4bd' in sigtype) and (mstop<=250): + runLimitsCommand = 'combine -M AsymptoticLimits ' + combinedDatacard + ' --rMin 0 --rMax 1 -n ' + signal + if config.expectedonly : + runLimitsCommand += ' --run expected' + output = commands.getoutput(runLimitsCommand) + lprint(runLimitsCommand, output) + + # pull the expected limit out and store + tempLimit = '' + tempObsLimit = '' + for line in output.split('\n'): + if 'Expected 50' in line: + tempLimit = line.replace('Expected', signal + ' expected') + elif 'Observed' in line: + tempObsLimit = line.replace('Observed', signal + ' obs') + result = (tempLimit, tempObsLimit, '') + + elif config.limitmethod == 'Asymptotic': + runLimitsCommand = 'combine -M ProfileLikelihood ' + combinedDatacard + ' --significance -t -1 --toysFreq --expectSignal=1 -n ' + signal + # runLimitsCommand = 'combine -M ProfileLikelihood '+combinedDatacard+' --significance -t -1 --expectSignal=1 -n '+signal + # runLimitsCommand = 'combine -M ProfileLikelihood --significance '+combinedDatacard+' -n '+signal + # run the limit command and figure out what the output root file is + output = commands.getoutput(runLimitsCommand) + lprint(runLimitsCommand, output) + + # pull the Significance out and store + tempSig = '' + for line in output.split('\n'): + if 'Significance' in line: + tempSig = line.replace('Significance', signal) + result = ('', '', tempSig) + + elif config.limitmethod == 'AsymptoticObs': + runLimitsCommand = 'combine -M ProfileLikelihood ' + combinedDatacard + ' --uncapped 1 --significance --rMin -5 -n ' + signal + # run the limit command and figure out what the output root file is + output = commands.getoutput(runLimitsCommand) + lprint(runLimitsCommand, output) + + # pull the Significance out and store + tempSig = '' + for line in output.split('\n'): + if 'Significance' in line: + tempSig = line.replace('Significance', signal) + result = ('', '', tempSig) + + # === ProfileLikelihood + elif config.limitmethod == 'ProfileLikelihood': + runLimitsCommand = 'combine -M ProfileLikelihood ' + combinedDatacard + ' --significance -t 500 --expectSignal=1 -n ' + signal + # run the limit command and figure out what the output root file is + output = commands.getoutput(runLimitsCommand) + lprint(runLimitsCommand, output) + + # get the significance and store + rootFile = '' + dummyFiles = os.listdir('./') + for df in dummyFiles: + if 'higgsCombine' in df: rootFile = df + if rootFile == '': + tempSig = signal + ':' + else: + tempSig = signal + ':' + getLimit(rootFile, True)[0] + result = ('', '', tempSig) + + # === HybridNew method + elif config.limitmethod == 'HybridNew': + # run the first limit command and figure out what the output root file is + runLimitsCommand = 'combine -M HybridNew --frequentist ' + combinedDatacard + ' --significance --saveToys --fullBToys --saveHybridResult -T 500 -i 10 -n ' + signal + output = commands.getoutput(runLimitsCommand) + lprint(runLimitsCommand, output) + + # now need to figure out what the root output of the previous file is + dummyFiles = os.listdir('./') + outputRootFile = '' + for f in dummyFiles: + if 'higgsCombine' in f: + outputRootFile = f + # now run the second limit command with the above root file + runLimitsCommand = 'combine -M HybridNew --frequentist ' + combinedDatacard + \ + ' --significance --readHybridResult --toysFile=' + \ + outputRootFile + ' --expectedFromGrid=0.5 -n ' + signal + output = commands.getoutput(runLimitsCommand) + lprint(runLimitsCommand, output) + + # pull the Significance out and store + tempSig = '' + for line in output.split('\n'): + if 'Significance' in line: + tempSig = line.replace('Significance', signal) + result = ('', '', tempSig) + + # === non-existant choice of limit method + else: + print config.limitmethod, 'is not one of the currently implemented methods! You need to pick one of the allowed ones!' + sys.exit(1) + + # move any output files to the correct directory + os.chdir(currentDir) + dummyFiles = os.listdir(dummyRunDir) + outputLocation = os.path.join(currentDir, config.limitdir, signal) + if not os.path.exists(outputLocation): os.makedirs(outputLocation) + for f in dummyFiles: + if 'roostats' in f: + os.remove(os.path.join(dummyRunDir, f)) + continue + os.rename(os.path.join(dummyRunDir, f), os.path.join(outputLocation, f)) + os.removedirs(dummyRunDir) + + return result + + +def runLimits(config): + if not os.path.exists(config.datacarddir): + print config.datacarddir, 'does not exist!' + print 'Are you sure you already ran makeDatacards.py?' + sys.exit(1) + + currentDir = os.getcwd() + significances = [] # store the Significance from each sig point to print at the end + observeds = [] # store the Significance from each sig point to print at the end + + # run limits in parallel + print 'Running limits for %d signal points. Please wait...'%len(config.signals) + signals = config.signals[:] + pool = Pool(multiprocessing.cpu_count()-2) + results = pool.map(functools.partial(calcLimit, config), signals) + + # print the significances + print '=' * 5, 'RESULTS', '(' + config.limitmethod + ')', '=' * 5 + for rlt in results: + if config.limitmethod == 'AsymptoticLimits': + # print exp limit + print rlt[0] + else: + # print significance + print rlt[-1] + print '\n' + + for rlt in results: + if config.limitmethod == 'AsymptoticLimits': + # print obs limit + print rlt[1] + + # rearrange significances to be more easily put in a table + if config.limitmethod == 'Asymptotic' or config.limitmethod == 'AsymptoticObs': + sigsamps = [] + siglims = [] + for s in results: + s = s[-1].split() + sigsamps.append(s[0][:-1]) + siglims.append(s[1]) + print '\t'.join(sigsamps) + print '\t'.join(siglims) + print '\n' + + +if __name__ == '__main__': main() diff --git a/Datacards/python/writeDatacard_SUSYNano19.py b/Datacards/python/writeDatacard_SUSYNano19.py index c57f5cc..4ac24b9 100644 --- a/Datacards/python/writeDatacard_SUSYNano19.py +++ b/Datacards/python/writeDatacard_SUSYNano19.py @@ -127,7 +127,9 @@ def sumBkgYields(process, signal, cr_description, yields_dict): crunit+=sigYields[crproc+'_'+signal][cr][0] if 'qcd' in process: crunit = yields_dict[crproc+'_'+process][cr][0] - crunit+=yields[crproc+'_otherbkgs'][cr][0] + crunit+=yields[crproc+'_ttbarplusw'][cr][0] + crunit+=yields[crproc+'_znunu'][cr][0] + crunit+=yields[crproc+'_Rare'][cr][0] if 'znunu' in process: crunit = yields_dict[crproc+'_gjets'][cr][0] crunit+=yields[crproc+'_back'][cr][0] @@ -200,20 +202,20 @@ def readUncs(): print line raise ValueError('Uncertainty "%s" is not defined!'%uncname) try: - if "up" in uncname: - if "nan" in uncval: + if "Up" in uncname: + if "nan" in uncval or float(uncval) > 10000000: uncval = 2 elif float(uncval) <= 0: uncval = 0.001 - unc_up = Uncertainty(uncname.strip("up"), unctype, uncval) - elif "down" in uncname: - if uncval == "2" or "nan" in uncval or float(uncval) <= 0: + unc_up = Uncertainty(uncname.strip("_Up"), unctype, uncval) + elif "Down" in uncname: + if "nan" in uncval or float(uncval) <= 0 or float(uncval) > 10000000: uncval = 0.001 if (unc_up.value > 1 and float(uncval) > 1) or (unc_up.value < 1 and float(uncval) < 1): uncavg = averageUnc(unc_up.value, float(uncval)) - unc = Uncertainty(uncname.strip("_down"), unctype, (1 - uncavg), (1 + uncavg)) + unc = Uncertainty(uncname.strip("_Down"), unctype, (1 - uncavg), (1 + uncavg)) else: - unc = Uncertainty(uncname.strip("_down"), unctype, uncval, unc_up.value) + unc = Uncertainty(uncname.strip("_Down"), unctype, uncval, unc_up.value) else: unc = Uncertainty(uncname, unctype, uncval) except ValueError as e: @@ -223,7 +225,7 @@ def readUncs(): bins = [bin_str] if bin_str=='all': bins = binlist elif bin_str in crbinlist: bins = crbinlist[bin_str] - if "up" not in uncname: + if "Up" not in uncname: for bin in bins: for proc in processes: unc_dict[bin][proc][uncname] = unc @@ -256,7 +258,10 @@ def writeLepcr(signal): if proc in unc_dict[crbin]: for unc in unc_dict[crbin][proc].values(): procname_in_dc = 'ttbarplusw' if proc=='ttbarplusw' else 'signal' - cb.cp().process([procname_in_dc]).AddSyst(cb, unc.name, unc.type, ch.SystMap()(unc.value)) + if unc.value2 > -100.: + cb.cp().process([procname_in_dc]).AddSyst(cb, unc.name, unc.type, ch.SystMap()((unc.value,unc.value2))) + else: + cb.cp().process([procname_in_dc]).AddSyst(cb, unc.name, unc.type, ch.SystMap()(unc.value)) tmpdc = os.path.join(outputdir, signal, '%s.tmp'%crbin) cb.WriteDatacard(tmpdc) with open(tmpdc) as tmpfile: @@ -288,7 +293,10 @@ def writePhocr(signal): for proc in ['gjets', 'otherbkgs']: if proc in unc_dict[crbin]: for unc in unc_dict[crbin][proc].values(): - cb.cp().process([proc]).AddSyst(cb, unc.name, unc.type, ch.SystMap()(unc.value)) + if unc.value2 > -100.: + cb.cp().process([proc]).AddSyst(cb, unc.name, unc.type, ch.SystMap()((unc.value,unc.value2))) + else: + cb.cp().process([proc]).AddSyst(cb, unc.name, unc.type, ch.SystMap()(unc.value)) tmpdc = os.path.join(outputdir, signal, '%s.tmp'%crbin) cb.WriteDatacard(tmpdc) with open(tmpdc) as tmpfile: @@ -305,22 +313,30 @@ def writeQCDcr(signal): #cb.SetVerbosity(3) ## Boolean to enable debug printout #print crbin cb.AddObservations(['*'], ['stop'], ['13TeV'], ['0l'], [(0, crbin)]) - cb.AddProcesses(procs = ['qcd', 'otherbkgs'], bin = [(0, crbin)], signal=False) + cb.AddProcesses(procs = ['qcd', 'ttbarplusw', 'znunu', 'Rare'], bin = [(0, crbin)], signal=False) cb.ForEachObs(lambda obs : obs.set_rate(yields['qcdcr_data'][crbin][0])) cb.cp().process(['qcd']).ForEachProc(lambda p : p.set_rate(yields['qcdcr_qcd'][crbin][0])) - cb.cp().process(['otherbkgs']).ForEachProc(lambda p : p.set_rate(yields['qcdcr_otherbkgs'][crbin][0])) + cb.cp().process(['ttbarplusw']).ForEachProc(lambda p : p.set_rate(yields['qcdcr_ttbarplusw'][crbin][0])) + cb.cp().process(['znunu']).ForEachProc(lambda p : p.set_rate(yields['qcdcr_znunu'][crbin][0])) + cb.cp().process(['Rare']).ForEachProc(lambda p : p.set_rate(yields['qcdcr_Rare'][crbin][0])) # stat uncs cb.cp().process(['qcd']).AddSyst(cb, "R_$BIN", "rateParam", ch.SystMap()(1.0)) cb.AddSyst(cb, "mcstats_$PROCESS_$BIN", "lnN", ch.SystMap('process') (['qcd'], toUnc(yields['qcdcr_qcd'][crbin])) - (['otherbkgs'], 2.0) + (['ttbarplusw'], toUnc(yields['qcdcr_ttbarplusw'][crbin])) + (['znunu'], toUnc(yields['qcdcr_znunu'][crbin])) + (['Rare'], toUnc(yields['qcdcr_Rare'][crbin])) ) # syst uncs if crbin in unc_dict: - for proc in ['qcd', 'otherbkgs']: + #for proc in ['qcd', 'otherbkgs']: + for proc in ['qcd', 'ttbarplusw', 'znunu', 'Rare']: if proc in unc_dict[crbin]: for unc in unc_dict[crbin][proc].values(): - cb.cp().process([proc]).AddSyst(cb, unc.name, unc.type, ch.SystMap()(unc.value)) + if unc.value2 > -100.: + cb.cp().process([proc]).AddSyst(cb, unc.name, unc.type, ch.SystMap()((unc.value,unc.value2))) + else: + cb.cp().process([proc]).AddSyst(cb, unc.name, unc.type, ch.SystMap()(unc.value)) tmpdc = os.path.join(outputdir, signal, '%s.tmp'%crbin) cb.WriteDatacard(tmpdc) with open(tmpdc) as tmpfile: diff --git a/Datacards/setup/SUSYNano19/TTZ_pred.json b/Datacards/setup/SUSYNano19/TTZ_pred.json index cf0a7fd..64360b3 100644 --- a/Datacards/setup/SUSYNano19/TTZ_pred.json +++ b/Datacards/setup/SUSYNano19/TTZ_pred.json @@ -1,736 +1,736 @@ { "ttZ": { "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350": [ - 1.7391760349273682, - 0.12618608576591697 + 1.850998287308948, + 0.134299360124685 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450": [ - 1.07088303565979, - 0.09489451408960255 + 1.1397366483360378, + 0.100995862136638 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550": [ - 0.6241673231124878, - 0.07284808966893533 + 0.6642988535221365, + 0.07753193840240517 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf": [ - 1.2764142751693726, - 0.09199837612039637 + 1.358482746879542, + 0.09791351376410252 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350": [ - 0.11003506183624268, - 0.02266876596915687 + 0.11710988819560483, + 0.02412627942292746 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450": [ - 0.07103411853313446, - 0.0173531104714661 + 0.0756013359802441, + 0.01846884795851511 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf": [ - 0.11366301029920578, - 0.025232526762193057 + 0.12097109962936879, + 0.02685488006005503 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350": [ - 4.648128986358643, - 0.1262334954176977 + 4.946985595566946, + 0.13434981803261709 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450": [ - 2.3021183013916016, - 0.09091549562489737 + 2.450135551250508, + 0.0967610082659385 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf": [ - 1.1698659658432007, - 0.06862876083137576 + 1.2450837958143932, + 0.0730413231368595 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350": [ - 1.2266491651535034, - 0.10910155813140393 + 1.3055179339122551, + 0.11611636383455577 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450": [ - 1.0066838264465332, - 0.08697130924796083 + 1.0714096797521533, + 0.09256322605072892 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550": [ - 0.5211459398269653, - 0.06361196690960116 + 0.5546535961197341, + 0.06770196888490507 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650": [ - 0.2302793711423874, - 0.047922144627607154 + 0.2450854387520017, + 0.05100335207503996 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf": [ - 0.5092967748641968, - 0.053930869093974806 + 0.5420425759517603, + 0.05739841414627094 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350": [ - 0.13147179782390594, - 0.03983179652538575 + 0.13992492290272457, + 0.042392826067205215 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450": [ - 0.11133278906345367, - 0.030792078885810457 + 0.11849105423441933, + 0.03277188975450519 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550": [ - 0.03375447541475296, - 0.027076198371558502 + 0.035924756854373865, + 0.028817092580674365 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650": [ - 0.03880626708269119, - 0.021040289132541377 + 0.04130135907140349, + 0.022393097861681158 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf": [ - 0.08833654224872589, - 0.026954849026590948 + 0.09401623822169027, + 0.028687940944962922 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350": [ - 55.043800354003906, - 0.5012145563211905 + 58.58290255620496, + 0.5334407022021683 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450": [ - 21.626646041870117, - 0.31294366022819975 + 23.017155238923362, + 0.33306472000160825 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550": [ - 6.886341094970703, - 0.17930503330941502 + 7.3291060344839245, + 0.19083364932375102 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650": [ - 1.913525104522705, - 0.09699822224104662 + 2.0365573237341223, + 0.10323483053725965 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf": [ - 0.8739222288131714, - 0.0611803962339178 + 0.9301120279304875, + 0.06511405767536006 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550": [ - 2.933406352996826, - 0.10652513041099711 + 3.1220129684026325, + 0.11337428183591121 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf": [ - 0.2359267920255661, - 0.03063278868261487 + 0.2510959668253794, + 0.03260235781099929 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550": [ - 3.7807083129882812, - 0.14332787989682066 + 4.023793147798444, + 0.15254330492411436 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650": [ - 0.43139100074768066, - 0.04649581050484055 + 0.4591277636698792, + 0.049485310217660325 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf": [ - 0.6234725117683411, - 0.05477163695152026 + 0.6635593685118844, + 0.0582932401058559 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550": [ - 0.7602046728134155, - 0.08012231656958414 + 0.8090828755242461, + 0.0852738697907134 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650": [ - 0.14488017559051514, - 0.027081972933857345 + 0.15419540719135008, + 0.028823238424861765 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 0.18908926844596863, - 0.03738926386038643 + 0.20124697271176856, + 0.03979324805508138 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550": [ - 8.586254119873047, - 0.19874573653963104 + 9.138316852985007, + 0.21152431413314404 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650": [ - 1.3028558492660522, - 0.07140504990068121 + 1.3866244113136146, + 0.07599611679153033 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf": [ - 0.7408045530319214, - 0.05415821315030542 + 0.7884354035214284, + 0.057640375540889285 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550": [ - 0.6341158151626587, - 0.047686497459529034 + 0.6748869949042375, + 0.05075255371089391 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf": [ - 0.19313590228557587, - 0.02415318686136179 + 0.20555378936290314, + 0.025706142803020367 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550": [ - 2.2226932048797607, - 0.10408990558168267 + 2.3656037300545556, + 0.11078248152487398 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf": [ - 0.6284668445587158, - 0.05555963116399255 + 0.6688748174690802, + 0.05913189928031749 ], "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 3.3314623832702637, - 0.14882440959887405 + 3.5456624526941423, + 0.15839324010049716 ], "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 2.6664648056030273, - 0.13435004523174646 + 2.83790811810888, + 0.1429882304204059 ], "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 0.6215517520904541, - 0.07184875191166747 + 0.6615151114598664, + 0.07646834711549831 ], "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 0.23423774540424347, - 0.04957435988040838 + 0.24929832107792993, + 0.05276179834027297 ], "bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350": [ - 1.2727633714675903, - 0.09025406035866974 + 1.3545971042744154, + 0.09605704528555842 ], "bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450": [ - 0.6574841141700745, - 0.07543661799112873 + 0.6997577846180898, + 0.080286899024451 ], "bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550": [ - 0.5425239205360413, - 0.06069406342320928 + 0.5774060978124543, + 0.0645964555571126 ], "bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf": [ - 0.6997315883636475, - 0.07012540881906033 + 0.7447216070287974, + 0.07463419976709908 ], "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 8.907203674316406, - 0.23655532512188787 + 9.479902215051037, + 0.2517649121543421 ], "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 7.407715320587158, - 0.21846820181939494 + 7.884002594281214, + 0.23251485719561082 ], "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 1.9776990413665771, - 0.11541232571965339 + 2.1048573950335987, + 0.12283288922523733 ], "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 0.6995377540588379, - 0.07719509779774868 + 0.7445153099323455, + 0.08215844224086659 ], "bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf": [ - 0.03151698783040047, - 0.013543109506377446 + 0.03354340752380741, + 0.014413878755056037 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350": [ - 0.4493263363838196, - 0.03833008797223672 + 0.47821627160587465, + 0.04079456349683111 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550": [ - 0.2850969433784485, - 0.034362405672305266 + 0.3034275676024727, + 0.036571774662194335 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf": [ - 0.07754585146903992, - 0.01608876079838745 + 0.08253174800853406, + 0.017123205520700614 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf": [ - 0.019948668777942657, - 0.0063108158924519014 + 0.021231290565481724, + 0.006716576800656294 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350": [ - 0.16234685480594635, - 0.04045380967150649 + 0.17278512592220194, + 0.04305483223853635 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550": [ - 0.2680058181285858, - 0.04145453887295317 + 0.28523754949599633, + 0.044119904434069 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf": [ - 0.10319250822067261, - 0.027293827819142674 + 0.10982738500508174, + 0.029048714755000794 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350": [ - 0.010125728324055672, - 0.015482320395201416 + 0.010776773258818215, + 0.016477773359085547 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550": [ - 0.01988723687827587, - 0.01679604605815395 + 0.021165908833681295, + 0.017875966470814172 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf": [ - 0.005919246934354305, - 0.013731199820173342 + 0.0062998314820420865, + 0.014614062544220395 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350": [ - 5.12483549118042, - 0.14659421736519096 + 5.454342473912498, + 0.1560196551832639 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550": [ - 3.29534649848938, - 0.11932917549394217 + 3.507224457039001, + 0.12700157720060823 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf": [ - 0.37179359793663025, - 0.03825269609631595 + 0.3956984797354769, + 0.040712195624399525 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf": [ - 0.2826254367828369, - 0.03185383982009514 + 0.3007971527487279, + 0.033901917785839335 ], "bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350": [ - 0.3880228102207184, - 0.049785858737519624 + 0.41297116722594995, + 0.05298689575101154 ], "bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf": [ - 0.3811417818069458, - 0.049565358600039765 + 0.405647715457395, + 0.05275221831259821 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350": [ - 0.27739524841308594, - 0.03353995036981855 + 0.29523068361605237, + 0.035696438683709183 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550": [ - 0.22142021358013153, - 0.034353001681531936 + 0.23565667182708228, + 0.03656176603140267 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ - 0.1461845338344574, - 0.026337993031062264 + 0.15558363059547217, + 0.02803142350894183 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350": [ - 0.01546198409050703, - 0.01802458046813658 + 0.01645612950912238, + 0.01918349086346309 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550": [ - 0.01483194436877966, - 0.020951953242156963 + 0.01578558068460234, + 0.02229908231723612 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf": [ - 0.04977317154407501, - 0.01754189495541224 + 0.05297339282039088, + 0.018669770550269547 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350": [ - 0.3464701175689697, - 0.036800361170747205 + 0.3687467981069988, + 0.039166481213759666 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550": [ - 0.6398507952690125, - 0.0545601886652161 + 0.6809907119181712, + 0.05806819651743056 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf": [ - 0.30004024505615234, - 0.033928135524523804 + 0.3193316654377018, + 0.03610958263353839 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf": [ - 0.10468856990337372, - 0.01921231642413934 + 0.11141963763320857, + 0.020447593620276993 ], "bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350": [ - 0.2654668092727661, - 0.033424895767759796 + 0.2825352922493452, + 0.035573986518384434 ], "bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf": [ - 0.4687436819076538, - 0.04750423086552744 + 0.4988820768992441, + 0.05055856808404811 ], "bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf": [ - 0.22425758838653564, - 0.029176707735502915 + 0.23867647879407908, + 0.03105265652420576 ], "bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf": [ - 0.026738043874502182, - 0.01732222269458025 + 0.02845719606512515, + 0.018435974217751498 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350": [ - 0.0593348927795887, - 0.016559374096276194 + 0.06314989552927312, + 0.017624077422614362 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450": [ - 0.03399161249399185, - 0.01215149470346263 + 0.036177140925171485, + 0.012932788534711161 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf": [ - 0.04535109922289848, - 0.015167557997453524 + 0.04826699845405182, + 0.01614277296381795 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350": [ - 1.9369696378707886, - 0.08046571642113533 + 2.06150924936014, + 0.08563934891664325 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450": [ - 1.1791319847106934, - 0.06358937859386794 + 1.2549455836434886, + 0.06767792822835524 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf": [ - 0.6940189599990845, - 0.048701227216387484 + 0.7386416788866871, + 0.05183252664307892 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf": [ - 0.07075940817594528, - 0.015755605757470988 + 0.07530896281591147, + 0.016768629906869514 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350": [ - 0.7394909262657166, - 0.08086160904078767 + 0.7870373156651236, + 0.08606069589142797 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450": [ - 0.3753993511199951, - 0.0656940636089921 + 0.3995360688195203, + 0.06991793630119089 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550": [ - 0.5050531029701233, - 0.05371907835971143 + 0.5375260524658791, + 0.05717300609181498 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650": [ - 0.3392031192779541, - 0.04073088777740538 + 0.3610125600997986, + 0.043349725388608464 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf": [ - 0.4550040364265442, - 0.04806047208031112 + 0.484259025670949, + 0.051150573444758034 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350": [ - 0.04597080871462822, - 0.031503926549316205 + 0.048926552854977524, + 0.03352950645316735 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450": [ - 0.017154261469841003, - 0.024640994577828562 + 0.01825721373975328, + 0.02622531465772787 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550": [ - 0.043938782066106796, - 0.02226880643476544 + 0.04676387479902307, + 0.023700604046609196 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650": [ - 0.03662310913205147, - 0.016785082701358322 + 0.03897783255861561, + 0.017864298212832048 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf": [ - 0.053887102752923965, - 0.02387643308969946 + 0.057351833799773544, + 0.02541159484061433 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350": [ - 33.381439208984375, - 0.37056669018228433 + 35.52773587195749, + 0.3943926865860933 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450": [ - 14.873788833618164, - 0.24803174737007266 + 15.83011558572445, + 0.2639792237014257 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550": [ - 5.223089218139648, - 0.14407857421618628 + 5.558913533236489, + 0.15334226596746633 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650": [ - 1.452848196029663, - 0.081209327880301 + 1.546260682394413, + 0.08643077169944191 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf": [ - 0.8157047033309937, - 0.05604642120303151 + 0.8681513420684746, + 0.059649988024898085 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550": [ - 2.0561327934265137, - 0.08063270006305151 + 2.1883341321864425, + 0.08581706895704638 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf": [ - 0.15120594203472137, - 0.025432878438287062 + 0.16092789580606995, + 0.027068113569407616 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450": [ - 0.023649321869015694, - 0.02593576816763851 + 0.025169881252069023, + 0.027603337151748245 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf": [ - 0.0535019189119339, - 0.021260134687402215 + 0.05694188413645412, + 0.02262707863035987 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450": [ - 10.08425235748291, - 0.20486038682057595 + 10.73263054896661, + 0.21803211263670086 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf": [ - 1.8079869747161865, - 0.08576739561429053 + 1.9242335028014046, + 0.09128190545451642 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550": [ - 2.18241286277771, - 0.10002268419965014 + 2.3227335186752756, + 0.10645375363243673 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650": [ - 0.24499116837978363, - 0.03576931318595354 + 0.2607431473121327, + 0.03806914085507302 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf": [ - 0.3628024458885193, - 0.043254031762563976 + 0.3861292315928168, + 0.04603509771514094 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550": [ - 0.5011769533157349, - 0.05306891717630975 + 0.5334006814697649, + 0.05648104207392215 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650": [ - 0.05753546208143234, - 0.018057729215599762 + 0.061234768438324184, + 0.01921877094641533 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 0.11355482041835785, - 0.0249105426918723 + 0.12085595356011995, + 0.02651219366676571 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550": [ - 5.507924556732178, - 0.14592146217894295 + 5.8620626758831405, + 0.15530364445604888 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650": [ - 1.0291521549224854, - 0.062496527796992433 + 1.0953226343309113, + 0.06651481137722794 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf": [ - 0.5741839408874512, - 0.04356962675115599 + 0.6111017342918711, + 0.046370984233604556 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550": [ - 0.35006964206695557, - 0.034211369648777766 + 0.3725777580254274, + 0.036411027609994394 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf": [ - 0.12930983304977417, - 0.019702039714116142 + 0.13762395220523718, + 0.020968804212418247 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350": [ - 0.1702069640159607, - 0.033066816551140125 + 0.18115060957285806, + 0.035192884201325644 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450": [ - 0.06752709299325943, - 0.02927284346973667 + 0.07186882234304433, + 0.031154973412112562 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf": [ - 0.28849369287490845, - 0.03884067444611799 + 0.30704271487572005, + 0.04133797869442887 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350": [ - 1.2675755023956299, - 0.0754320779793192 + 1.3490756754057251, + 0.08028206710754608 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450": [ - 1.0725090503692627, - 0.06877769265212681 + 1.1414672094649456, + 0.07319983069423136 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf": [ - 1.7231147289276123, - 0.08508521711073917 + 1.833904301823612, + 0.09055586552735903 ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450": [ - 0.5991467237472534, - 0.051599137591132375 + 0.6376695269661122, + 0.05491676137993329 ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf": [ - 0.26127535104751587, - 0.03222344437647662 + 0.2780743395680433, + 0.034295286477164635 ], "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ - 0.36717119812965393, - 0.039937036676075004 + 0.3907788776054213, + 0.04250483275012278 ], "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ - 0.2248852252960205, - 0.0312810797915051 + 0.2393444703148781, + 0.033292331515865546 ], "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ - 0.13051795959472656, - 0.023857902167861423 + 0.1389097565865359, + 0.02539187245260092 ], "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf": [ - 0.1269502490758896, - 0.024586132424897666 + 0.1351126561623358, + 0.026166925081817338 ], "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550": [ - 0.18152160942554474, - 0.038841865519486596 + 0.19319274266004885, + 0.04133924634918094 ], "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ - 0.08243201673030853, - 0.0293310145664166 + 0.08773207468535284, + 0.031216884683980987 ], "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750": [ - 0.09149233251810074, - 0.02365533593788425 + 0.09737493352705828, + 0.02517628200216671 ], "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf": [ - 0.0695808008313179, - 0.021075293390043503 + 0.07405457560466741, + 0.022430352756748557 ], "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550": [ - 0.03060196526348591, - 0.015113254684657103 + 0.03256955256594594, + 0.01608497815928824 ], "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ - 0.06825509667396545, - 0.01505564275640672 + 0.07264363382795404, + 0.01602366200820381 ], "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750": [ - 0.040185537189245224, - 0.00994026116028044 + 0.04276931087944146, + 0.01057938127801488 ], "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf": [ - 0.014196990989148617, - 0.008080748973305322 + 0.015109802273093139, + 0.008600309692276981 ], "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550": [ - 0.028657931834459305, - 0.014171477905992474 + 0.030500525351141967, + 0.015082648797954573 ], "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650": [ - 0.019063690677285194, - 0.012128321894516701 + 0.02028941181616277, + 0.01290812580430915 ], "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750": [ - 0.011751648038625717, - 0.005364624604623474 + 0.01250723328502062, + 0.00570954909439526 ], "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf": [ - 0.018070338293910027, - 0.008356290299790403 + 0.019232190739402428, + 0.008893567253998168 ], "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ - 0.014733321964740753, - 0.01957489597411053 + 0.015680617243696873, + 0.020833485624612225 ], "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ - 0.04061374068260193, - 0.01482178710661842 + 0.04322504619139686, + 0.015774770350003298 ], "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750": [ - 0.02201605960726738, - 0.010235831869415122 + 0.023431606581472655, + 0.010893956033761119 ], "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf": [ - 0.01967557892203331, - 0.007758433961935176 + 0.020940642094356282, + 0.008257271079716395 ], "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ - 0.06615287065505981, - 0.021396024199072803 + 0.07040624285522645, + 0.022771705308921485 ], "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ - 0.04887984320521355, - 0.013132244884969084 + 0.05202262694503993, + 0.013976597137054396 ], "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750": [ - 0.01643679104745388, - 0.009291076649447751 + 0.01749361276069031, + 0.009888456728937255 ], "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf": [ - 0.003741157939657569, - 0.006906230103896088 + 0.003981699839342388, + 0.0073502738293004495 ], "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ - 1.0554897785186768, - 0.06720609542676599 + 1.1233536646517575, + 0.07152718588194021 ], "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500": [ - 0.24933451414108276, - 0.035431694729797826 + 0.26536575330709805, + 0.037709814845768734 ], "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600": [ - 0.07211492210626602, - 0.018018727958479017 + 0.07675163101801322, + 0.019177262060205078 ], "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf": [ - 0.023319480940699577, - 0.007906690177193474 + 0.02481883283538415, + 0.008415059592790907 ], "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ - 0.7455664873123169, - 0.06342416981968745 + 0.7935035116486532, + 0.06750209717277765 ], "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500": [ - 0.20798271894454956, - 0.0340432558166499 + 0.22135519856809494, + 0.036232104712546225 ], "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600": [ - 0.03896655514836311, - 0.015471848732399958 + 0.04147195303606054, + 0.016466628409108366 ], "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf": [ - 0.005842355079948902, - 0.005225111738717357 + 0.006217995780563855, + 0.005561066094018263 ], "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ - 0.10808881372213364, - 0.02525768568207159 + 0.11503850390008437, + 0.02688165660059519 ], "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500": [ - 0.08836264163255692, - 0.017729279721890603 + 0.09404401569435598, + 0.01886920342816895 ], "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf": [ - 0.014893373474478722, - 0.013255193144666054 + 0.015850959442793792, + 0.014107450491491409 ], "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ - 0.01969747245311737, - 0.018452678344132167 + 0.020963943294307234, + 0.01963911376727197 ], "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650": [ - 0.01659535989165306, - 0.011862889014058053 + 0.01766237696462295, + 0.012625626622364662 ], "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf": [ - 0.003342089708894491, - 0.01283408277005422 + 0.0035569730740079536, + 0.01365926435821877 ], "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550": [ - 0.039315115660429, - 0.011969960805991631 + 0.04184292463289745, + 0.012739582713932145 ], "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650": [ - 0.017922762781381607, - 0.009548114943498602 + 0.019075126695594892, + 0.010162021585228992 ], "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf": [ - 0.01066647469997406, - 0.00861779584971526 + 0.011352287522810048, + 0.009171886593335721 ], "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550": [ - 0.06703048199415207, - 0.01943150241285406 + 0.07134028118887364, + 0.020680872415272587 ], "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650": [ - 0.0359526202082634, - 0.015902260807454837 + 0.03826423380571929, + 0.016924714305972133 ], "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf": [ - 0.04714669659733772, - 0.012261898492205502 + 0.050178045753483065, + 0.013050290857518874 ], "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ - 0.2137969434261322, - 0.04004437426300393 + 0.22754325506226614, + 0.04261907172626968 ], "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500": [ - 0.05671633034944534, - 0.02405712742151055 + 0.06036296972299076, + 0.02560390711492803 ], "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf": [ - 0.03496382758021355, - 0.01518063626696182 + 0.037211865658810905, + 0.01615669211517161 ], "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400": [ - 0.29814043641090393, - 0.03935666986392435 + 0.3173097064882063, + 0.041887150610001374 ], "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500": [ - 0.13222822546958923, - 0.023410884395220755 + 0.14072998590296962, + 0.024916113176404884 ], "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf": [ - 0.027569465339183807, - 0.010840304538481619 + 0.02934207469514942, + 0.011537293943608687 ], "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ - 0.831436812877655, - 0.06312974207758826 + 0.884894965049597, + 0.06718873887240032 ], "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500": [ - 0.2432999163866043, - 0.036575914101839684 + 0.2589431543959967, + 0.03892760307158432 ], "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf": [ - 0.0743870958685875, - 0.019420542960933 + 0.07916989671283749, + 0.02066920831323327 ] } } diff --git a/Datacards/setup/SUSYNano19/combine_bkgPred.json b/Datacards/setup/SUSYNano19/combine_bkgPred.json index e8b351a..65d5725 100644 --- a/Datacards/setup/SUSYNano19/combine_bkgPred.json +++ b/Datacards/setup/SUSYNano19/combine_bkgPred.json @@ -533,4778 +533,5148 @@ "yieldsMap": { "ttZ": { "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550": [ - 0.35006964206695557, - 0.034211369648777766 + 0.3725777580254274, + 0.036411027609994394 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450": [ - 21.626646041870117, - 0.31294366022819975 + 23.017155238923362, + 0.33306472000160825 ], "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ - 0.04061374068260193, - 0.01482178710661842 + 0.04322504619139686, + 0.015774770350003298 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf": [ - 0.8739222288131714, - 0.0611803962339178 + 0.9301120279304875, + 0.06511405767536006 ], "bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350": [ - 0.2654668092727661, - 0.033424895767759796 + 0.2825352922493452, + 0.035573986518384434 ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450": [ - 0.5991467237472534, - 0.051599137591132375 + 0.6376695269661122, + 0.05491676137993329 ], "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400": [ - 0.29814043641090393, - 0.03935666986392435 + 0.3173097064882063, + 0.041887150610001374 ], "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 3.3314623832702637, - 0.14882440959887405 + 3.5456624526941423, + 0.15839324010049716 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650": [ - 0.03880626708269119, - 0.021040289132541377 + 0.04130135907140349, + 0.022393097861681158 ], "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf": [ - 0.1269502490758896, - 0.024586132424897666 + 0.1351126561623358, + 0.026166925081817338 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550": [ - 0.6241673231124878, - 0.07284808966893533 + 0.6642988535221365, + 0.07753193840240517 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550": [ - 3.29534649848938, - 0.11932917549394217 + 3.507224457039001, + 0.12700157720060823 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350": [ - 1.7391760349273682, - 0.12618608576591697 + 1.850998287308948, + 0.134299360124685 ], "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf": [ - 0.027569465339183807, - 0.010840304538481619 + 0.02934207469514942, + 0.011537293943608687 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650": [ - 0.14488017559051514, - 0.027081972933857345 + 0.15419540719135008, + 0.028823238424861765 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf": [ - 0.08833654224872589, - 0.026954849026590948 + 0.09401623822169027, + 0.028687940944962922 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550": [ - 0.2680058181285858, - 0.04145453887295317 + 0.28523754949599633, + 0.044119904434069 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350": [ - 5.12483549118042, - 0.14659421736519096 + 5.454342473912498, + 0.1560196551832639 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf": [ - 0.30004024505615234, - 0.033928135524523804 + 0.3193316654377018, + 0.03610958263353839 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650": [ - 1.913525104522705, - 0.09699822224104662 + 2.0365573237341223, + 0.10323483053725965 ], "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf": [ - 0.023319480940699577, - 0.007906690177193474 + 0.02481883283538415, + 0.008415059592790907 ], "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ - 0.831436812877655, - 0.06312974207758826 + 0.884894965049597, + 0.06718873887240032 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf": [ - 1.7231147289276123, - 0.08508521711073917 + 1.833904301823612, + 0.09055586552735903 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650": [ - 0.03662310913205147, - 0.016785082701358322 + 0.03897783255861561, + 0.017864298212832048 ], "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500": [ - 0.08836264163255692, - 0.017729279721890603 + 0.09404401569435598, + 0.01886920342816895 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf": [ - 0.4550040364265442, - 0.04806047208031112 + 0.484259025670949, + 0.051150573444758034 ], "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf": [ - 0.003741157939657569, - 0.006906230103896088 + 0.003981699839342388, + 0.0073502738293004495 ], "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750": [ - 0.02201605960726738, - 0.010235831869415122 + 0.023431606581472655, + 0.010893956033761119 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf": [ - 0.053887102752923965, - 0.02387643308969946 + 0.057351833799773544, + 0.02541159484061433 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf": [ - 0.005919246934354305, - 0.013731199820173342 + 0.0062998314820420865, + 0.014614062544220395 ], "bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf": [ - 0.3811417818069458, - 0.049565358600039765 + 0.405647715457395, + 0.05275221831259821 ], "bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf": [ - 0.6997315883636475, - 0.07012540881906033 + 0.7447216070287974, + 0.07463419976709908 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf": [ - 0.37179359793663025, - 0.03825269609631595 + 0.3956984797354769, + 0.040712195624399525 ], "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750": [ - 0.01643679104745388, - 0.009291076649447751 + 0.01749361276069031, + 0.009888456728937255 ], "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650": [ - 0.019063690677285194, - 0.012128321894516701 + 0.02028941181616277, + 0.01290812580430915 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350": [ - 0.01546198409050703, - 0.01802458046813658 + 0.01645612950912238, + 0.01918349086346309 ], "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ - 0.04887984320521355, - 0.013132244884969084 + 0.05202262694503993, + 0.013976597137054396 ], "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf": [ - 0.04714669659733772, - 0.012261898492205502 + 0.050178045753483065, + 0.013050290857518874 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450": [ - 1.07088303565979, - 0.09489451408960255 + 1.1397366483360378, + 0.100995862136638 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450": [ - 0.06752709299325943, - 0.02927284346973667 + 0.07186882234304433, + 0.031154973412112562 ], "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf": [ - 0.01967557892203331, - 0.007758433961935176 + 0.020940642094356282, + 0.008257271079716395 ], "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750": [ - 0.09149233251810074, - 0.02365533593788425 + 0.09737493352705828, + 0.02517628200216671 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf": [ - 0.10468856990337372, - 0.01921231642413934 + 0.11141963763320857, + 0.020447593620276993 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550": [ - 2.0561327934265137, - 0.08063270006305151 + 2.1883341321864425, + 0.08581706895704638 ], "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf": [ - 0.03496382758021355, - 0.01518063626696182 + 0.037211865658810905, + 0.01615669211517161 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf": [ - 0.04977317154407501, - 0.01754189495541224 + 0.05297339282039088, + 0.018669770550269547 ], "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ - 0.06825509667396545, - 0.01505564275640672 + 0.07264363382795404, + 0.01602366200820381 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550": [ - 0.5011769533157349, - 0.05306891717630975 + 0.5334006814697649, + 0.05648104207392215 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450": [ - 0.3753993511199951, - 0.0656940636089921 + 0.3995360688195203, + 0.06991793630119089 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf": [ - 0.2359267920255661, - 0.03063278868261487 + 0.2510959668253794, + 0.03260235781099929 ], "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf": [ - 0.0695808008313179, - 0.021075293390043503 + 0.07405457560466741, + 0.022430352756748557 ], "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750": [ - 0.011751648038625717, - 0.005364624604623474 + 0.01250723328502062, + 0.00570954909439526 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350": [ - 0.04597080871462822, - 0.031503926549316205 + 0.048926552854977524, + 0.03352950645316735 ], "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ - 1.0554897785186768, - 0.06720609542676599 + 1.1233536646517575, + 0.07152718588194021 ], "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550": [ - 0.039315115660429, - 0.011969960805991631 + 0.04184292463289745, + 0.012739582713932145 ], "bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350": [ - 0.3880228102207184, - 0.049785858737519624 + 0.41297116722594995, + 0.05298689575101154 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450": [ - 0.11133278906345367, - 0.030792078885810457 + 0.11849105423441933, + 0.03277188975450519 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650": [ - 1.3028558492660522, - 0.07140504990068121 + 1.3866244113136146, + 0.07599611679153033 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550": [ - 0.6341158151626587, - 0.047686497459529034 + 0.6748869949042375, + 0.05075255371089391 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf": [ - 0.12930983304977417, - 0.019702039714116142 + 0.13762395220523718, + 0.020968804212418247 ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf": [ - 0.26127535104751587, - 0.03222344437647662 + 0.2780743395680433, + 0.034295286477164635 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350": [ - 0.11003506183624268, - 0.02266876596915687 + 0.11710988819560483, + 0.02412627942292746 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550": [ - 5.223089218139648, - 0.14407857421618628 + 5.558913533236489, + 0.15334226596746633 ], "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650": [ - 0.01659535989165306, - 0.011862889014058053 + 0.01766237696462295, + 0.012625626622364662 ], "bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350": [ - 1.2727633714675903, - 0.09025406035866974 + 1.3545971042744154, + 0.09605704528555842 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450": [ - 0.017154261469841003, - 0.024640994577828562 + 0.01825721373975328, + 0.02622531465772787 ], "bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450": [ - 0.6574841141700745, - 0.07543661799112873 + 0.6997577846180898, + 0.080286899024451 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350": [ - 0.7394909262657166, - 0.08086160904078767 + 0.7870373156651236, + 0.08606069589142797 ], "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550": [ - 0.06703048199415207, - 0.01943150241285406 + 0.07134028118887364, + 0.020680872415272587 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350": [ - 0.3464701175689697, - 0.036800361170747205 + 0.3687467981069988, + 0.039166481213759666 ], "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750": [ - 0.040185537189245224, - 0.00994026116028044 + 0.04276931087944146, + 0.01057938127801488 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550": [ - 6.886341094970703, - 0.17930503330941502 + 7.3291060344839245, + 0.19083364932375102 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550": [ - 0.01988723687827587, - 0.01679604605815395 + 0.021165908833681295, + 0.017875966470814172 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf": [ - 0.3628024458885193, - 0.043254031762563976 + 0.3861292315928168, + 0.04603509771514094 ], "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600": [ - 0.03896655514836311, - 0.015471848732399958 + 0.04147195303606054, + 0.016466628409108366 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf": [ - 0.04535109922289848, - 0.015167557997453524 + 0.04826699845405182, + 0.01614277296381795 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf": [ - 0.10319250822067261, - 0.027293827819142674 + 0.10982738500508174, + 0.029048714755000794 ], "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ - 0.2137969434261322, - 0.04004437426300393 + 0.22754325506226614, + 0.04261907172626968 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450": [ - 0.023649321869015694, - 0.02593576816763851 + 0.025169881252069023, + 0.027603337151748245 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550": [ - 5.507924556732178, - 0.14592146217894295 + 5.8620626758831405, + 0.15530364445604888 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf": [ - 0.15120594203472137, - 0.025432878438287062 + 0.16092789580606995, + 0.027068113569407616 ], "bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550": [ - 0.5425239205360413, - 0.06069406342320928 + 0.5774060978124543, + 0.0645964555571126 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650": [ - 0.43139100074768066, - 0.04649581050484055 + 0.4591277636698792, + 0.049485310217660325 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350": [ - 1.2675755023956299, - 0.0754320779793192 + 1.3490756754057251, + 0.08028206710754608 ], "bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf": [ - 0.4687436819076538, - 0.04750423086552744 + 0.4988820768992441, + 0.05055856808404811 ], "bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf": [ - 0.03151698783040047, - 0.013543109506377446 + 0.03354340752380741, + 0.014413878755056037 ], "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500": [ - 0.05671633034944534, - 0.02405712742151055 + 0.06036296972299076, + 0.02560390711492803 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450": [ - 1.0066838264465332, - 0.08697130924796083 + 1.0714096797521533, + 0.09256322605072892 ], "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500": [ - 0.24933451414108276, - 0.035431694729797826 + 0.26536575330709805, + 0.037709814845768734 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450": [ - 2.3021183013916016, - 0.09091549562489737 + 2.450135551250508, + 0.0967610082659385 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf": [ - 1.8079869747161865, - 0.08576739561429053 + 1.9242335028014046, + 0.09128190545451642 ], "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf": [ - 0.01066647469997406, - 0.00861779584971526 + 0.011352287522810048, + 0.009171886593335721 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550": [ - 0.22142021358013153, - 0.034353001681531936 + 0.23565667182708228, + 0.03656176603140267 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450": [ - 10.08425235748291, - 0.20486038682057595 + 10.73263054896661, + 0.21803211263670086 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650": [ - 0.3392031192779541, - 0.04073088777740538 + 0.3610125600997986, + 0.043349725388608464 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450": [ - 1.1791319847106934, - 0.06358937859386794 + 1.2549455836434886, + 0.06767792822835524 ], "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ - 0.7455664873123169, - 0.06342416981968745 + 0.7935035116486532, + 0.06750209717277765 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350": [ - 33.381439208984375, - 0.37056669018228433 + 35.52773587195749, + 0.3943926865860933 ], "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ - 0.10808881372213364, - 0.02525768568207159 + 0.11503850390008437, + 0.02688165660059519 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf": [ - 1.1698659658432007, - 0.06862876083137576 + 1.2450837958143932, + 0.0730413231368595 ], "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf": [ - 0.0743870958685875, - 0.019420542960933 + 0.07916989671283749, + 0.02066920831323327 ], "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500": [ - 0.20798271894454956, - 0.0340432558166499 + 0.22135519856809494, + 0.036232104712546225 ], "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ - 0.06615287065505981, - 0.021396024199072803 + 0.07040624285522645, + 0.022771705308921485 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf": [ - 0.0535019189119339, - 0.021260134687402215 + 0.05694188413645412, + 0.02262707863035987 ], "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500": [ - 0.2432999163866043, - 0.036575914101839684 + 0.2589431543959967, + 0.03892760307158432 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350": [ - 0.4493263363838196, - 0.03833008797223672 + 0.47821627160587465, + 0.04079456349683111 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550": [ - 0.6398507952690125, - 0.0545601886652161 + 0.6809907119181712, + 0.05806819651743056 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350": [ - 4.648128986358643, - 0.1262334954176977 + 4.946985595566946, + 0.13434981803261709 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350": [ - 0.16234685480594635, - 0.04045380967150649 + 0.17278512592220194, + 0.04305483223853635 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf": [ - 0.6234725117683411, - 0.05477163695152026 + 0.6635593685118844, + 0.0582932401058559 ], "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 8.907203674316406, - 0.23655532512188787 + 9.479902215051037, + 0.2517649121543421 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550": [ - 0.03375447541475296, - 0.027076198371558502 + 0.035924756854373865, + 0.028817092580674365 ], "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650": [ - 0.0359526202082634, - 0.015902260807454837 + 0.03826423380571929, + 0.016924714305972133 ], "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ - 0.13051795959472656, - 0.023857902167861423 + 0.1389097565865359, + 0.02539187245260092 ], "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf": [ - 0.018070338293910027, - 0.008356290299790403 + 0.019232190739402428, + 0.008893567253998168 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf": [ - 0.11366301029920578, - 0.025232526762193057 + 0.12097109962936879, + 0.02685488006005503 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350": [ - 0.27739524841308594, - 0.03353995036981855 + 0.29523068361605237, + 0.035696438683709183 ], "bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf": [ - 0.026738043874502182, - 0.01732222269458025 + 0.02845719606512515, + 0.018435974217751498 ], "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ - 0.2248852252960205, - 0.0312810797915051 + 0.2393444703148781, + 0.033292331515865546 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550": [ - 0.2850969433784485, - 0.034362405672305266 + 0.3034275676024727, + 0.036571774662194335 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650": [ - 1.452848196029663, - 0.081209327880301 + 1.546260682394413, + 0.08643077169944191 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf": [ - 0.28849369287490845, - 0.03884067444611799 + 0.30704271487572005, + 0.04133797869442887 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550": [ - 2.18241286277771, - 0.10002268419965014 + 2.3227335186752756, + 0.10645375363243673 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf": [ - 0.7408045530319214, - 0.05415821315030542 + 0.7884354035214284, + 0.057640375540889285 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf": [ - 0.6284668445587158, - 0.05555963116399255 + 0.6688748174690802, + 0.05913189928031749 ], "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 0.6995377540588379, - 0.07719509779774868 + 0.7445153099323455, + 0.08215844224086659 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650": [ - 0.24499116837978363, - 0.03576931318595354 + 0.2607431473121327, + 0.03806914085507302 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf": [ - 0.5092967748641968, - 0.053930869093974806 + 0.5420425759517603, + 0.05739841414627094 ], "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ - 0.36717119812965393, - 0.039937036676075004 + 0.3907788776054213, + 0.04250483275012278 ], "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 0.23423774540424347, - 0.04957435988040838 + 0.24929832107792993, + 0.05276179834027297 ], "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf": [ - 0.005842355079948902, - 0.005225111738717357 + 0.006217995780563855, + 0.005561066094018263 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450": [ - 14.873788833618164, - 0.24803174737007266 + 15.83011558572445, + 0.2639792237014257 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350": [ - 1.2266491651535034, - 0.10910155813140393 + 1.3055179339122551, + 0.11611636383455577 ], "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 1.9776990413665771, - 0.11541232571965339 + 2.1048573950335987, + 0.12283288922523733 ], "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf": [ - 0.014196990989148617, - 0.008080748973305322 + 0.015109802273093139, + 0.008600309692276981 ], "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ - 0.014733321964740753, - 0.01957489597411053 + 0.015680617243696873, + 0.020833485624612225 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650": [ - 0.05753546208143234, - 0.018057729215599762 + 0.061234768438324184, + 0.01921877094641533 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf": [ - 0.07754585146903992, - 0.01608876079838745 + 0.08253174800853406, + 0.017123205520700614 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf": [ - 0.2826254367828369, - 0.03185383982009514 + 0.3007971527487279, + 0.033901917785839335 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf": [ - 0.19313590228557587, - 0.02415318686136179 + 0.20555378936290314, + 0.025706142803020367 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450": [ - 1.0725090503692627, - 0.06877769265212681 + 1.1414672094649456, + 0.07319983069423136 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf": [ - 0.07075940817594528, - 0.015755605757470988 + 0.07530896281591147, + 0.016768629906869514 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550": [ - 8.586254119873047, - 0.19874573653963104 + 9.138316852985007, + 0.21152431413314404 ], "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 7.407715320587158, - 0.21846820181939494 + 7.884002594281214, + 0.23251485719561082 ], "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650": [ - 0.017922762781381607, - 0.009548114943498602 + 0.019075126695594892, + 0.010162021585228992 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550": [ - 2.2226932048797607, - 0.10408990558168267 + 2.3656037300545556, + 0.11078248152487398 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550": [ - 0.043938782066106796, - 0.02226880643476544 + 0.04676387479902307, + 0.023700604046609196 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550": [ - 3.7807083129882812, - 0.14332787989682066 + 4.023793147798444, + 0.15254330492411436 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350": [ - 0.010125728324055672, - 0.015482320395201416 + 0.010776773258818215, + 0.016477773359085547 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450": [ - 0.03399161249399185, - 0.01215149470346263 + 0.036177140925171485, + 0.012932788534711161 ], "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550": [ - 0.03060196526348591, - 0.015113254684657103 + 0.03256955256594594, + 0.01608497815928824 ], "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 0.6215517520904541, - 0.07184875191166747 + 0.6615151114598664, + 0.07646834711549831 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650": [ - 1.0291521549224854, - 0.062496527796992433 + 1.0953226343309113, + 0.06651481137722794 ], "bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf": [ - 0.22425758838653564, - 0.029176707735502915 + 0.23867647879407908, + 0.03105265652420576 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650": [ - 0.2302793711423874, - 0.047922144627607154 + 0.2450854387520017, + 0.05100335207503996 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350": [ - 0.0593348927795887, - 0.016559374096276194 + 0.06314989552927312, + 0.017624077422614362 ], "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550": [ - 0.028657931834459305, - 0.014171477905992474 + 0.030500525351141967, + 0.015082648797954573 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550": [ - 0.7602046728134155, - 0.08012231656958414 + 0.8090828755242461, + 0.0852738697907134 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 0.18908926844596863, - 0.03738926386038643 + 0.20124697271176856, + 0.03979324805508138 ], "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf": [ - 0.014893373474478722, - 0.013255193144666054 + 0.015850959442793792, + 0.014107450491491409 ], "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ - 0.08243201673030853, - 0.0293310145664166 + 0.08773207468535284, + 0.031216884683980987 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550": [ - 0.5211459398269653, - 0.06361196690960116 + 0.5546535961197341, + 0.06770196888490507 ], "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ - 0.01969747245311737, - 0.018452678344132167 + 0.020963943294307234, + 0.01963911376727197 ], "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500": [ - 0.13222822546958923, - 0.023410884395220755 + 0.14072998590296962, + 0.024916113176404884 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf": [ - 0.019948668777942657, - 0.0063108158924519014 + 0.021231290565481724, + 0.006716576800656294 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 0.11355482041835785, - 0.0249105426918723 + 0.12085595356011995, + 0.02651219366676571 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450": [ - 0.07103411853313446, - 0.0173531104714661 + 0.0756013359802441, + 0.01846884795851511 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350": [ - 0.13147179782390594, - 0.03983179652538575 + 0.13992492290272457, + 0.042392826067205215 ], "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550": [ - 0.18152160942554474, - 0.038841865519486596 + 0.19319274266004885, + 0.04133924634918094 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350": [ - 1.9369696378707886, - 0.08046571642113533 + 2.06150924936014, + 0.08563934891664325 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550": [ - 0.01483194436877966, - 0.020951953242156963 + 0.01578558068460234, + 0.02229908231723612 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550": [ - 2.933406352996826, - 0.10652513041099711 + 3.1220129684026325, + 0.11337428183591121 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf": [ - 0.8157047033309937, - 0.05604642120303151 + 0.8681513420684746, + 0.059649988024898085 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf": [ - 0.5741839408874512, - 0.04356962675115599 + 0.6111017342918711, + 0.046370984233604556 ], "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600": [ - 0.07211492210626602, - 0.018018727958479017 + 0.07675163101801322, + 0.019177262060205078 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ - 0.1461845338344574, - 0.026337993031062264 + 0.15558363059547217, + 0.02803142350894183 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf": [ - 1.2764142751693726, - 0.09199837612039637 + 1.358482746879542, + 0.09791351376410252 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350": [ - 55.043800354003906, - 0.5012145563211905 + 58.58290255620496, + 0.5334407022021683 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf": [ - 0.6940189599990845, - 0.048701227216387484 + 0.7386416788866871, + 0.05183252664307892 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550": [ - 0.5050531029701233, - 0.05371907835971143 + 0.5375260524658791, + 0.05717300609181498 ], "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 2.6664648056030273, - 0.13435004523174646 + 2.83790811810888, + 0.1429882304204059 ], "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf": [ - 0.003342089708894491, - 0.01283408277005422 + 0.0035569730740079536, + 0.01365926435821877 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350": [ - 0.1702069640159607, - 0.033066816551140125 + 0.18115060957285806, + 0.035192884201325644 ] }, - "diboson": { - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550": [ - 0.015483902767300606, - 0.006606518025232091 - ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450": [ - 6.159729957580566, - 0.8828244385044863 - ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ - 1.9482613801956177, - 0.8178425021193507 + "ttbarplusw": { + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt250to350": [ + 214.729495274632, + 4.46662174732968 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf": [ - 0.3257027566432953, - 0.0981672244307407 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt250to350": [ + 12.5228451283128, + 1.02759506434423 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350": [ - 0.03711169585585594, - 0.036996803451378686 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt450to550": [ + 0.665186170385208, + 0.235086950310294 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450": [ - 0.021677212789654732, - 0.005825728145664449 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450": [ + 401.226913421695, + 6.76586666137696 ], - "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400": [ - 2.979671001434326, - 0.5329208408863624 + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt350to450": [ + 0.0335869053310565, + 0.0158466772116194 ], - "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 2.9931888580322266, - 0.5259469607309544 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350": [ + 46.3287371996352, + 2.1463001567683 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650": [ - 0.02278560772538185, - 0.009440597067533146 + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt250to350": [ + 0.3089753232541, + 0.159846598440273 ], - "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf": [ - 59.0098876953125, - 4.168449656397232 + "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650": [ + 9.13577635285698, + 0.932425089751306 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550": [ - 2.5849757194519043, - 0.43090462374029753 + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt350to450": [ + 63.9414474399727, + 2.03905066298236 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550": [ - 0.6567659378051758, - 0.1554770086326998 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt650toinf": [ + 1e-06, + 1e-06 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350": [ - 6.634438514709473, - 1.1186134162486263 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt350to450": [ + 6.15591620074559, + 0.806842234053552 ], - "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf": [ - 0.07114514708518982, - 0.028469177900412666 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt450to550": [ + 0.208258611970768, + 0.104169180748911 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650": [ - 0.006026467774063349, - 0.003287832977518295 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt650toinf": [ + 1e-06, + 1e-06 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf": [ - 0.07337843626737595, - 0.02559514933936489 + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt450to550": [ + 1e-06, + 1e-06 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550": [ - 0.10191229730844498, - 0.015465148474460793 + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt250to350": [ + 1e-06, + 1e-06 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350": [ - 3.585127115249634, - 0.3869912934896839 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt650toinf": [ + 1e-06, + 1e-06 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf": [ - 0.041208356618881226, - 0.013202610148819512 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt350to450": [ + 0.0363169984468997, + 0.0327392874126047 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650": [ - 1.0259965658187866, - 0.2070949610975621 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt250to350": [ + 2.58790885453117, + 0.483532674904708 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf": [ - 0.09867622703313828, - 0.02686833993046688 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt350to450": [ + 0.00969927301663271, + 0.00847120082993676 ], - "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ - 5.687530994415283, - 0.4100112170738605 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt450to550": [ + 1e-06, + 1e-06 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf": [ - 0.015571453608572483, - 0.009439546974047903 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt450to550": [ + 0.0805488010785465, + 0.0808450805924587 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650": [ - 0.012765958905220032, - 0.008297992995092669 + 0.328611891424795, + 0.175133738931433 ], - "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500": [ - 0.2955629825592041, - 0.11458368916739385 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt250to350": [ + 52.7977487243188, + 2.32791863181093 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf": [ - 0.4501071572303772, - 0.3874595961043159 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt550to650": [ + 1e-06, + 1e-06 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf": [ - 0.13550347089767456, - 0.035445778601832144 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt550to650": [ + 1e-06, + 1e-06 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750": [ - 0.7264294624328613, - 0.25260587327251727 + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt450to550": [ + 0.00228258759217645, + 0.00138926111446505 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf": [ - 0.062292493879795074, - 0.0292908480605644 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt450to550": [ + 1e-06, + 1e-06 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf": [ - 0.003514881245791912, - 0.0016768308472776836 + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt650toinf": [ + 1e-06, + 1e-06 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf": [ - 0.03553938493132591, - 0.008237649661571216 + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt250to350": [ + 0.0225365447569472, + 0.0134908938070681 ], - "bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf": [ - 1.4225674867630005, - 0.3076860179847195 + "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ + 1236.07889861506, + 20.4320978044065 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf": [ - 0.06546011567115784, - 0.01851134110076937 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt250to350": [ + 0.23627762621645, + 0.119638961803065 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750": [ - 0.8288958668708801, - 0.48615669881188345 + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt550to650": [ + 12.0443307996124, + 0.783704440207258 ], - "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650": [ - 0.235236257314682, - 0.1429055005730952 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt250to350": [ + 13.0120194687281, + 1.46509194279542 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350": [ - 0.06046168878674507, - 0.03804752869922294 + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ + 10.5537192595657, + 0.674844741445349 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ - 0.6920053362846375, - 0.2187028488148702 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt550to650": [ + 0.0301743867761975, + 0.0230311956843815 ], - "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf": [ - 0.2609175443649292, - 0.053134848599834396 + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt550toinf": [ + 0.187232074326644, + 0.12212691409319 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450": [ - 3.970709800720215, - 0.6990414224495174 + "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500": [ + 18.3665213776671, + 1.30384295862709 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450": [ - 0.0028684730641543865, - 0.0015595923749998938 + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt550to650": [ + 1e-06, + 1e-06 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf": [ - 0.38356107473373413, - 0.1384044460665349 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt450to550": [ + 1e-06, + 1e-06 ], - "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750": [ - 4.582530975341797, - 1.1475851973467375 + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt450to550": [ + 1e-06, + 1e-06 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf": [ - 0.004952816758304834, - 0.0026333566703386955 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt250to350": [ + 0.559426708423644, + 0.237675318743914 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550": [ - 0.3125235438346863, - 0.11940397710865455 + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt450to550": [ + 1e-06, + 1e-06 ], - "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf": [ - 0.026390094310045242, - 0.009323039678804318 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450": [ + 3.72347059413077, + 0.559251217298512 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf": [ - 0.027011550962924957, - 0.014199580543983582 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt250to350": [ + 0.252813378362943, + 0.134480352135847 ], - "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ - 1.8644421100616455, - 0.40430263741825945 + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt250to350": [ + 0.00997724364381121, + 0.00455471923087201 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550": [ - 0.07667200267314911, - 0.05973607093952754 + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt350to450": [ + 0.00342978577737835, + 0.0021297566475547 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450": [ - 0.1501055210828781, - 0.05452963947682229 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550": [ + 12.010326640649, + 1.06909284723467 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf": [ - 0.007389694452285767, - 0.007312691383851847 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt250to350": [ + 0.122906991482153, + 0.083354282081159 ], - "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf": [ - 2.2859065532684326, - 0.3613323764017507 + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt350to450": [ + 1e-06, + 1e-06 ], - "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750": [ - 0.034480269998311996, - 0.015415623842867382 + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt250to350": [ + 0.0516756821183801, + 0.0380885411107625 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350": [ - 0.05485868826508522, - 0.01266809341128866 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350": [ + 9.13338527703416, + 0.931962410627294 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ - 45.25332260131836, - 2.925590624812586 + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt250to350": [ + 0.00578367543227639, + 0.0042629676173198 ], - "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550": [ - 0.4563426971435547, - 0.2243779471799549 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt550to650": [ + 0.915370076011414, + 0.263875511419589 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350": [ - 0.2188977301120758, - 0.11514963281929526 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt550to650": [ + 0.0105603055624684, + 0.00778367340438506 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450": [ - 0.016708165407180786, - 0.006643099351738649 + "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750": [ + 9.44881069788386, + 0.649472359559195 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650": [ - 0.23415082693099976, - 0.062432829354040986 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt450to550": [ + 0.0233688643737969, + 0.00762160480962061 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550": [ - 0.14551430940628052, - 0.08897750473568133 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt550to650": [ + 1e-06, + 1e-06 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf": [ - 0.002132492372766137, - 0.0011445933294798407 + "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt350to450": [ + 4.68063093206762, + 0.595649758605991 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf": [ + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt650toinf": [ + 0.155391080281974, + 0.0646430262088115 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt450to550": [ 1e-06, 1e-06 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350": [ - 0.30000126361846924, - 0.08273397509404434 + "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt550toinf": [ + 1e-06, + 1e-06 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550": [ - 1.1007614135742188, - 0.4065920824480654 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt250to350": [ + 16.2266335854892, + 1.20712147672053 ], - "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650": [ - 0.05830053240060806, - 0.015871370475274506 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt350to450": [ + 0.111607923868968, + 0.0714147021779036 ], - "bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350": [ - 1.839701771736145, - 0.36721997177080223 + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt250to350": [ + 1.34521504760931, + 0.371109560334059 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450": [ - 0.011929214932024479, - 0.02199479281054961 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt650toinf": [ + 1e-06, + 1e-06 ], - "bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450": [ - 1.103358507156372, - 0.2924392454594268 + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt650toinf": [ + 1e-06, + 1e-06 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350": [ - 0.464893102645874, - 0.12599475546555391 + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt250to350": [ + 0.0135086976399845, + 0.00748409030048426 ], - "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550": [ - 0.5772325992584229, - 0.11477417935125758 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt550to650": [ + 0.0207102469363897, + 0.00956802667483779 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350": [ - 0.1658487319946289, - 0.015655241769902427 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt450to550": [ + 0.0685571792818455, + 0.0678669440844079 ], - "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750": [ - 2.4189612865448, - 0.7815624376892094 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt250to350": [ + 11.0539129812538, + 0.882666979977671 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550": [ - 2.9653396606445312, - 0.713767100661139 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt650toinf": [ + 1e-06, + 1e-06 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550": [ - 0.03429132699966431, - 0.06803149184874815 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt650toinf": [ + 0.00355449537163473, + 0.00251340778097912 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf": [ - 0.008720971643924713, - 0.00926132344699189 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt250to350": [ + 12.0889484377261, + 1.06130749249143 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600": [ - 0.4527864456176758, - 0.2033755720181134 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt350to450": [ + 5.32291198469415, + 0.652048575843819 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf": [ - 0.029989417642354965, - 0.01506249395911023 + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ + 5.08048935524026, + 0.466365983538898 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf": [ - 0.09519509971141815, - 0.07466759559119288 + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt450to550": [ + 0.00774856829343153, + 0.00629722236214793 ], - "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ - 0.4699110984802246, - 0.1471567413672499 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt450to550": [ + 0.684534374707337, + 0.206764534184026 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450": [ - 0.03144028037786484, - 0.07345513587510827 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt650toinf": [ + 0.0323106928283041, + 0.0107286167906608 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550": [ - 1.7218912839889526, - 0.3001844757619814 + "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ + 786.12693080679, + 8.63375149056391 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf": [ - 0.0009819065453484654, - 0.0009819065229165925 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt450to550": [ + 0.379237327359641, + 0.148943983159391 ], - "bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550": [ - 0.8723913431167603, - 0.27599614626973995 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt350to450": [ + 0.904894809521667, + 0.313227984467957 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650": [ - 0.48680153489112854, - 0.29218288541430587 + "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650": [ + 11.8215877913726, + 1.03066794639736 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350": [ - 0.06282573193311691, - 0.04924226698849888 + "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt550toinf": [ + 1e-06, + 1e-06 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf": [ - 0.04024767130613327, - 0.04104820198065654 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt450to550": [ + 2.05331998401141, + 0.378512483331511 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf": [ - 0.005625532940030098, - 0.003268626296238382 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt650toinf": [ + 0.00489028315958939, + 0.00718396217229457 ], - "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500": [ - 0.3803560137748718, - 0.15800222502417952 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt350to450": [ + 1e-06, + 1e-06 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450": [ - 0.44366592168807983, - 0.20894346588202692 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt250to350": [ + 2.58233441478015, + 0.505339614316152 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500": [ - 7.46815299987793, - 1.132808676674466 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt250to350": [ + 0.0168617406211529, + 0.0114524119435749 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450": [ - 4.3292107582092285, - 0.9325536393414188 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt450to550": [ + 1e-06, + 1e-06 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf": [ - 0.07844755798578262, - 0.031247868688133618 + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt350to550": [ + 0.738932477348612, + 0.263175052493269 ], - "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf": [ - 0.10379357635974884, - 0.03391281677170746 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ + 2.58092890015701, + 0.335802034073554 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550": [ - 0.06491384655237198, - 0.05119895644286061 + "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ + 3042.6495812168, + 20.093111774872 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450": [ - 0.3696509301662445, - 0.1090786627597388 + "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750": [ + 24.0839860085654, + 1.00663968970182 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650": [ - 0.06939700245857239, - 0.03541761258074815 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt550to650": [ + 0.358476691818715, + 0.155733495444778 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450": [ - 0.3051089346408844, - 0.13544538660543318 + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt350to550": [ + 0.282002805657338, + 0.120674683674448 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ - 22.85711669921875, - 2.1470545637305896 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt650toinf": [ + 0.2989140483658, + 0.151159229721506 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350": [ - 6.267366886138916, - 0.5810381399297326 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ + 0.713470873341037, + 0.111737624506525 ], - "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ - 3.0888543128967285, - 0.813200864286471 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt250to350": [ + 38.1676221273871, + 2.17494634803431 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf": [ - 1.1820456981658936, - 0.27684641296142204 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt650toinf": [ + 1e-06, + 1e-06 ], - "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf": [ - 0.6006410121917725, - 0.3317086933336043 + "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ + 89.8141392706594, + 5.26015267101784 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500": [ - 9.329036712646484, - 1.7982574452056104 + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt250to350": [ + 0.265759879678517, + 0.148765736612221 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ - 3.6150155067443848, - 0.8276904304429195 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt350to450": [ + 0.0170399053016135, + 0.00790680266760792 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf": [ + "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650": [ + 3.28905854642157, + 0.430242438818133 + ], + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt250to350": [ 1e-06, 1e-06 ], - "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500": [ - 1.3700628280639648, - 0.15273644417798826 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt550to650": [ + 1e-06, + 1e-06 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350": [ - 0.28236961364746094, - 0.07706228005410648 + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt550to650": [ + 1e-06, + 1e-06 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550": [ - 0.19840580224990845, - 0.023986104464755107 + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt450to550": [ + 0.0665883748656922, + 0.0537052260094119 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350": [ - 5.615801811218262, - 0.7910051805802575 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt450to550": [ + 0.667881431724111, + 0.252145994012174 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350": [ - 0.30573636293411255, - 0.1390520969668174 + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt250to350": [ + 10.1756461543494, + 1.00741477320465 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf": [ - 0.13334175944328308, - 0.05315295247387372 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt350to450": [ + 5.61819102305719, + 0.744382661738062 ], - "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 8.405059814453125, - 0.682346950028464 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt250to350": [ + 10.464421004544, + 0.942546892676485 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550": [ - 0.019096795469522476, - 0.05869379935503737 + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt250to350": [ + 57.2907341315756, + 1.77811148011252 ], - "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650": [ - 0.6935058236122131, - 0.250230555044673 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt650toinf": [ + 0.0126665692811712, + 0.00584802092159043 ], - "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ - 62.887535095214844, - 4.052641687512661 + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt250to350": [ + 0.0992910378172715, + 0.0728338635169543 ], - "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf": [ - 0.03923215717077255, - 0.034007713840693725 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf": [ + 1.6323863427393, + 0.378047964051182 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf": [ - 0.1906137466430664, - 0.08658489961105557 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt650toinf": [ + 1e-06, + 1e-06 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350": [ - 0.21306976675987244, - 0.06543021161366164 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt350to450": [ + 0.00130986098485087, + 0.00130986098485087 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf": [ - 0.080062635242939, - 0.05657374946274187 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt550to650": [ + 0.00577079359392755, + 0.0042534728141664 ], - "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ - 131.6018524169922, - 5.753110109570818 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt550to650": [ + 1e-06, + 1e-06 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550": [ - 0.3640643060207367, - 0.2023738362349018 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt650toinf": [ + 0.203073075106472, + 0.0704551560737235 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650": [ - 0.1569748967885971, - 0.0423339254801384 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt550to650": [ + 0.157495457095056, + 0.111691604373952 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt550to650": [ 1e-06, 1e-06 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550": [ - 0.30400902032852173, - 0.08085527614707619 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt350to450": [ + 0.716226211925791, + 0.19785343784267 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf": [ - 0.1643502116203308, - 0.09980449222209585 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt550to650": [ + 0.0354165941028566, + 0.0298529599616482 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf": [ - 0.011286508291959763, - 0.009018027228376349 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt350to450": [ + 0.869568693465606, + 0.352685449649896 ], - "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 0.27439266443252563, - 0.16009864743095018 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt550to650": [ + 1e-06, + 1e-06 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650": [ - 0.014752641320228577, - 0.005863111911769016 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550": [ + 0.0903266209825483, + 0.0733991459424049 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf": [ - 0.5923924446105957, - 0.16968955168780225 + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt550to650": [ + 3.56979538146872, + 0.343366400614647 ], - "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ - 196.6719207763672, - 6.853422358602135 + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt350to550": [ + 0.152355058641565, + 0.10949127995846 ], - "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 0.4672181010246277, - 0.17312646821762112 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf": [ + 1.05866192381518, + 0.269955701985253 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf": [ - 0.07844939082860947, - 0.06882786123309147 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt250to350": [ + 0.0976074239357444, + 0.0654385250151451 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450": [ - 2.834980010986328, - 0.632939741887296 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt350to450": [ + 4.97103000662263, + 0.702130280611547 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350": [ - 0.8218334317207336, - 0.2061461822776936 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt450to550": [ + 0.130696222459846, + 0.0980958789157232 ], - "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 0.8670873641967773, - 0.22568184286202658 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to350": [ + 242.380769656415, + 5.15229536687631 ], - "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf": [ - 1.2364739179611206, - 0.5685934231855955 + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt450to550": [ + 1e-06, + 1e-06 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ - 3.8715155124664307, - 0.9078147817536585 + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt550toinf": [ + 0.109667935769453, + 0.0808328310116599 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650": [ - 0.027383938431739807, - 0.01711326013827249 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt650toinf": [ + 1e-06, + 1e-06 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf": [ - 0.012716304510831833, - 0.0076633795576321615 + "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf": [ + 4.72946461234821, + 0.648611333643023 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf": [ - 0.030764292925596237, - 0.054959708474045285 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt350to450": [ + 0.00328759220467148, + 0.00232467874169924 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf": [ - 0.06559186428785324, - 0.026040791622087407 + "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550": [ + 6.65982811182515, + 0.684946979488119 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450": [ - 0.027526605874300003, - 0.006822493846143996 + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt550to650": [ + 1e-06, + 1e-06 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf": [ - 0.01024005189538002, - 0.00892289992966824 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt550to650": [ + 0.0331658247178597, + 0.028173270236298 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550": [ - 3.675601005554199, - 0.6990209580821807 + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt450to550": [ + 0.00137788139108674, + 0.0053593193273253 ], - "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 5.914949417114258, - 0.7389385697490367 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt350to450": [ + 0.000126171701497643, + 8.92168657228279e-05 ], - "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650": [ - 0.1329939067363739, - 0.027902716697221643 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650": [ + 1.24956854760658, + 0.354620381863576 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550": [ - 0.3353332281112671, - 0.11885142105225491 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt450to550": [ + 1e-06, + 1e-06 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550": [ - 0.06170230358839035, - 0.07272175803315209 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt550to650": [ + 0.00207526688974882, + 0.00160380331828936 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550": [ - 0.4110850393772125, - 0.21720674323029412 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650": [ + 1.54571071984716, + 0.360596577821155 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350": [ - 0.020051244646310806, - 0.024611572393564304 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf": [ + 0.825185401800182, + 0.22155148447079 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450": [ - 0.2927207946777344, - 0.2610733112407287 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt550to650": [ + 0.0799924464437298, + 0.0525428497481117 ], - "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550": [ - 6.444501876831055, - 1.3240577374603515 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt450to550": [ + 1e-06, + 1e-06 ], - "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 0.12681768834590912, - 0.15087658624261524 + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt250to350": [ + 0.18489290882229, + 0.116889356081022 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650": [ - 0.04643092304468155, - 0.022393220047978182 + "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf": [ + 5.540079939819, + 0.486938771167229 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf": [ - 0.03196578100323677, - 0.029365715812373093 + "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt450to550": [ + 1e-06, + 1e-06 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650": [ - 0.1815764307975769, - 0.07994139491732141 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to450": [ + 2.12421231821223, + 0.466872284491439 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350": [ - 0.08370210230350494, - 0.05613827303939795 + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt550to650": [ + 1e-06, + 1e-06 ], - "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550": [ - 0.1592208743095398, - 0.05890603368854752 + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt350to450": [ + 0.688279819884231, + 0.253670671729121 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550": [ - 0.19809268414974213, - 0.1403710842475532 + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt550toinf": [ + 1e-06, + 1e-06 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 0.015038743615150452, - 0.015136152282391893 + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt450to550": [ + 1e-06, + 1e-06 ], - "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf": [ - 0.3800194561481476, - 0.21048270131414848 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt650toinf": [ + 1e-06, + 1e-06 ], - "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ - 6.496616840362549, - 1.4151653613590978 + "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf": [ + 6.91886182020334, + 0.763267891256008 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550": [ - 0.41919881105422974, - 0.22768118610569457 + "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ + 0.413743751123844, + 0.165916461642167 ], - "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ - 0.16949093341827393, - 0.11771223725043578 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf": [ + 1.31330264146248, + 0.377667045996063 ], - "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500": [ - 0.7895978689193726, - 0.14256335993966032 + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt350to550": [ + 1e-06, + 1e-06 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf": [ - 0.00277153542265296, - 0.0021178693088978197 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt350to450": [ + 4.94583206177069, + 0.588654472216838 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 0.010009100660681725, - 0.010009100785576075 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt250to350": [ + 0.445141192461082, + 0.184703758361242 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450": [ - 0.19864925742149353, - 0.08662795033981793 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt250to350": [ + 0.23836171757162, + 0.133712956325492 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350": [ - 0.06839663535356522, - 0.017524187720148642 + "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf": [ + 29.4337594635522, + 0.775939481768996 ], - "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550": [ - 9.380876541137695, - 1.4115378657082234 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt350to450": [ + 0.00360829742626035, + 0.0513357813471813 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350": [ - 1.0853462219238281, - 0.2602196106442013 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt450to550": [ + 1.86540472811406, + 0.397363393422681 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550": [ - 0.0033204301726073027, - 0.0012696048334307891 + "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600": [ + 14.0032941253187, + 1.15299998274173 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550": [ - 0.8041593432426453, - 0.18897019547949662 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt350to450": [ + 0.00124489412726441, + 0.00396003215057801 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf": [ - 0.10948646068572998, - 0.034387521596425205 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt550to650": [ + 0.0819004347273516, + 0.067305507851926 + ], + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt250to350": [ + 1e-06, + 1e-06 + ], + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt350to450": [ + 0.159398342620658, + 0.110773265211144 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350": [ + 3.55865656609409, + 0.540190248397174 + ], + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt450to550": [ + 1e-06, + 1e-06 + ], + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt550to650": [ + 0.253798577244762, + 0.0746281574300127 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ + 2.51426522785561, + 0.396786540522491 + ], + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ + 0.327689005521374, + 0.126940322745369 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt350to450": [ + 7.44696103085466, + 0.787342700262852 + ], + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt350to450": [ + 21.5496309632501, + 1.02352432635173 + ], + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt550to650": [ + 0.431189878901084, + 0.178859204333872 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt250to350": [ + 1e-06, + 1e-06 + ], + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt350to450": [ + 0.0410856479001406, + 0.0201730138930685 + ], + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt450to550": [ + 1e-06, + 1e-06 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350": [ + 8.73634926312277, + 0.860832249568696 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt450to550": [ + 0.0764454791418747, + 0.0638283167880321 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt650toinf": [ + 0.154453555929373, + 0.111168119472553 + ], + "bin_hm_nb3_highmtb_nrtntnwgeq3_htlt1000_MET_pt350to550": [ + 1e-06, + 1e-06 + ], + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt350to450": [ + 0.00305037584823089, + 0.0022867941575842 + ], + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt350to450": [ + 0.253531498978658, + 0.130178207494529 + ], + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt350to450": [ + 0.356047188122432, + 0.0900289516719721 + ], + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt350to550": [ + 0.00318177444113594, + 0.00277215579208131 + ], + "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf": [ + 5.54961226464536, + 0.750455655281144 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt650toinf": [ + 1e-06, + 1e-06 + ], + "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400": [ + 136.854894658826, + 4.82601642410954 + ], + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt550toinf": [ + 0.00405901133510309, + 0.00287015443996445 + ], + "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf": [ + 7.31724027679732, + 0.599097094732571 + ], + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt550toinf": [ + 6.53457509818315e-05, + 4.63223671299057e-05 + ], + "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf": [ + 5.5247387260911, + 0.684500527289299 + ], + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt550toinf": [ + 0.22435985107871, + 0.130832271583404 + ], + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450": [ + 2.87359769464865, + 0.498085146665623 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt250to350": [ + 2.26753380352828, + 0.417877211061649 + ], + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt450to550": [ + 0.00415636329433657, + 0.00643491434955776 + ], + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf": [ + 0.107663775715217, + 0.0936690185077168 + ], + "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ + 60.2854894304478, + 2.02874957247434 + ], + "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ + 696.112011914713, + 4.86313963806267 + ], + "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ + 75.6305620827447, + 3.59571094694982 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt550to650": [ + 3.05667775694359, + 0.482369920970583 + ], + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350": [ + 4.52264746179414, + 0.664808717154101 + ], + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt250to350": [ + 1e-06, + 1e-06 + ], + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ + 1e-06, + 1e-06 + ], + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt550toinf": [ + 1e-06, + 1e-06 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt350to450": [ + 0.954409694312403, + 0.313303797536215 + ], + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt650toinf": [ + 0.0813768897520898, + 0.0792757424370101 + ], + "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 30.2337696080297, + 1.72771473019154 + ], + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt250to350": [ + 0.283889161391657, + 0.159660399311477 + ], + "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500": [ + 131.89811659408, + 5.90685186153955 + ], + "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf": [ + 2.56123679357029, + 0.468070461303023 + ], + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt450to550": [ + 1.39115607643492, + 0.296558121748564 + ], + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt550toinf": [ + 1e-06, + 1e-06 + ], + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt450to550": [ + 0.0750504258599805, + 0.0506926982290456 + ], + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt350to450": [ + 1e-06, + 1e-06 + ], + "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ + 94.2583245702178, + 3.12179008579758 + ], + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt450to550": [ + 7.89450037288852, + 0.864011847385729 + ], + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt250to350": [ + 0.275809716720776, + 0.174202841522645 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt550to650": [ + 0.0255603159205144, + 0.0114152530623869 + ], + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650": [ + 0.183635939325988, + 0.119078372314771 + ], + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450": [ + 0.408892151870863, + 0.164791461334289 + ], + "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt250to350": [ + 12.0346998626705, + 1.06466601387394 + ], + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt550toinf": [ + 0.00174495057675743, + 0.00174495057675743 + ], + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf": [ + 0.515465084607693, + 0.175563789734513 + ], + "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ + 466.505242954663, + 6.69170230447838 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450": [ + 63.600902967853, + 2.52754232990102 + ], + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt550to650": [ + 0.500877946804804, + 0.199204209713844 + ], + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt350to450": [ + 0.0443333078101244, + 0.0283388338968346 + ], + "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550": [ + 117.371082699107, + 3.90292596590998 + ], + "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600": [ + 35.7895453240611, + 2.32521805823291 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt450to550": [ + 0.477581701764588, + 0.164604978594455 + ], + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt550toinf": [ + 1e-06, + 1e-06 + ], + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt350to450": [ + 0.00239292729710144, + 0.00169405455904207 + ], + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt550toinf": [ + 0.00133701772272016, + 0.00133701772272016 + ], + "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf": [ + 9.13584526808875, + 0.780754027165554 + ], + "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt450to550": [ + 1e-06, + 1e-06 + ], + "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ + 17.4407820128593, + 1.41180176923605 + ], + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt550to650": [ + 0.898358479934754, + 0.250255260056359 + ], + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt250to350": [ + 0.444307555311408, + 0.178985781162 + ], + "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500": [ + 26.4816598464613, + 1.92017962019703 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt550to650": [ + 0.28458057970538, + 0.161025936003656 + ], + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt250to350": [ + 1e-06, + 1e-06 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt250to350": [ + 1.43065888819724, + 0.293911563506345 + ], + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt250to350": [ + 0.24167337969308, + 0.148053328141384 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt550to650": [ + 1e-06, + 1e-06 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf": [ - 0.018550151959061623, - 0.01831745160467877 + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt350to450": [ + 0.00332868295005261, + 0.00417013783352634 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600": [ - 2.3506033420562744, - 0.8018841392709651 + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt550to650": [ + 4.45778133725504, + 0.460639625138771 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ - 0.02580987848341465, - 0.012060365138901007 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt450to550": [ + 0.0031085325713292, + 0.00567755158854884 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf": [ - 6.797481060028076, - 1.2282699246281732 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt350to450": [ + 125.851052209549, + 3.85002180226569 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350": [ - 22.88958168029785, - 1.6121900707568213 + 2391.6461539562, + 16.4441405439281 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf": [ - 0.1309555470943451, - 0.04020524866482621 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt550to650": [ + 1e-06, + 1e-06 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550": [ - 0.017305251210927963, - 0.012021071808430211 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt450to550": [ + 1e-06, + 1e-06 ], - "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 2.0922930240631104, - 0.4550052773050147 + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt350to450": [ + 0.00694631114444135, + 0.00682886267284019 ], - "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf": [ - 0.06659053266048431, - 0.021886822428972823 + "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ + 53.602240063884, + 2.44031800467782 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350": [ - 0.009047651663422585, - 0.0028953346344660325 - ] - }, - "phocr_data": { - "bin_phocr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550": [ - 12.0, - 3.4641016151377544 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf": [ + 3.62630149713925, + 0.492360541842589 ], - "bin_phocr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650": [ - 22.0, - 4.69041575982343 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350": [ + 76.0419535139824, + 2.72686205971366 ], - "bin_phocr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ - 3.0, - 1.7320508075688772 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt450to550": [ + 40.1295795696513, + 2.15593255363073 ], - "bin_phocr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf": [ - 3011.0, - 54.872579673275794 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt250to350": [ + 0.919632199953157, + 0.32379163693686 ], - "bin_phocr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 6.0, - 2.449489742783178 + "bin_hm_nb3_highmtb_nrtntnwgeq3_htlt1000_MET_pt550toinf": [ + 1e-06, + 1e-06 ], - "bin_phocr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ - 1017.0, - 31.89043743820395 + "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf": [ + 551.648963356228, + 4.59964067476837 ], - "bin_phocr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf": [ - 7.0, - 2.6457513110645907 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt350to450": [ + 0.0967426671202371, + 0.0636913475315749 ], - "bin_phocr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 4.0, - 2.0 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt650toinf": [ + 0.087134020501142, + 0.0573617590569128 ], - "bin_phocr_hm_nb1_highmtb_htlt1000_MET_pt450to550": [ - 771.0, - 27.76688675382964 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt350to450": [ + 4.47411199905695, + 0.665464017279413 ], - "bin_phocr_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650": [ - 4.0, - 2.0 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt350to450": [ + 0.346407324431747, + 0.224570303458867 ], - "bin_phocr_hm_nb1_highmtb_htgt1500_MET_pt550to650": [ - 21.0, - 4.58257569495584 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550": [ + 18.4712851416396, + 1.44949482774266 ], - "bin_phocr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf": [ - 27.0, - 5.196152422706632 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt350to450": [ + 1.82021000154804, + 0.400603431391161 ], - "bin_phocr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ - 85.0, - 9.219544457292887 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt650toinf": [ + 1.282703681597, + 0.304830514070317 ], - "bin_phocr_hm_nb1_highmtb_htgt1500_MET_pt650toinf": [ - 37.0, - 6.082762530298219 + "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ + 755.087891646982, + 14.9872320578889 ], - "bin_phocr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 35.0, - 5.916079783099616 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf": [ + 0.474844926754499, + 0.193921632585779 ], - "bin_phocr_hm_nb1_highmtb_htlt1000_MET_pt550to650": [ - 271.0, - 16.46207763315433 + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt250to350": [ + 1.15339888149512, + 0.292774887740954 ], - "bin_phocr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650": [ - 8.0, - 2.8284271247461903 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt250to350": [ + 1.72272624591044, + 0.386760574020326 ], - "bin_phocr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350": [ - 1155.0, - 33.98529093593286 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt350to450": [ + 0.106395716493069, + 0.0784209797632046 ], - "bin_phocr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf": [ - 5.0, - 2.23606797749979 + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt250to350": [ + 1e-06, + 1e-06 ], - "bin_phocr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 19.0, - 4.358898943540674 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf": [ + 0.273851925322599, + 0.119311110451779 ], - "bin_phocr_hm_nb1_highmtb_htgt1500_MET_pt450to550": [ - 35.0, - 5.916079783099616 + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt550to650": [ + 0.00376732786431742, + 0.00266390307981188 ], - "bin_phocr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550": [ - 5.0, - 2.23606797749979 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt250to350": [ + 4.69482362230047, + 0.634971944245018 ], - "bin_phocr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ - 209.0, - 14.45683229480096 + "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650": [ + 3.26035668277551, + 0.47190602583101 ], - "bin_phocr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf": [ - 14.0, - 3.7416573867739413 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350": [ + 1.92621309742312, + 0.402871763702201 ], - "bin_phocr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450": [ - 51.0, - 7.14142842854285 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt450to550": [ + 1e-06, + 1e-06 ], - "bin_phocr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500": [ - 3.0, - 1.7320508075688772 + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt250to350": [ + 1e-06, + 1e-06 ], - "bin_phocr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450": [ - 9.0, - 3.0 + "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550": [ + 25.5018653366879, + 1.53379520361247 ], - "bin_phocr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ - 169.0, - 13.0 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt250to350": [ + 0.00944279855376899, + 0.00498030374258967 ], - "bin_phocr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 25.0, - 5.0 + "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt350to450": [ + 1.0099961576054, + 0.25967351625994 ], - "bin_phocr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350": [ - 17.0, - 4.123105625617661 + "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750": [ + 29.4376314410005, + 0.960224729305128 ], - "bin_phocr_hm_nb3_highmtb_htlt1000_MET_pt350to550": [ - 76.0, - 8.717797887081348 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt450to550": [ + 7.83963718595062, + 0.863876813558546 + ], + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt550toinf": [ + 1e-06, + 1e-06 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt350to450": [ + 0.0790793690377513, + 0.0656780323082545 + ], + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt250to350": [ + 1.17231225395621, + 0.334440653828816 ], - "bin_phocr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 9.0, - 3.0 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt250to350": [ + 2.65079385043144, + 0.45006405021959 ], - "bin_phocr_hm_nb3_highmtb_htgt1500_MET_pt550toinf": [ - 2.0, - 1.4142135623730951 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt650toinf": [ + 0.779578470593084, + 0.255234723044398 ], - "bin_phocr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650": [ - 5.0, - 2.23606797749979 + "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf": [ + 20.5716609133668, + 1.1766092811734 ], - "bin_phocr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650": [ - 2.0, - 1.4142135623730951 + "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750": [ + 1.55369782108132, + 0.206942319393305 ], - "bin_phocr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500": [ - 167.0, - 12.922847983320086 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt250to350": [ + 4.08670164242205, + 0.614822259623337 ], - "bin_phocr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ - 183.0, - 13.527749258468683 + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt650toinf": [ + 7.78101181697061, + 0.487303045283553 ], - "bin_phocr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450": [ - 9.0, - 3.0 + "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt350to450": [ + 1e-06, + 1e-06 ], - "bin_phocr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf": [ - 12.0, - 3.4641016151377544 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt450to550": [ + 1e-06, + 1e-06 ], - "bin_phocr_hm_nb3_highmtb_htlt1000_MET_pt550toinf": [ - 8.0, - 2.8284271247461903 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt550to650": [ + 1.26314947623594, + 0.379125571110596 ], - "bin_phocr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750": [ - 110.0, - 10.488088481701515 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt250to350": [ + 1.20383632428042, + 0.303271076616697 ], - "bin_phocr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500": [ - 513.0, - 22.64950330581225 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt450to550": [ + 0.447470307464222, + 0.141865624148469 ], - "bin_phocr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350": [ - 324.0, - 18.0 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt450to550": [ + 0.173442078581884, + 0.119123713089661 ], - "bin_phocr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550": [ - 17.0, - 4.123105625617661 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt350to450": [ + 15.1612816309781, + 1.02860738432043 ], - "bin_phocr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf": [ - 32.0, - 5.656854249492381 + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt350to550": [ + 0.000432181164481073, + 0.0036966154375862 ], - "bin_phocr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650": [ - 1.0, - 1.0 + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ + 0.00125815655285738, + 0.00125815655285738 ], - "bin_phocr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350": [ - 11.0, - 3.3166247903554 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt450to550": [ + 0.00782239814024714, + 0.00435563835255453 ], - "bin_phocr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf": [ - 30.0, - 5.477225575051661 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ + 2.33420411494639, + 0.508798984599175 ], - "bin_phocr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550": [ - 272.0, - 16.492422502470642 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt650toinf": [ + 0.00684711565312884, + 0.00684711565312884 ], - "bin_phocr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ - 7.0, - 2.6457513110645907 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt250to350": [ + 0.513258227255991, + 0.184889881237187 ], - "bin_phocr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf": [ - 8.0, - 2.8284271247461903 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550": [ + 66.4413937611026, + 2.60238683635255 ], - "bin_phocr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf": [ - 2.0, - 1.4142135623730951 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt450to550": [ + 2.00756975115564, + 0.383589592038974 ], - "bin_phocr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650": [ - 8.0, - 2.8284271247461903 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf": [ + 0.652760042403121, + 0.227338126696965 ], - "bin_phocr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600": [ - 25.0, - 5.0 + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt250to350": [ + 159.445933236007, + 3.2411108286224 ], - "bin_phocr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400": [ - 183.0, - 13.527749258468683 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt650toinf": [ + 0.976843944148846, + 0.268461877201666 ], - "bin_phocr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450": [ - 164.0, - 12.806248474865697 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt450to550": [ + 1.06054203643597, + 0.28963949321924 ], - "bin_phocr_hm_nb1_highmtb_htlt1000_MET_pt350to450": [ - 2042.0, - 45.18849411078001 + "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf": [ + 3.72395465245747, + 0.698977985839422 ], - "bin_phocr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf": [ - 9.0, - 3.0 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt650toinf": [ + 0.0822332141010035, + 0.0803267022275446 ], - "bin_phocr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650": [ - 54.0, - 7.3484692283495345 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt550to650": [ + 1e-06, + 1e-06 ], - "bin_phocr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf": [ - 1.0, - 1.0 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt350to450": [ + 0.036507257374979, + 0.0146634941791293 ], - "bin_phocr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf": [ - 100.0, - 10.0 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt550to650": [ + 0.232375319513174, + 0.121358818763076 ], - "bin_phocr_hm_nb1_highmtb_htgt1500_MET_pt250to350": [ - 93.0, - 9.643650760992955 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt350to450": [ + 0.0480878869336707, + 0.0320503872179155 ], - "bin_phocr_hm_nb3_highmtb_htgt1500_MET_pt250to350": [ - 1.0, - 1.0 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt650toinf": [ + 1e-06, + 1e-06 ], - "bin_phocr_hm_nb1_highmtb_htlt1000_MET_pt650toinf": [ - 117.0, - 10.816653826391969 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt450to550": [ + 1.05500904885618, + 0.283754220469587 ], - "bin_phocr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600": [ - 70.0, - 8.366600265340756 + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt250to350": [ + 0.561899860588469, + 0.206154629727605 ], - "bin_phocr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550": [ - 15.0, - 3.872983346207417 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt550to650": [ + 1e-06, + 1e-06 ], - "bin_phocr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750": [ - 29.0, - 5.385164807134504 + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt550toinf": [ + 1e-06, + 1e-06 ], - "bin_phocr_hm_nb1_highmtb_htgt1500_MET_pt350to450": [ - 52.0, - 7.211102550927978 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt650toinf": [ + 0.202795444491127, + 0.104595112499213 ], - "bin_phocr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350": [ - 79.0, - 8.888194417315589 + "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt250to350": [ + 0.00256213673471582, + 0.00222145640413664 ], - "bin_phocr_hm_nb3_highmtb_htlt1000_MET_pt250to350": [ - 140.0, - 11.832159566199232 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt550to650": [ + 4.73710736280808, + 0.674549634830009 ], - "bin_phocr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf": [ - 11.0, - 3.3166247903554 + "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500": [ + 58.2343410629043, + 2.9756392571092 ], - "bin_phocr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450": [ - 428.0, - 20.688160865577203 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350": [ + 6.53903095043495, + 0.762970046456776 ], - "bin_phocr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500": [ - 41.0, - 6.4031242374328485 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt650toinf": [ + 0.00705788920494333, + 0.00799769433018583 + ], + "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ + 1625.20067048271, + 10.8881925892605 ], - "bin_phocr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ - 7974.0, - 89.2972563968233 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt350to450": [ + 0.00157209929715491, + 0.00511233392097085 ], - "bin_phocr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550": [ - 4.0, - 2.0 + "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf": [ + 1.37105391339279, + 0.278663007515513 ], - "bin_phocr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450": [ - 39.0, - 6.244997998398398 + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt250to350": [ + 0.167628860566853, + 0.137608687428908 ], - "bin_phocr_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf": [ - 3.0, - 1.7320508075688772 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt650toinf": [ + 0.0077109256171214, + 0.00635909135197133 ], - "bin_phocr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350": [ - 66.0, - 8.12403840463596 + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt650toinf": [ + 1e-06, + 1e-06 ], - "bin_phocr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ - 78.0, - 8.831760866327848 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt450to550": [ + 0.0399941347697002, + 0.0340733150517482 ], - "bin_phocr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500": [ - 41.0, - 6.4031242374328485 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650": [ + 3.11592999740936, + 0.536102319303067 ], - "bin_phocr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ - 34.0, - 5.830951894845301 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt350to450": [ + 0.197494498486758, + 0.10096383121718 ], - "bin_phocr_hm_nb3_highmtb_htgt1500_MET_pt350to450": [ - 2.0, - 1.4142135623730951 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt450to550": [ + 0.0855377620887534, + 0.054141369761994 ], - "bin_phocr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550": [ - 4.0, - 2.0 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf": [ + 2.30224062710221, + 0.437849372735018 ], - "bin_phocr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ - 2491.0, - 49.90991885387112 + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt450to550": [ + 1e-06, + 1e-06 ], - "bin_phocr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ - 11817.0, - 108.70602559196064 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt550to650": [ + 0.915983857230129, + 0.202393562887327 ], - "bin_phocr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ - 3614.0, - 60.11655346075655 + "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt550toinf": [ + 0.583036826386621, + 0.180639675503764 ], - "bin_phocr_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750": [ - 4.0, - 2.0 + "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt250to350": [ + 2.97026818383346, + 0.443901387121475 ], - "bin_phocr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450": [ - 7.0, - 2.6457513110645907 + "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 9.89324681602334, + 0.961567851344691 ], - "bin_phocr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650": [ - 73.0, - 8.54400374531753 + "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt350to450": [ + 0.00139279420286863, + 0.00139279420286863 ], - "bin_phocr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650": [ - 13.0, - 3.605551275463989 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt250to350": [ + 0.037380860447593, + 0.0895941981610854 ], - "bin_phocr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750": [ - 84.0, - 9.16515138991168 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt250to350": [ + 18.0115407132311, + 1.22602011029168 ], - "bin_phocr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550": [ - 288.0, - 16.97056274847714 + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt450to550": [ + 1e-06, + 1e-06 ], - "bin_phocr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf": [ - 21.0, - 4.58257569495584 + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt250to350": [ + 0.0758299557544916, + 0.0737444417446039 ], - "bin_phocr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550": [ - 28.0, - 5.291502622129181 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt650toinf": [ + 0.141968243153681, + 0.100178178900477 ], - "bin_phocr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550": [ - 119.0, - 10.908712114635714 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt450to550": [ + 0.316633233254185, + 0.157739879225893 ], - "bin_phocr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ - 127.0, - 11.269427669584644 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt650toinf": [ + 0.0143870672482998, + 0.0106042606480711 ], - "bin_phocr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750": [ - 16.0, - 4.0 + "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500": [ + 249.218680774839, + 8.50020179434079 ], - "bin_phocr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf": [ - 2.0, - 1.4142135623730951 + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt450to550": [ + 1e-06, + 1e-06 ], - "bin_phocr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ - 166.0, - 12.884098726725126 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt250to350": [ + 16.1841615891957, + 1.25455484230823 ], - "bin_phocr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550": [ - 169.0, - 13.0 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt250to350": [ + 0.0171872613603405, + 0.00978002551348947 ], - "bin_phocr_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550": [ - 6.0, - 2.449489742783178 + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt350to450": [ + 0.00248189357521476, + 0.00530305348852019 ], - "bin_phocr_hm_nb3_highmtb_htgt1500_MET_pt450to550": [ - 1.0, - 1.0 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt250to350": [ + 37.3065746347874, + 1.65807289650302 ], - "bin_phocr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 5.0, - 2.23606797749979 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt450to550": [ + 0.209695003403173, + 0.190456330010026 ], - "bin_phocr_hm_nb1_highmtb_htlt1000_MET_pt250to350": [ - 5799.0, - 76.1511654539837 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt550to650": [ + 0.32076937922875, + 0.179208653060526 ], - "bin_phocr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350": [ - 15.0, - 3.872983346207417 + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt550toinf": [ + 1e-06, + 1e-06 ], - "bin_phocr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf": [ - 3.0, - 1.7320508075688772 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ + 0.192939227620442, + 0.118705373457643 ], - "bin_phocr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf": [ - 64.0, - 8.0 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550": [ + 1.13082225889453, + 0.357732664082281 ], - "bin_phocr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf": [ - 16.0, - 4.0 + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt450to550": [ + 1e-06, + 1e-06 ], - "bin_phocr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf": [ - 13.0, - 3.605551275463989 + "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ + 30.2330768098058, + 1.76141807819499 ], - "bin_phocr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf": [ - 97.0, - 9.848857801796104 + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt350to450": [ + 16.4634545369461, + 0.891820033180255 ], - "bin_phocr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500": [ - 38.0, - 6.164414002968976 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt550to650": [ + 1e-06, + 1e-06 ], - "bin_phocr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 27.0, - 5.196152422706632 - ] - }, - "qcdcr_otherbkgs": { - "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 80.98177640448209, - 19.503103635600763 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt550to650": [ + 2.1754621918521, + 0.440449139514085 ], - "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 160.65333091302082, - 21.543839594206663 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt250to350": [ + 0.00215593073395513, + 0.00868823933729639 ], - "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf": [ - 11.629850801750894, - 0.5637514757655273 + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt550toinf": [ + 0.00964937368179894, + 0.00508752885194981 ], - "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ - 10.25783113721803, - 5.390338956477541 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt550to650": [ + 0.306801943862018, + 0.14509034630206 ], - "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550": [ - 131.13959005516793, - 5.625266216504505 + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt350to450": [ + 0.00557797640127969, + 0.00302634203705162 ], - "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450": [ - 15.539238963850394, - 3.8201554223769847 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt450to550": [ + 1e-06, + 1e-06 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf": [ - 16.939924056871952, - 1.8574589636147196 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt550to650": [ + 0.00828152187715604, + 0.00505733578425531 ], - "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550": [ - 7.220365994129796, - 2.5340786459599696 + "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500": [ + 25.6793350021007, + 2.24204805540161 ], - "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550": [ - 0.0817806759977664, - 0.03018656632399243 + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt250to350": [ + 0.0615988304269653, + 0.0431788289806283 ], - "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ - 945.2477060353208, - 8.105772491854482 + "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt450to550": [ + 2.6042312811175, + 0.4554186203398 ], - "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf": [ - 3.4912887801932158, - 2.8055740237324116 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550": [ + 0.84258403957019, + 0.243981460845406 ], - "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650": [ - 0.5455990287958947, - 0.11520498986701973 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt250to350": [ + 1.06260368631251, + 0.282931107090754 ], - "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550": [ - 1.2797149758072521, - 0.18050269333001157 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt550to650": [ + 0.955213370933049, + 0.310823355843968 ], - "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf": [ - 0.5019695549179986, - 0.1118775666910627 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt650toinf": [ + 1e-06, + 1e-06 ], - "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf": [ - 0.14369335909240988, - 0.0565081139521504 + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt350to450": [ + 0.290673619418788, + 0.213897081679491 ], - "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf": [ - 4.670035067254329, - 2.4421030400329182 + "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550": [ + 121.872936905992, + 2.14869464164908 ], - "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550": [ - 1.6237446487863068, - 0.21353759563598146 + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt550toinf": [ + 0.00971008941401802, + 0.0054562567428347 ], - "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ - 67.96455590989083, - 6.488868224298364 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt650toinf": [ + 0.00266348893863838, + 0.00266348893863838 ], - "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350": [ - 25.2474925580192, - 8.758224144489013 + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt650toinf": [ + 0.00709448105316161, + 0.00393464442200226 ], - "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf": [ - 1.4594715255295725, - 0.40844258055390575 + "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf": [ + 2.34169857539007, + 0.311723569585507 ], - "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550": [ - 21.30505950182268, - 4.432490217879168 + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt250to350": [ + 0.0488964827136079, + 0.038945128232872 ], - "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550": [ - 0.8230122728657285, - 0.14426614893740047 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt250to350": [ + 10.9085608520662, + 0.768159016124641 ], - "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350": [ - 75.67758847491169, - 13.33418419253243 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt250to350": [ + 1e-06, + 1e-06 ], - "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf": [ - 4.374791277607784, - 3.4007315553571287 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt450to550": [ + 0.276926447235994, + 0.115049166267899 ], - "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450": [ - 61.91031745520234, - 11.462950683532625 + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt450to550": [ + 0.204511210377073, + 0.149126131440334 ], - "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350": [ - 22.868856230396982, - 7.8209218890360805 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt350to450": [ + 16.7987341452173, + 1.293724984838 ], - "bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf": [ - 2.274420957056119, - 0.3456596308461436 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to350": [ + 17.9285815358376, + 1.33245142215565 ], - "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450": [ - 142.97092288615045, - 16.236740291545008 + "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ + 149.931161437905, + 3.96768727363735 ], - "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 317.76809388620194, - 29.73665781388468 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to450": [ + 1.77964630924947, + 0.383026648741946 ], - "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ - 432.55299356667695, - 4.002985358468458 + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt650toinf": [ + 1e-06, + 1e-06 ], - "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650": [ - 4.934233631793251, - 4.044012146169008 + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt550toinf": [ + 1e-06, + 1e-06 ], - "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650": [ - 0.7073694660473535, - 0.14250707806379595 + "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ + 270.750652185994, + 5.37324749840529 ], - "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650": [ - 7.319292411466421, - 3.5567093320170224 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt450to550": [ + 5.77198927665089, + 0.810982971909936 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf": [ - 5.783498345522943, - 0.41160506690550225 + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt250to350": [ + 1.75126955198136, + 0.365749118447068 ], - "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550": [ - 30.469310508603733, - 8.21243440681835 + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt450to550": [ + 7.85049556746615, + 0.589889206417371 ], - "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ - 23.63896968105441, - 9.148933027168269 + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt450to550": [ + 0.019435272692507, + 0.0118663898211274 ], - "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf": [ - 0.42966076063991565, - 0.12095668551071978 + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt550to650": [ + 1e-06, + 1e-06 ], - "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550": [ - -4.243611222118574, - 3.5097364348196796 + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt350to450": [ + 0.0409475875906212, + 0.0450228807504777 ], - "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ - 14.476052546411374, - 0.7457065724803285 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt650toinf": [ + 1e-06, + 1e-06 ], - "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 645.5180379330914, - 39.97838136761151 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt450to550": [ + 6.934834330967, + 0.866796857239789 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ - 132.86609049176917, - 13.188749144795569 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt650toinf": [ + 0.00370106762142528, + 0.00225485114794775 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ - 6.829545816692018, - 0.514829726242683 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650": [ + 12.2906551078594, + 1.02250630902437 ], - "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 54.73742173519595, - 12.217179891103555 + "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ + 345.058301201635, + 7.0260943255764 ], - "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ - 196.7531433039506, - 6.207036860395526 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350": [ + 344.7296369871, + 5.88954402205171 ], - "bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf": [ - 4.3524433083182394, - 0.43763942921636323 + "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750": [ + 17.0277800688478, + 0.76325005271572 ], - "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350": [ - 118.55415264462188, - 17.183938399543305 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt650toinf": [ + 1.32041730406113, + 0.194578700757135 ], - "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350": [ - 67.97019071336905, - 12.193327962217566 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf": [ + 0.545442271824202, + 0.232547953566725 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ - 17.961951756678623, - 1.7228170145580994 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt350to450": [ + 0.371466556415243, + 0.19294702960744 ], - "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350": [ - 192.61193420232053, - 21.848045755100614 + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt450to550": [ + 0.00194287247102243, + 0.00314505566545502 ], - "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450": [ - 18.95910546595318, - 5.98088327029428 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt450to550": [ + 2.93470909054125, + 0.551220106720172 ], - "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450": [ - 0.15508472695043096, - 0.0887865524441799 + "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ + 27.870765047508, + 1.32232201380281 ], - "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550": [ - 6.119520321873953, - 3.565201994790417 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt350to450": [ + 0.528198277498337, + 0.226175506063052 ], - "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf": [ - 3.9925293128819064, - 0.6959545173892192 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt450to550": [ + 0.124219181833222, + 0.0950797656364289 ], - "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750": [ - 31.341159576609982, - 2.7407694081565803 + "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf": [ + 14.0065760409257, + 0.685035247006438 ], - "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf": [ - 2.4733875015559903, - 2.1628129693566787 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt550to650": [ + 0.0497461112691173, + 0.0193143122982824 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf": [ - 10.824956178998512, - 4.008788496424562 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt350to450": [ + 2.22003975765992, + 0.402869126108912 ], - "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450": [ - 2.034981465229439, - 0.1894585004911632 + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt350to450": [ + 1e-06, + 1e-06 ], - "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf": [ - 3.122172158643018, - 0.2875220738653851 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt650toinf": [ + 0.000541532833221539, + 0.000541532833221539 ], - "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf": [ - 177.79447665623394, - 2.0845679357945803 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt350to450": [ + 0.681066493093272, + 0.236454696425109 ], - "bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf": [ - 23.24050924046276, - 6.379406514093607 + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt350to450": [ + 0.0361720598657383, + 0.0297568457326886 ], - "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650": [ - 0.4773295712516301, - 0.135904457626665 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt550to650": [ + 0.0057013765949701, + 0.0030079201572466 ], - "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450": [ - 36.071152085281994, - 8.663409253007016 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt450to550": [ + 0.64501765551779, + 0.260947069396676 ], - "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf": [ - 30.321222710281802, - 0.8094054689451156 + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt450to550": [ + 1e-06, + 1e-06 ], - "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf": [ - 3.4005698710209273, - 0.3239464449497335 + "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550": [ + 7.89386363371011, + 0.805611836100925 ], - "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550": [ - 3.765848047235174, - 2.1998761999618592 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650": [ + 8.09474731421127, + 0.950465183811563 ], - "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350": [ - 651.9320144310259, - 37.307116159474674 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt450to550": [ + 0.0532930185720516, + 0.0408777099198125 ], - "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 422.81978194645893, - 33.69235071971744 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf": [ + 0.827699984268668, + 0.258893715581959 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ - 7.6810458498766, - 0.8151297239438067 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt250to350": [ + 0.00290630900546968, + 0.00214215014679097 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ - 145.82033427037032, - 8.735286066954743 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt250to350": [ + 0.538891368289517, + 0.209358459847124 ], - "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650": [ - 4.12658040461821, - 0.33072813202297374 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ + 0.724290195174369, + 0.249361414696018 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf": [ - 23.70858391042831, - 6.940497649144053 + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt450to550": [ + 0.00881098255413322, + 0.00548340651371442 ], - "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf": [ - 16.892494241765483, - 5.551922562973274 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450": [ + 1.20525447906789, + 0.313789541143749 ], - "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550": [ - 43.504066379454436, - 9.921483261952988 + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt350to450": [ + 1e-06, + 1e-06 ], - "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf": [ - 0.04779343814859516, - 0.03216249826673098 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt350to450": [ + 1.02124066507275, + 0.310648719096829 ], - "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350": [ - 37.26063945582024, - 9.297965903743744 + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt450to550": [ + 1e-06, + 1e-06 ], - "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ - 9.573229978510206, - 1.343113247210503 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt650toinf": [ + 3.0343146387463, + 0.458211873445967 ], - "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450": [ - 0.930482861650912, - 0.14254777073763164 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt350to450": [ + 1e-06, + 1e-06 ], - "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350": [ - 13.94891366697992, - 4.805599215912625 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt550to650": [ + 0.0253167954645935, + 0.019819107633963 ], - "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550": [ - 29.99577269286042, - 1.431727122970144 + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt550to650": [ + 1e-06, + 1e-06 ], - "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450": [ - 7.090576818168508, - 4.527039285571619 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt450to550": [ + 0.448364368607871, + 0.171634403493941 ], - "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf": [ - 0.8376395459810979, - 0.1455858259735757 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to450": [ + 0.457659589748911, + 0.190448612999769 ], - "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf": [ - 2.181164911607791, - 2.0724403867479357 + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ + 1e-06, + 1e-06 ], - "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ - 28.323470136673063, - 7.295126396409946 + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt350to450": [ + 1e-06, + 1e-06 ], - "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350": [ - 22.258083110642684, - 7.738556543573619 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt550to650": [ + 0.0192037411358283, + 0.00878992496837801 ], - "bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf": [ - 8.878778995735747, - 0.48488597738056666 + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt350to550": [ + 1.37276181021159, + 0.307011300865995 ], - "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 414.08917202962164, - 32.01134445835715 + "bin_hm_nb3_highmtb_nrtntnwgeq3_htlt1000_MET_pt250to350": [ + 1e-06, + 1e-06 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ - 21.1825669708543, - 3.0325524041543743 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt250to350": [ + 1e-06, + 1e-06 ], - "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650": [ - 11.696431028087616, - 4.8256555634121545 + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt550to650": [ + 1e-06, + 1e-06 ], - "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 129.91376240839088, - 18.49810760616834 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt350to450": [ + 7.65987698381661, + 0.804521694168022 ], - "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650": [ - 6.35909462012517, - 0.439453908633029 + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt450to550": [ + 26.4381628301135, + 1.24883192014525 ], - "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350": [ - 3.6985468369849492, - 1.940504597411426 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt450to550": [ + 5.8392537519308, + 0.576395210041011 ], - "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450": [ - 13.31474365702687, - 5.90744081721506 - ] - }, - "qcdcr_qcd": { - "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 58.87757915052107, - 0.38792044353651256 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt550to650": [ + 0.00425505314723107, + 0.00300877693471625 ], - "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 165.2840197365926, - 2.036069134484077 + "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt250to350": [ + 0.00158773133502701, + 0.00158773133502701 ], - "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf": [ - 26.077922335646107, - 0.24258738636498106 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt450to550": [ + 0.0921131796502935, + 0.0918668933725334 ], - "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ - 57.432009550310184, - 1.4497414795426977 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt650toinf": [ + 4.1291075601468e-05, + 0.00376717415078307 ], - "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550": [ - 1123.5701466480846, - 3.4979635028825364 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt650toinf": [ + 1e-06, + 1e-06 ], - "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450": [ - 210.11385413540452, - 1.2208767466739883 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt450to550": [ + 1.5296099899908, + 0.391614751951787 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf": [ - 17.66360779838975, - 0.9128307245406683 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550": [ + 7.32343251255669, + 0.856117036367327 ], - "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550": [ - 77.29877112110788, - 0.6925342894026184 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt450to550": [ + 0.036241922976852, + 0.0281103853068663 ], - "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550": [ - 5.344109919954164, - 0.1080155119877189 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt550to650": [ + 0.0506351895337004, + 0.0173074388767198 ], - "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ - 6768.969612293242, - 11.995112391447389 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550": [ + 2.06016545686973, + 0.398718888835641 ], - "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf": [ - 3.9355503066204687, - 0.12128204671606867 + "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ + 2.10442581453301, + 0.428423950412452 ], - "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650": [ - 0.665555741334869, - 0.10663753450517609 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt350to450": [ + 0.292052237301729, + 0.17364237971242 ], - "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550": [ - 15.892596184432008, - 0.46331718965458873 + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt350to450": [ + 0.0115536963812154, + 0.00491830070569667 ], - "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf": [ - 1.0580113510095277, - 0.03908209507762718 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt250to350": [ + 58.8875137685577, + 2.34133778403599 ], - "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf": [ - 0.06334103971263545, - 0.007891231640264536 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350": [ + 6.84342204352282, + 0.824907612424414 ], - "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf": [ - 10.604754396001892, - 0.14009835921912692 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt350to450": [ + 3.586197472445, + 0.537548453179312 ], - "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550": [ - 3.5818057695101664, - 0.3104205537222402 + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt550toinf": [ + 0.00320408313300231, + 0.00236163021233255 ], - "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ - 392.65876394634336, - 1.4091004314509712 + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt450to550": [ + 0.141128564238189, + 0.1010351898467 ], - "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350": [ - 77.23863655051434, - 0.9964020202265662 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt650toinf": [ + 0.0383520639030173, + 0.0236219352210787 ], - "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf": [ - 5.96212547360577, - 0.3296656726318228 + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt250to350": [ + 1e-06, + 1e-06 ], - "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550": [ - 61.49200938251224, - 1.0366989446726722 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt250to350": [ + 0.09234490089325, + 0.0513070517885318 ], - "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550": [ - 12.949205322047796, - 0.23547605702750055 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt650toinf": [ + 1e-06, + 1e-06 ], - "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350": [ - 629.7008541414335, - 3.107845025700672 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt350to450": [ + 2.14870958142739, + 0.431486707003463 ], - "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf": [ - 10.497753489111641, - 0.15524878358957853 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt450to550": [ + 0.631872962433475, + 0.238713001332985 ], - "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450": [ - 449.44983735853725, - 3.034769341310196 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt550to650": [ + 4.0891008494026e-05, + 4.0891008494026e-05 ], - "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350": [ - 76.65414967703265, - 1.3418652717076642 + "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ + 99.2469880470717, + 3.74123397291691 ], - "bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf": [ - 8.510478327289677, - 0.32418663106633405 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt350to450": [ + 0.00194214556968633, + 0.00141153766193077 ], - "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450": [ - 426.0961092164116, - 3.4830199374986055 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt450to550": [ + 0.0487534617358604, + 0.0297504988913078 ], - "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 1728.5678151914237, - 5.4661964111022225 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt350to450": [ + 23.9887371488474, + 1.66747657216283 ], - "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ - 2079.052710954225, - 6.896108885061834 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt550to650": [ + 1e-06, + 1e-06 ], - "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650": [ - 13.123852503167397, - 0.17317187559095362 + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt250to350": [ + 0.151824829932533, + 0.111928383729825 ], - "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650": [ - 2.7168157958459442, - 0.06895872976185387 + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt250to350": [ + 45.8812727065104, + 1.61622254293165 ], - "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650": [ - 22.797834323261156, - 0.2722822769156529 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt250to350": [ + 2.9486732514352, + 0.50617329919933 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf": [ - 6.0169051648239495, - 0.12332567515197407 + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ + 13.8911716462213, + 0.752381390544794 ], - "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550": [ - 115.37743353141549, - 1.348085794756003 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt350to450": [ + 40.7323925202701, + 2.05082337606557 ], - "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ - 29.160563585208262, - 1.7837879413425102 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350": [ + 0.96895028277405, + 0.279183168347159 ], - "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf": [ - 0.5002434751672115, - 0.024744674965104803 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt650toinf": [ + 0.000560909417139356, + 0.000560909417139356 ], - "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550": [ - 4.652226274711863, - 0.14672304015414492 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt450to550": [ + 0.477448789031567, + 0.281170583194999 ], - "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ - 53.303118508083905, - 0.5833875290862673 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650": [ + 2.34282275423727, + 0.457380833070162 ], - "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 1565.2578006957128, - 7.625381098806801 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt250to350": [ + 0.0742865006903519, + 0.077216364677059 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ - 305.1339526822771, - 4.370801374222826 + "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ + 64.6020176593322, + 2.48721227789493 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ - 38.92837405113892, - 1.5845169044068728 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt650toinf": [ + 1e-06, + 1e-06 ], - "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 144.16007344411344, - 0.66806771224536 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt350to450": [ + 0.138464728706687, + 0.0942656172218851 ], - "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ - 700.5835134222248, - 2.911999561518384 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt550to650": [ + 0.345251543853842, + 0.171882360083552 ], - "bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf": [ - 12.73081726157874, - 0.4874371658782314 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt550to650": [ + 0.921545000816805, + 0.182701827296706 ], - "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350": [ - 1032.9500567012278, - 1.9641773189421314 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt350to450": [ + 0.00709347929119914, + 0.00543464206474937 ], - "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350": [ - 507.08335956869166, - 4.7937043738160074 + "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ + 65.2756402765727, + 1.71613682520817 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ - 66.59508394912399, - 0.8546724363193132 + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt550toinf": [ + 1e-06, + 1e-06 ], - "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350": [ - 1569.4531660786397, - 6.699710455182397 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt350to450": [ + 0.0938761104836882, + 0.083378531289853 ], - "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450": [ - 65.17077459867589, - 1.303011603580369 + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt350to450": [ + 1e-06, + 1e-06 ], - "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450": [ - 14.435620149292873, - 0.21915507399230397 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ + 0.213179854782448, + 0.156226595100701 ], - "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550": [ - 28.899148546572683, - 0.30865889419210035 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt650toinf": [ + 0.00739638658126871, + 0.00415264204102238 ], - "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf": [ - 25.712454180459858, - 1.5084837535831004 + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt550toinf": [ + 0.253214560262678, + 0.198765397512195 ], - "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750": [ - 129.5796958856489, - 0.6357812181881909 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt250to350": [ + 1.17584423847401, + 0.311739457543022 ], - "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf": [ - 4.213950395386755, - 0.09478391701731383 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt250to350": [ + 0.0171395864314338, + 0.00615527637251232 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf": [ - 11.983037566536897, - 0.3278522336199172 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to450": [ + 23.4646213505777, + 1.59072777194212 ], - "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450": [ - 53.82701680415936, - 0.39545400451692675 + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt350to450": [ + 0.308569544445853, + 0.157367519379377 ], - "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf": [ - 8.951537698976411, - 0.14936223886755373 + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt650toinf": [ + 1e-06, + 1e-06 ], - "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf": [ - 398.2369029944525, - 1.2125563702864448 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt350to450": [ + 0.523530347628557, + 0.190972167676335 ], - "bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf": [ - 30.98125598022, - 1.2226191076737296 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt550to650": [ + 0.00663852208090529, + 0.00644671129262821 + ] + }, + "diboson": { + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550": [ + 0.015483902767300606, + 0.006606518025232091 ], - "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650": [ - 4.042569339944957, - 0.12708887517348813 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450": [ + 6.159729957580566, + 0.8828244385044863 ], - "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450": [ - 431.8007127249145, - 1.1449588998575095 + "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ + 1.9482613801956177, + 0.8178425021193507 ], - "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf": [ - 83.110107129668, - 0.5704194043566212 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf": [ + 0.3257027566432953, + 0.0981672244307407 ], - "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf": [ - 6.87502899662138, - 0.13823528547197794 + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350": [ + 0.03711169585585594, + 0.036996803451378686 ], - "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550": [ - 9.397029904732282, - 0.32698885179746806 + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450": [ + 0.021677212789654732, + 0.005825728145664449 ], - "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350": [ - 3130.6369985760552, - 12.342149554452542 + "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400": [ + 2.979671001434326, + 0.5329208408863624 ], - "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 857.8224025804737, - 4.399892532664078 + "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ + 2.9931888580322266, + 0.5259469607309544 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ - 15.130134387519128, - 0.2840717040621952 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650": [ + 0.02278560772538185, + 0.009440597067533146 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ - 460.27162472653544, - 6.264515109931516 + "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf": [ + 59.0098876953125, + 4.168449656397232 ], - "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650": [ - 4.198479246078268, - 0.1780091835001668 + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550": [ + 2.5849757194519043, + 0.43090462374029753 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf": [ - 23.6260418495023, - 0.7840505912399125 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550": [ + 0.6567659378051758, + 0.1554770086326998 ], - "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf": [ - 65.269018394857, - 0.35640910422143635 + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350": [ + 6.634438514709473, + 1.1186134162486263 ], - "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550": [ - 193.27189024511665, - 0.7131345019999988 + "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf": [ + 0.07114514708518982, + 0.028469177900412666 ], - "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf": [ - 0.3931443224694178, - 0.05308856855901153 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650": [ + 0.006026467774063349, + 0.003287832977518295 ], - "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350": [ - 176.98297610447042, - 2.1719687593884123 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf": [ + 0.07337843626737595, + 0.02559514933936489 ], - "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ - 85.55674895125634, - 2.4321693994704088 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550": [ + 0.10191229730844498, + 0.015465148474460793 ], - "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450": [ - 30.50294564072895, - 0.4765669161595231 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350": [ + 3.585127115249634, + 0.3869912934896839 ], - "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350": [ - 128.85620893386562, - 0.7042726044499924 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf": [ + 0.041208356618881226, + 0.013202610148819512 ], - "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550": [ - 204.30199957113854, - 1.919557325886905 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650": [ + 1.0259965658187866, + 0.2070949610975621 ], - "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450": [ - 14.939275787407823, - 0.37560389601999605 + "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf": [ + 0.09867622703313828, + 0.02686833993046688 ], - "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf": [ - 0.9135646178889283, - 0.04365511030548376 + "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ + 5.687530994415283, + 0.4100112170738605 ], - "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf": [ - 0.8148227246857619, - 0.038623008948759655 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf": [ + 0.015571453608572483, + 0.009439546974047903 ], - "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ - 50.414645451071664, - 1.3460267771814596 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650": [ + 0.012765958905220032, + 0.008297992995092669 ], - "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350": [ - 113.79078392607552, - 2.8253062483771525 + "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500": [ + 0.2955629825592041, + 0.11458368916739385 ], - "bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf": [ - 71.97992054087369, - 0.7349227278928536 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf": [ + 0.4501071572303772, + 0.3874595961043159 ], - "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 3163.224357780219, - 9.51234087168175 + "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf": [ + 0.13550347089767456, + 0.035445778601832144 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ - 131.15011536786471, - 1.886709135192994 + "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750": [ + 0.7264294624328613, + 0.25260587327251727 ], - "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650": [ - 82.58703066928337, - 0.43684027398100683 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf": [ + 0.062292493879795074, + 0.0292908480605644 ], - "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 366.4053860954342, - 1.7848451684845308 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf": [ + 0.003514881245791912, + 0.0016768308472776836 ], - "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650": [ - 21.629735526617477, - 0.37949011728415566 + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf": [ + 0.03553938493132591, + 0.008237649661571216 ], - "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350": [ - 30.447663055639914, - 0.3869374622232861 + "bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf": [ + 1.4225674867630005, + 0.3076860179847195 ], - "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450": [ - 60.41458714166233, - 1.086788465316377 - ] - }, - "ttbarplusw": { - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt250to350": [ - 214.729495274632, - 4.46662174732968 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf": [ + 0.06546011567115784, + 0.01851134110076937 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt250to350": [ - 12.5228451283128, - 1.02759506434423 + "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750": [ + 0.8288958668708801, + 0.48615669881188345 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt450to550": [ - 0.665186170385208, - 0.235086950310294 + "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650": [ + 0.235236257314682, + 0.1429055005730952 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450": [ - 401.226913421695, - 6.76586666137696 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350": [ + 0.06046168878674507, + 0.03804752869922294 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt350to450": [ - 0.0335869053310565, - 0.0158466772116194 + "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ + 0.6920053362846375, + 0.2187028488148702 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350": [ - 46.3287371996352, - 2.1463001567683 + "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf": [ + 0.2609175443649292, + 0.053134848599834396 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt250to350": [ - 0.3089753232541, - 0.159846598440273 + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450": [ + 3.970709800720215, + 0.6990414224495174 ], - "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650": [ - 9.13577635285698, - 0.932425089751306 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450": [ + 0.0028684730641543865, + 0.0015595923749998938 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt350to450": [ - 63.9414474399727, - 2.03905066298236 + "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf": [ + 0.38356107473373413, + 0.1384044460665349 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt650toinf": [ - 1e-06, - 1e-06 + "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750": [ + 4.582530975341797, + 1.1475851973467375 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt350to450": [ - 6.15591620074559, - 0.806842234053552 + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf": [ + 0.004952816758304834, + 0.0026333566703386955 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt450to550": [ - 0.208258611970768, - 0.104169180748911 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550": [ + 0.3125235438346863, + 0.11940397710865455 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt650toinf": [ - 1e-06, - 1e-06 + "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf": [ + 0.026390094310045242, + 0.009323039678804318 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt450to550": [ - 1e-06, - 1e-06 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf": [ + 0.027011550962924957, + 0.014199580543983582 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt250to350": [ - 1e-06, - 1e-06 + "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ + 1.8644421100616455, + 0.40430263741825945 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt650toinf": [ - 1e-06, - 1e-06 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550": [ + 0.07667200267314911, + 0.05973607093952754 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt350to450": [ - 0.0363169984468997, - 0.0327392874126047 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450": [ + 0.1501055210828781, + 0.05452963947682229 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt250to350": [ - 2.58790885453117, - 0.483532674904708 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf": [ + 0.007389694452285767, + 0.007312691383851847 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt350to450": [ - 0.00969927301663271, - 0.00847120082993676 + "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf": [ + 2.2859065532684326, + 0.3613323764017507 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt450to550": [ - 1e-06, - 1e-06 + "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750": [ + 0.034480269998311996, + 0.015415623842867382 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt450to550": [ - 0.0805488010785465, - 0.0808450805924587 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350": [ + 0.05485868826508522, + 0.01266809341128866 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650": [ - 0.328611891424795, - 0.175133738931433 + "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ + 45.25332260131836, + 2.925590624812586 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt250to350": [ - 52.7977487243188, - 2.32791863181093 + "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550": [ + 0.4563426971435547, + 0.2243779471799549 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt550to650": [ - 1e-06, - 1e-06 + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350": [ + 0.2188977301120758, + 0.11514963281929526 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt550to650": [ - 1e-06, - 1e-06 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450": [ + 0.016708165407180786, + 0.006643099351738649 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt450to550": [ - 0.00228258759217645, - 0.00138926111446505 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650": [ + 0.23415082693099976, + 0.062432829354040986 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt450to550": [ - 1e-06, - 1e-06 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550": [ + 0.14551430940628052, + 0.08897750473568133 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt650toinf": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf": [ + 0.002132492372766137, + 0.0011445933294798407 + ], + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf": [ 1e-06, 1e-06 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt250to350": [ - 0.0225365447569472, - 0.0134908938070681 - ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ - 1236.07889861506, - 20.4320978044065 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350": [ + 0.30000126361846924, + 0.08273397509404434 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt250to350": [ - 0.23627762621645, - 0.119638961803065 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550": [ + 1.1007614135742188, + 0.4065920824480654 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt550to650": [ - 12.0443307996124, - 0.783704440207258 + "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650": [ + 0.05830053240060806, + 0.015871370475274506 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt250to350": [ - 13.0120194687281, - 1.46509194279542 + "bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350": [ + 1.839701771736145, + 0.36721997177080223 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ - 10.5537192595657, - 0.674844741445349 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450": [ + 0.011929214932024479, + 0.02199479281054961 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt550to650": [ - 0.0301743867761975, - 0.0230311956843815 + "bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450": [ + 1.103358507156372, + 0.2924392454594268 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt550toinf": [ - 0.187232074326644, - 0.12212691409319 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350": [ + 0.464893102645874, + 0.12599475546555391 ], - "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500": [ - 18.3665213776671, - 1.30384295862709 + "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550": [ + 0.5772325992584229, + 0.11477417935125758 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt550to650": [ - 1e-06, - 1e-06 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350": [ + 0.1658487319946289, + 0.015655241769902427 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt450to550": [ - 1e-06, - 1e-06 + "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750": [ + 2.4189612865448, + 0.7815624376892094 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt450to550": [ - 1e-06, - 1e-06 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550": [ + 2.9653396606445312, + 0.713767100661139 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt250to350": [ - 0.559426708423644, - 0.237675318743914 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550": [ + 0.03429132699966431, + 0.06803149184874815 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt450to550": [ - 1e-06, - 1e-06 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf": [ + 0.008720971643924713, + 0.00926132344699189 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450": [ - 3.72347059413077, - 0.559251217298512 + "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600": [ + 0.4527864456176758, + 0.2033755720181134 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt250to350": [ - 0.252813378362943, - 0.134480352135847 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf": [ + 0.029989417642354965, + 0.01506249395911023 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt250to350": [ - 0.00997724364381121, - 0.00455471923087201 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf": [ + 0.09519509971141815, + 0.07466759559119288 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt350to450": [ - 0.00342978577737835, - 0.0021297566475547 + "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ + 0.4699110984802246, + 0.1471567413672499 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550": [ - 12.010326640649, - 1.06909284723467 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450": [ + 0.03144028037786484, + 0.07345513587510827 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt250to350": [ - 0.122906991482153, - 0.083354282081159 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550": [ + 1.7218912839889526, + 0.3001844757619814 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt350to450": [ - 1e-06, - 1e-06 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf": [ + 0.0009819065453484654, + 0.0009819065229165925 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt250to350": [ - 0.0516756821183801, - 0.0380885411107625 + "bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550": [ + 0.8723913431167603, + 0.27599614626973995 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350": [ - 9.13338527703416, - 0.931962410627294 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650": [ + 0.48680153489112854, + 0.29218288541430587 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt250to350": [ - 0.00578367543227639, - 0.0042629676173198 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350": [ + 0.06282573193311691, + 0.04924226698849888 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt550to650": [ - 0.915370076011414, - 0.263875511419589 + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf": [ + 0.04024767130613327, + 0.04104820198065654 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt550to650": [ - 0.0105603055624684, - 0.00778367340438506 + "bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf": [ + 0.005625532940030098, + 0.003268626296238382 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750": [ - 9.44881069788386, - 0.649472359559195 + "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500": [ + 0.3803560137748718, + 0.15800222502417952 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt450to550": [ - 0.0233688643737969, - 0.00762160480962061 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450": [ + 0.44366592168807983, + 0.20894346588202692 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt550to650": [ - 1e-06, - 1e-06 + "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500": [ + 7.46815299987793, + 1.132808676674466 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt350to450": [ - 4.68063093206762, - 0.595649758605991 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450": [ + 4.3292107582092285, + 0.9325536393414188 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt650toinf": [ - 0.155391080281974, - 0.0646430262088115 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf": [ + 0.07844755798578262, + 0.031247868688133618 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt450to550": [ - 1e-06, - 1e-06 + "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf": [ + 0.10379357635974884, + 0.03391281677170746 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt550toinf": [ - 1e-06, - 1e-06 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550": [ + 0.06491384655237198, + 0.05119895644286061 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt250to350": [ - 16.2266335854892, - 1.20712147672053 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450": [ + 0.3696509301662445, + 0.1090786627597388 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt350to450": [ - 0.111607923868968, - 0.0714147021779036 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650": [ + 0.06939700245857239, + 0.03541761258074815 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt250to350": [ - 1.34521504760931, - 0.371109560334059 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450": [ + 0.3051089346408844, + 0.13544538660543318 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt650toinf": [ - 1e-06, - 1e-06 + "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ + 22.85711669921875, + 2.1470545637305896 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt650toinf": [ - 1e-06, - 1e-06 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350": [ + 6.267366886138916, + 0.5810381399297326 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt250to350": [ - 0.0135086976399845, - 0.00748409030048426 + "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ + 3.0888543128967285, + 0.813200864286471 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt550to650": [ - 0.0207102469363897, - 0.00956802667483779 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf": [ + 1.1820456981658936, + 0.27684641296142204 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt450to550": [ - 0.0685571792818455, - 0.0678669440844079 + "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf": [ + 0.6006410121917725, + 0.3317086933336043 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt250to350": [ - 11.0539129812538, - 0.882666979977671 + "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500": [ + 9.329036712646484, + 1.7982574452056104 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt650toinf": [ + "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ + 3.6150155067443848, + 0.8276904304429195 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf": [ 1e-06, 1e-06 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt650toinf": [ - 0.00355449537163473, - 0.00251340778097912 - ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt250to350": [ - 12.0889484377261, - 1.06130749249143 + "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500": [ + 1.3700628280639648, + 0.15273644417798826 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt350to450": [ - 5.32291198469415, - 0.652048575843819 + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350": [ + 0.28236961364746094, + 0.07706228005410648 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ - 5.08048935524026, - 0.466365983538898 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550": [ + 0.19840580224990845, + 0.023986104464755107 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt450to550": [ - 0.00774856829343153, - 0.00629722236214793 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350": [ + 5.615801811218262, + 0.7910051805802575 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt450to550": [ - 0.684534374707337, - 0.206764534184026 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350": [ + 0.30573636293411255, + 0.1390520969668174 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt650toinf": [ - 0.0323106928283041, - 0.0107286167906608 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf": [ + 0.13334175944328308, + 0.05315295247387372 ], "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 786.12693080679, - 8.63375149056391 - ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt450to550": [ - 0.379237327359641, - 0.148943983159391 + 8.405059814453125, + 0.682346950028464 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt350to450": [ - 0.904894809521667, - 0.313227984467957 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550": [ + 0.019096795469522476, + 0.05869379935503737 ], "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650": [ - 11.8215877913726, - 1.03066794639736 + 0.6935058236122131, + 0.250230555044673 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt550toinf": [ - 1e-06, - 1e-06 + "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ + 62.887535095214844, + 4.052641687512661 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt450to550": [ - 2.05331998401141, - 0.378512483331511 + "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf": [ + 0.03923215717077255, + 0.034007713840693725 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt650toinf": [ - 0.00489028315958939, - 0.00718396217229457 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf": [ + 0.1906137466430664, + 0.08658489961105557 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt350to450": [ - 1e-06, - 1e-06 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350": [ + 0.21306976675987244, + 0.06543021161366164 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt250to350": [ - 2.58233441478015, - 0.505339614316152 + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf": [ + 0.080062635242939, + 0.05657374946274187 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt250to350": [ - 0.0168617406211529, - 0.0114524119435749 + "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ + 131.6018524169922, + 5.753110109570818 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt450to550": [ + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550": [ + 0.3640643060207367, + 0.2023738362349018 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650": [ + 0.1569748967885971, + 0.0423339254801384 + ], + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf": [ 1e-06, 1e-06 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt350to550": [ - 0.738932477348612, - 0.263175052493269 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550": [ + 0.30400902032852173, + 0.08085527614707619 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ - 2.58092890015701, - 0.335802034073554 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf": [ + 0.1643502116203308, + 0.09980449222209585 ], - "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ - 3042.6495812168, - 20.093111774872 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf": [ + 0.011286508291959763, + 0.009018027228376349 ], - "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750": [ - 24.0839860085654, - 1.00663968970182 + "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 0.27439266443252563, + 0.16009864743095018 + ], + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650": [ + 0.014752641320228577, + 0.005863111911769016 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf": [ + 0.5923924446105957, + 0.16968955168780225 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt550to650": [ - 0.358476691818715, - 0.155733495444778 + "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ + 196.6719207763672, + 6.853422358602135 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt350to550": [ - 0.282002805657338, - 0.120674683674448 + "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 0.4672181010246277, + 0.17312646821762112 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt650toinf": [ - 0.2989140483658, - 0.151159229721506 + "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf": [ + 0.07844939082860947, + 0.06882786123309147 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ - 0.713470873341037, - 0.111737624506525 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450": [ + 2.834980010986328, + 0.632939741887296 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt250to350": [ - 38.1676221273871, - 2.17494634803431 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350": [ + 0.8218334317207336, + 0.2061461822776936 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt650toinf": [ - 1e-06, - 1e-06 + "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ + 0.8670873641967773, + 0.22568184286202658 ], - "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ - 89.8141392706594, - 5.26015267101784 + "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf": [ + 1.2364739179611206, + 0.5685934231855955 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt250to350": [ - 0.265759879678517, - 0.148765736612221 + "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ + 3.8715155124664307, + 0.9078147817536585 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt350to450": [ - 0.0170399053016135, - 0.00790680266760792 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650": [ + 0.027383938431739807, + 0.01711326013827249 ], - "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650": [ - 3.28905854642157, - 0.430242438818133 + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf": [ + 0.012716304510831833, + 0.0076633795576321615 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt250to350": [ - 1e-06, - 1e-06 + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf": [ + 0.030764292925596237, + 0.054959708474045285 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt550to650": [ - 1e-06, - 1e-06 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf": [ + 0.06559186428785324, + 0.026040791622087407 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt550to650": [ - 1e-06, - 1e-06 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450": [ + 0.027526605874300003, + 0.006822493846143996 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt450to550": [ - 0.0665883748656922, - 0.0537052260094119 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf": [ + 0.01024005189538002, + 0.00892289992966824 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt450to550": [ - 0.667881431724111, - 0.252145994012174 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550": [ + 3.675601005554199, + 0.6990209580821807 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt250to350": [ - 10.1756461543494, - 1.00741477320465 + "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ + 5.914949417114258, + 0.7389385697490367 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt350to450": [ - 5.61819102305719, - 0.744382661738062 + "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650": [ + 0.1329939067363739, + 0.027902716697221643 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt250to350": [ - 10.464421004544, - 0.942546892676485 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550": [ + 0.3353332281112671, + 0.11885142105225491 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt250to350": [ - 57.2907341315756, - 1.77811148011252 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550": [ + 0.06170230358839035, + 0.07272175803315209 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt650toinf": [ - 0.0126665692811712, - 0.00584802092159043 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550": [ + 0.4110850393772125, + 0.21720674323029412 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt250to350": [ - 0.0992910378172715, - 0.0728338635169543 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350": [ + 0.020051244646310806, + 0.024611572393564304 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 1.6323863427393, - 0.378047964051182 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450": [ + 0.2927207946777344, + 0.2610733112407287 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt650toinf": [ - 1e-06, - 1e-06 + "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550": [ + 6.444501876831055, + 1.3240577374603515 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt350to450": [ - 0.00130986098485087, - 0.00130986098485087 + "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ + 0.12681768834590912, + 0.15087658624261524 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt550to650": [ - 0.00577079359392755, - 0.0042534728141664 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650": [ + 0.04643092304468155, + 0.022393220047978182 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt550to650": [ - 1e-06, - 1e-06 + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf": [ + 0.03196578100323677, + 0.029365715812373093 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt650toinf": [ - 0.203073075106472, - 0.0704551560737235 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650": [ + 0.1815764307975769, + 0.07994139491732141 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt550to650": [ - 0.157495457095056, - 0.111691604373952 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350": [ + 0.08370210230350494, + 0.05613827303939795 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt550to650": [ - 1e-06, - 1e-06 + "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550": [ + 0.1592208743095398, + 0.05890603368854752 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt350to450": [ - 0.716226211925791, - 0.19785343784267 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550": [ + 0.19809268414974213, + 0.1403710842475532 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt550to650": [ - 0.0354165941028566, - 0.0298529599616482 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf": [ + 0.015038743615150452, + 0.015136152282391893 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt350to450": [ - 0.869568693465606, - 0.352685449649896 + "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf": [ + 0.3800194561481476, + 0.21048270131414848 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt550to650": [ - 1e-06, - 1e-06 + "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ + 6.496616840362549, + 1.4151653613590978 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550": [ - 0.0903266209825483, - 0.0733991459424049 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550": [ + 0.41919881105422974, + 0.22768118610569457 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt550to650": [ - 3.56979538146872, - 0.343366400614647 + "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ + 0.16949093341827393, + 0.11771223725043578 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt350to550": [ - 0.152355058641565, - 0.10949127995846 + "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500": [ + 0.7895978689193726, + 0.14256335993966032 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf": [ - 1.05866192381518, - 0.269955701985253 + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf": [ + 0.00277153542265296, + 0.0021178693088978197 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt250to350": [ - 0.0976074239357444, - 0.0654385250151451 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf": [ + 0.010009100660681725, + 0.010009100785576075 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt350to450": [ - 4.97103000662263, - 0.702130280611547 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450": [ + 0.19864925742149353, + 0.08662795033981793 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt450to550": [ - 0.130696222459846, - 0.0980958789157232 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350": [ + 0.06839663535356522, + 0.017524187720148642 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to350": [ - 242.380769656415, - 5.15229536687631 + "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550": [ + 9.380876541137695, + 1.4115378657082234 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt450to550": [ - 1e-06, - 1e-06 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350": [ + 1.0853462219238281, + 0.2602196106442013 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt550toinf": [ - 0.109667935769453, - 0.0808328310116599 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550": [ + 0.0033204301726073027, + 0.0012696048334307891 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt650toinf": [ - 1e-06, - 1e-06 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550": [ + 0.8041593432426453, + 0.18897019547949662 ], - "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf": [ - 4.72946461234821, - 0.648611333643023 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf": [ + 0.10948646068572998, + 0.034387521596425205 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt350to450": [ - 0.00328759220467148, - 0.00232467874169924 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf": [ + 0.018550151959061623, + 0.01831745160467877 ], - "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550": [ - 6.65982811182515, - 0.684946979488119 + "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600": [ + 2.3506033420562744, + 0.8018841392709651 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt550to650": [ - 1e-06, - 1e-06 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ + 0.02580987848341465, + 0.012060365138901007 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt550to650": [ - 0.0331658247178597, - 0.028173270236298 + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf": [ + 6.797481060028076, + 1.2282699246281732 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt450to550": [ - 0.00137788139108674, - 0.0053593193273253 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350": [ + 22.88958168029785, + 1.6121900707568213 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt350to450": [ - 0.000126171701497643, - 8.92168657228279e-05 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf": [ + 0.1309555470943451, + 0.04020524866482621 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650": [ - 1.24956854760658, - 0.354620381863576 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550": [ + 0.017305251210927963, + 0.012021071808430211 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt450to550": [ - 1e-06, - 1e-06 + "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ + 2.0922930240631104, + 0.4550052773050147 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt550to650": [ - 0.00207526688974882, - 0.00160380331828936 + "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf": [ + 0.06659053266048431, + 0.021886822428972823 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650": [ - 1.54571071984716, - 0.360596577821155 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350": [ + 0.009047651663422585, + 0.0028953346344660325 + ] + }, + "qcdcr_ttbarplusw": { + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 15.239789505137196, + 7.0845137315442885 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf": [ - 0.825185401800182, - 0.22155148447079 + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ + 23.444379112895604, + 9.333152938036694 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt550to650": [ - 0.0799924464437298, - 0.0525428497481117 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ + 509.19389423348866, + 8.183247109369079 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt450to550": [ - 1e-06, - 1e-06 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ + 6.616276187708081, + 4.906919809220409 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt250to350": [ - 0.18489290882229, - 0.116889356081022 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550": [ + 27.36630158649041, + 6.104285123406107 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf": [ - 5.540079939819, - 0.486938771167229 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450": [ + 11.716203059954978, + 4.797569246452596 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt450to550": [ - 1e-06, - 1e-06 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf": [ + 10.270644517930123, + 1.986169497329325 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to450": [ - 2.12421231821223, - 0.466872284491439 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550": [ + 12.964251463335131, + 6.487994614582682 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt550to650": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550": [ + 0.09139132824657281, + 0.03062118504619373 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt350to450": [ - 0.688279819884231, - 0.253670671729121 + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf": [ + 6.1126567890069055, + 0.3913157495383084 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt550toinf": [ - 1e-06, - 1e-06 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf": [ + 5.534352217817286, + 3.864853959967725 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt450to550": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650": [ + 0.20556451538686815, + 0.08186752984848325 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt650toinf": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550": [ + 0.5320434042132547, + 0.11998389904755895 ], - "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf": [ - 6.91886182020334, - 0.763267891256008 + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf": [ + 0.07814241833966662, + 0.02667831481064904 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ - 0.413743751123844, - 0.165916461642167 + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf": [ + 0.015068917324242648, + 0.015068917325203289 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf": [ - 1.31330264146248, - 0.377667045996063 + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf": [ + 4.008687179870321, + 3.3079080879090856 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt350to550": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550": [ + 0.4767594136092157, + 0.12256471023277343 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt350to450": [ - 4.94583206177069, - 0.588654472216838 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ + 18.76954077618757, + 6.408702475288948 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt250to350": [ - 0.445141192461082, - 0.184703758361242 + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350": [ + 29.42056625052055, + 11.80114675495851 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt250to350": [ - 0.23836171757162, - 0.133712956325492 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf": [ + 0.6169971785075177, + 0.3201629402997711 ], - "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf": [ - 29.4337594635522, - 0.775939481768996 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ + 103.77836109402756, + 15.287370939170247 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt350to450": [ - 0.00360829742626035, - 0.0513357813471813 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550": [ + 23.94466509478002, + 8.383825295329805 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt450to550": [ - 1.86540472811406, - 0.397363393422681 + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550": [ + 0.2935641199528618, + 0.07017021540371336 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600": [ - 14.0032941253187, - 1.15299998274173 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350": [ + 87.40656018619302, + 18.563247310009316 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt350to450": [ - 0.00124489412726441, - 0.00396003215057801 + "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf": [ + 3.4997857110788573, + 3.4070851633240653 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt550to650": [ - 0.0819004347273516, - 0.067305507851926 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450": [ + 43.592454568111634, + 13.632029924933216 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt250to350": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350": [ + 22.980493121615837, + 9.847180489650908 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt350to450": [ - 0.159398342620658, - 0.110773265211144 + "bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf": [ + 0.8876276233586395, + 0.19214795692843628 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350": [ - 3.55865656609409, - 0.540190248397174 + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ + 42.63706927821568, + 13.293581845881222 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt450to550": [ - 1e-06, - 1e-06 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ + 229.6891469528, + 3.441811232719843 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt550to650": [ - 0.253798577244762, - 0.0746281574300127 + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650": [ + 4.460085514637285, + 4.057903718715472 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ - 2.51426522785561, - 0.396786540522491 + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650": [ + 0.19964257812807773, + 0.08912746303157758 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ - 0.327689005521374, - 0.126940322745369 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650": [ + 6.1843266461171424, + 3.552543522408202 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt350to450": [ - 7.44696103085466, - 0.787342700262852 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf": [ + 3.871439934969203, + 0.41045986894181347 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt350to450": [ - 21.5496309632501, - 1.02352432635173 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550": [ + 19.779874216343615, + 7.534160999711365 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt550to650": [ - 0.431189878901084, - 0.178859204333872 + "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ + 5.357164782112704, + 4.519556851365772 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt250to350": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf": [ + 0.19293203905363043, + 0.07330570372661636 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt350to450": [ - 0.0410856479001406, - 0.0201730138930685 + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550": [ + -4.574695322370644, + 4.758781283208817 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt450to550": [ - 1e-06, - 1e-06 + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ + 7.502694385255381, + 0.6187064534437717 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350": [ - 8.73634926312277, - 0.860832249568696 + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ + 160.4794590415238, + 24.19896271165871 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt450to550": [ - 0.0764454791418747, - 0.0638283167880321 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450": [ + 137.3835591690647, + 21.647178125816314 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt650toinf": [ - 0.154453555929373, - 0.111168119472553 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ + 3.914813277506255, + 0.46380279742177327 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_htlt1000_MET_pt350to550": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 10.73874776962657, + 6.253056508876904 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt350to450": [ - 0.00305037584823089, - 0.0022867941575842 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ + 108.90801219825244, + 6.769341833989803 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt350to450": [ - 0.253531498978658, - 0.130178207494529 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350": [ + 90.61256102088987, + 17.975863092426376 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt350to450": [ - 0.356047188122432, - 0.0900289516719721 + "bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf": [ + 7.003798847372309, + 4.921476363387794 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt350to550": [ - 0.00318177444113594, - 0.00277215579208131 + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350": [ + 56.39178031124857, + 12.695088761901983 ], - "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf": [ - 5.54961226464536, - 0.750455655281144 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ + 11.958233757492962, + 1.9092053244908584 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt650toinf": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350": [ + 164.8329474411305, + 24.312405972384656 ], - "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400": [ - 136.854894658826, - 4.82601642410954 + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450": [ + 15.246166294796012, + 6.282579760519277 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt550toinf": [ - 0.00405901133510309, - 0.00287015443996445 + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450": [ + 0.14966281596480258, + 0.03604759201360094 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf": [ - 7.31724027679732, - 0.599097094732571 + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550": [ + 5.267348129569882, + 3.5642795253726787 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt550toinf": [ - 6.53457509818315e-05, - 4.63223671299057e-05 + "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf": [ + 2.2599017844058835, + 0.6621926230568845 ], - "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf": [ - 5.5247387260911, - 0.684500527289299 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750": [ + 13.15818709615769, + 7.419627960031297 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt550toinf": [ - 0.22435985107871, - 0.130832271583404 + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf": [ + 2.3800760337592237, + 2.1606596019355586 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450": [ - 2.87359769464865, - 0.498085146665623 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf": [ + 8.86385040954383, + 5.425744771403913 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt250to350": [ - 2.26753380352828, - 0.417877211061649 + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450": [ + 1.0927672974157758, + 0.10427043252616115 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt450to550": [ - 0.00415636329433657, - 0.00643491434955776 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf": [ + 1.6136519788515216, + 0.18877113836446976 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf": [ - 0.107663775715217, - 0.0936690185077168 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf": [ + 99.02421222787598, + 1.4931174904853932 ], - "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ - 60.2854894304478, - 2.02874957247434 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf": [ + 17.830739569032175, + 7.621823382347896 ], - "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ - 696.112011914713, - 4.86313963806267 + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650": [ + 0.17166488561633741, + 0.05394867550081952 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ - 75.6305620827447, - 3.59571094694982 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450": [ + 29.886787294404257, + 9.276478682001915 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt550to650": [ - 3.05667775694359, - 0.482369920970583 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf": [ + 6.030803650962298, + 0.2862561901437493 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350": [ - 4.52264746179414, - 0.664808717154101 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf": [ + 1.4178968777732734, + 0.21402561287251903 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt250to350": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550": [ + 3.2514996083812093, + 2.22331243406668 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350": [ + 601.3628012105496, + 45.06989243138188 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt550toinf": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ + 107.71231329519424, + 22.117992104462346 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt350to450": [ - 0.954409694312403, - 0.313303797536215 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ + 5.900502266460535, + 0.845081412111236 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt650toinf": [ - 0.0813768897520898, - 0.0792757424370101 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ + 100.41887435842068, + 9.961551739422877 ], - "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 30.2337696080297, - 1.72771473019154 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650": [ + 2.640257792353623, + 0.32884759836212163 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt250to350": [ - 0.283889161391657, - 0.159660399311477 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf": [ + 20.34262691400818, + 7.047375323686307 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500": [ - 131.89811659408, - 5.90685186153955 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf": [ + 13.128146384474348, + 5.88368157099497 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf": [ - 2.56123679357029, - 0.468070461303023 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550": [ + 32.498918303396295, + 9.947019227141851 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt450to550": [ - 1.39115607643492, - 0.296558121748564 + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf": [ + 0.02755967395933112, + 0.024901569436829755 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt550toinf": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350": [ + 35.09560862354533, + 10.878760422880205 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt450to550": [ - 0.0750504258599805, - 0.0506926982290456 + "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ + 5.474515904260443, + 1.4577773390164293 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt350to450": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450": [ + 0.5719407732885884, + 0.10031784428739532 ], - "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 94.2583245702178, - 3.12179008579758 + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350": [ + 10.397019243351679, + 5.3066351235965685 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt450to550": [ - 7.89450037288852, - 0.864011847385729 + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550": [ + 17.3503112871349, + 1.4466358008339346 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt250to350": [ - 0.275809716720776, - 0.174202841522645 + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450": [ + 6.475591110522373, + 4.538026296462683 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt550to650": [ - 0.0255603159205144, - 0.0114152530623869 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf": [ + 0.4462018081894712, + 0.1392298645126096 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650": [ - 0.183635939325988, - 0.119078372314771 + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf": [ + 2.2322062241098592, + 2.0692315948070177 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450": [ - 0.408892151870863, - 0.164791461334289 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ + 23.001064976534053, + 7.7919202201263325 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt250to350": [ - 12.0346998626705, - 1.06466601387394 + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350": [ + 21.086876512938034, + 9.146519382475942 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt550toinf": [ - 0.00174495057675743, - 0.00174495057675743 + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf": [ + 1.5596454911537876, + 0.19576150923295638 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf": [ - 0.515465084607693, - 0.175563789734513 + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ + 73.22042464730703, + 16.519752002419672 ], - "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 466.505242954663, - 6.69170230447838 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ + 13.647650782037545, + 3.0573887114418516 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450": [ - 63.600902967853, - 2.52754232990102 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650": [ + 9.765655880005852, + 4.7873279627242855 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt550to650": [ - 0.500877946804804, - 0.199204209713844 + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ + 18.646683695405272, + 7.762434971397133 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt350to450": [ - 0.0443333078101244, - 0.0283388338968346 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650": [ + 3.1967124980346853, + 0.3216164597613509 ], - "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550": [ - 117.371082699107, - 3.90292596590998 + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350": [ + 4.3161251416388495, + 3.035248314819754 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600": [ - 35.7895453240611, - 2.32521805823291 + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450": [ + 11.61293452749942, + 7.693463728190789 + ] + }, + "phocr_data": { + "bin_phocr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550": [ + 12.0, + 3.4641016151377544 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt450to550": [ - 0.477581701764588, - 0.164604978594455 + "bin_phocr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650": [ + 22.0, + 4.69041575982343 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt550toinf": [ - 1e-06, - 1e-06 + "bin_phocr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ + 3.0, + 1.7320508075688772 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt350to450": [ - 0.00239292729710144, - 0.00169405455904207 + "bin_phocr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf": [ + 3011.0, + 54.872579673275794 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt550toinf": [ - 0.00133701772272016, - 0.00133701772272016 + "bin_phocr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 6.0, + 2.449489742783178 ], - "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf": [ - 9.13584526808875, - 0.780754027165554 + "bin_phocr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ + 1017.0, + 31.89043743820395 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt450to550": [ - 1e-06, - 1e-06 + "bin_phocr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf": [ + 7.0, + 2.6457513110645907 ], - "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ - 17.4407820128593, - 1.41180176923605 + "bin_phocr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 4.0, + 2.0 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt550to650": [ - 0.898358479934754, - 0.250255260056359 + "bin_phocr_hm_nb1_highmtb_htlt1000_MET_pt450to550": [ + 771.0, + 27.76688675382964 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt250to350": [ - 0.444307555311408, - 0.178985781162 + "bin_phocr_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650": [ + 4.0, + 2.0 ], - "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500": [ - 26.4816598464613, - 1.92017962019703 + "bin_phocr_hm_nb1_highmtb_htgt1500_MET_pt550to650": [ + 21.0, + 4.58257569495584 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt550to650": [ - 0.28458057970538, - 0.161025936003656 + "bin_phocr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf": [ + 27.0, + 5.196152422706632 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt250to350": [ - 1e-06, - 1e-06 + "bin_phocr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ + 85.0, + 9.219544457292887 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt250to350": [ - 1.43065888819724, - 0.293911563506345 + "bin_phocr_hm_nb1_highmtb_htgt1500_MET_pt650toinf": [ + 37.0, + 6.082762530298219 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt250to350": [ - 0.24167337969308, - 0.148053328141384 + "bin_phocr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ + 35.0, + 5.916079783099616 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt550to650": [ - 1e-06, - 1e-06 + "bin_phocr_hm_nb1_highmtb_htlt1000_MET_pt550to650": [ + 271.0, + 16.46207763315433 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt350to450": [ - 0.00332868295005261, - 0.00417013783352634 + "bin_phocr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650": [ + 8.0, + 2.8284271247461903 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt550to650": [ - 4.45778133725504, - 0.460639625138771 + "bin_phocr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350": [ + 1155.0, + 33.98529093593286 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt450to550": [ - 0.0031085325713292, - 0.00567755158854884 + "bin_phocr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf": [ + 5.0, + 2.23606797749979 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt350to450": [ - 125.851052209549, - 3.85002180226569 + "bin_phocr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ + 19.0, + 4.358898943540674 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350": [ - 2391.6461539562, - 16.4441405439281 + "bin_phocr_hm_nb1_highmtb_htgt1500_MET_pt450to550": [ + 35.0, + 5.916079783099616 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt550to650": [ - 1e-06, - 1e-06 + "bin_phocr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550": [ + 5.0, + 2.23606797749979 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt450to550": [ - 1e-06, - 1e-06 + "bin_phocr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ + 209.0, + 14.45683229480096 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt350to450": [ - 0.00694631114444135, - 0.00682886267284019 + "bin_phocr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf": [ + 14.0, + 3.7416573867739413 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ - 53.602240063884, - 2.44031800467782 + "bin_phocr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450": [ + 51.0, + 7.14142842854285 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf": [ - 3.62630149713925, - 0.492360541842589 + "bin_phocr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500": [ + 3.0, + 1.7320508075688772 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350": [ - 76.0419535139824, - 2.72686205971366 + "bin_phocr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450": [ + 9.0, + 3.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt450to550": [ - 40.1295795696513, - 2.15593255363073 + "bin_phocr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ + 169.0, + 13.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt250to350": [ - 0.919632199953157, - 0.32379163693686 + "bin_phocr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ + 25.0, + 5.0 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_htlt1000_MET_pt550toinf": [ - 1e-06, - 1e-06 + "bin_phocr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350": [ + 17.0, + 4.123105625617661 ], - "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf": [ - 551.648963356228, - 4.59964067476837 + "bin_phocr_hm_nb3_highmtb_htlt1000_MET_pt350to550": [ + 76.0, + 8.717797887081348 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt350to450": [ - 0.0967426671202371, - 0.0636913475315749 + "bin_phocr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ + 9.0, + 3.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt650toinf": [ - 0.087134020501142, - 0.0573617590569128 + "bin_phocr_hm_nb3_highmtb_htgt1500_MET_pt550toinf": [ + 2.0, + 1.4142135623730951 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt350to450": [ - 4.47411199905695, - 0.665464017279413 + "bin_phocr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650": [ + 5.0, + 2.23606797749979 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt350to450": [ - 0.346407324431747, - 0.224570303458867 + "bin_phocr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650": [ + 2.0, + 1.4142135623730951 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550": [ - 18.4712851416396, - 1.44949482774266 + "bin_phocr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500": [ + 167.0, + 12.922847983320086 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt350to450": [ - 1.82021000154804, - 0.400603431391161 + "bin_phocr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ + 183.0, + 13.527749258468683 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt650toinf": [ - 1.282703681597, - 0.304830514070317 + "bin_phocr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450": [ + 9.0, + 3.0 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ - 755.087891646982, - 14.9872320578889 + "bin_phocr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf": [ + 12.0, + 3.4641016151377544 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf": [ - 0.474844926754499, - 0.193921632585779 + "bin_phocr_hm_nb3_highmtb_htlt1000_MET_pt550toinf": [ + 8.0, + 2.8284271247461903 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt250to350": [ - 1.15339888149512, - 0.292774887740954 + "bin_phocr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750": [ + 110.0, + 10.488088481701515 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt250to350": [ - 1.72272624591044, - 0.386760574020326 + "bin_phocr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500": [ + 513.0, + 22.64950330581225 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt350to450": [ - 0.106395716493069, - 0.0784209797632046 + "bin_phocr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350": [ + 324.0, + 18.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt250to350": [ - 1e-06, - 1e-06 + "bin_phocr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550": [ + 17.0, + 4.123105625617661 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf": [ - 0.273851925322599, - 0.119311110451779 + "bin_phocr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf": [ + 32.0, + 5.656854249492381 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt550to650": [ - 0.00376732786431742, - 0.00266390307981188 + "bin_phocr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650": [ + 1.0, + 1.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt250to350": [ - 4.69482362230047, - 0.634971944245018 + "bin_phocr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350": [ + 11.0, + 3.3166247903554 ], - "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650": [ - 3.26035668277551, - 0.47190602583101 + "bin_phocr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf": [ + 30.0, + 5.477225575051661 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350": [ - 1.92621309742312, - 0.402871763702201 + "bin_phocr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550": [ + 272.0, + 16.492422502470642 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt450to550": [ - 1e-06, - 1e-06 + "bin_phocr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ + 7.0, + 2.6457513110645907 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt250to350": [ - 1e-06, - 1e-06 + "bin_phocr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf": [ + 8.0, + 2.8284271247461903 ], - "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550": [ - 25.5018653366879, - 1.53379520361247 + "bin_phocr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf": [ + 2.0, + 1.4142135623730951 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt250to350": [ - 0.00944279855376899, - 0.00498030374258967 + "bin_phocr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650": [ + 8.0, + 2.8284271247461903 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt350to450": [ - 1.0099961576054, - 0.25967351625994 + "bin_phocr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600": [ + 25.0, + 5.0 + ], + "bin_phocr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400": [ + 183.0, + 13.527749258468683 ], - "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750": [ - 29.4376314410005, - 0.960224729305128 + "bin_phocr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450": [ + 164.0, + 12.806248474865697 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt450to550": [ - 7.83963718595062, - 0.863876813558546 + "bin_phocr_hm_nb1_highmtb_htlt1000_MET_pt350to450": [ + 2042.0, + 45.18849411078001 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt550toinf": [ - 1e-06, - 1e-06 + "bin_phocr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf": [ + 9.0, + 3.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt350to450": [ - 0.0790793690377513, - 0.0656780323082545 + "bin_phocr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650": [ + 54.0, + 7.3484692283495345 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt250to350": [ - 1.17231225395621, - 0.334440653828816 + "bin_phocr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf": [ + 1.0, + 1.0 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt250to350": [ - 2.65079385043144, - 0.45006405021959 + "bin_phocr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf": [ + 100.0, + 10.0 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt650toinf": [ - 0.779578470593084, - 0.255234723044398 + "bin_phocr_hm_nb1_highmtb_htgt1500_MET_pt250to350": [ + 93.0, + 9.643650760992955 ], - "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf": [ - 20.5716609133668, - 1.1766092811734 + "bin_phocr_hm_nb3_highmtb_htgt1500_MET_pt250to350": [ + 1.0, + 1.0 ], - "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750": [ - 1.55369782108132, - 0.206942319393305 + "bin_phocr_hm_nb1_highmtb_htlt1000_MET_pt650toinf": [ + 117.0, + 10.816653826391969 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt250to350": [ - 4.08670164242205, - 0.614822259623337 + "bin_phocr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600": [ + 70.0, + 8.366600265340756 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 7.78101181697061, - 0.487303045283553 + "bin_phocr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550": [ + 15.0, + 3.872983346207417 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt350to450": [ - 1e-06, - 1e-06 + "bin_phocr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750": [ + 29.0, + 5.385164807134504 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt450to550": [ - 1e-06, - 1e-06 + "bin_phocr_hm_nb1_highmtb_htgt1500_MET_pt350to450": [ + 52.0, + 7.211102550927978 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt550to650": [ - 1.26314947623594, - 0.379125571110596 + "bin_phocr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350": [ + 79.0, + 8.888194417315589 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt250to350": [ - 1.20383632428042, - 0.303271076616697 + "bin_phocr_hm_nb3_highmtb_htlt1000_MET_pt250to350": [ + 140.0, + 11.832159566199232 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt450to550": [ - 0.447470307464222, - 0.141865624148469 + "bin_phocr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf": [ + 11.0, + 3.3166247903554 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt450to550": [ - 0.173442078581884, - 0.119123713089661 + "bin_phocr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450": [ + 428.0, + 20.688160865577203 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt350to450": [ - 15.1612816309781, - 1.02860738432043 + "bin_phocr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500": [ + 41.0, + 6.4031242374328485 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt350to550": [ - 0.000432181164481073, - 0.0036966154375862 + "bin_phocr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ + 7974.0, + 89.2972563968233 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ - 0.00125815655285738, - 0.00125815655285738 + "bin_phocr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550": [ + 4.0, + 2.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt450to550": [ - 0.00782239814024714, - 0.00435563835255453 + "bin_phocr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450": [ + 39.0, + 6.244997998398398 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ - 2.33420411494639, - 0.508798984599175 + "bin_phocr_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf": [ + 3.0, + 1.7320508075688772 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt650toinf": [ - 0.00684711565312884, - 0.00684711565312884 + "bin_phocr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350": [ + 66.0, + 8.12403840463596 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt250to350": [ - 0.513258227255991, - 0.184889881237187 + "bin_phocr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ + 78.0, + 8.831760866327848 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550": [ - 66.4413937611026, - 2.60238683635255 + "bin_phocr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500": [ + 41.0, + 6.4031242374328485 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt450to550": [ - 2.00756975115564, - 0.383589592038974 + "bin_phocr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ + 34.0, + 5.830951894845301 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf": [ - 0.652760042403121, - 0.227338126696965 + "bin_phocr_hm_nb3_highmtb_htgt1500_MET_pt350to450": [ + 2.0, + 1.4142135623730951 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt250to350": [ - 159.445933236007, - 3.2411108286224 + "bin_phocr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550": [ + 4.0, + 2.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt650toinf": [ - 0.976843944148846, - 0.268461877201666 + "bin_phocr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ + 2491.0, + 49.90991885387112 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt450to550": [ - 1.06054203643597, - 0.28963949321924 + "bin_phocr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ + 11817.0, + 108.70602559196064 ], - "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf": [ - 3.72395465245747, - 0.698977985839422 + "bin_phocr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ + 3614.0, + 60.11655346075655 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt650toinf": [ - 0.0822332141010035, - 0.0803267022275446 + "bin_phocr_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750": [ + 4.0, + 2.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt550to650": [ - 1e-06, - 1e-06 + "bin_phocr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450": [ + 7.0, + 2.6457513110645907 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt350to450": [ - 0.036507257374979, - 0.0146634941791293 + "bin_phocr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650": [ + 73.0, + 8.54400374531753 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt550to650": [ - 0.232375319513174, - 0.121358818763076 + "bin_phocr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650": [ + 13.0, + 3.605551275463989 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt350to450": [ - 0.0480878869336707, - 0.0320503872179155 + "bin_phocr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750": [ + 84.0, + 9.16515138991168 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt650toinf": [ - 1e-06, - 1e-06 + "bin_phocr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550": [ + 288.0, + 16.97056274847714 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt450to550": [ - 1.05500904885618, - 0.283754220469587 + "bin_phocr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf": [ + 21.0, + 4.58257569495584 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt250to350": [ - 0.561899860588469, - 0.206154629727605 + "bin_phocr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550": [ + 28.0, + 5.291502622129181 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt550to650": [ - 1e-06, - 1e-06 + "bin_phocr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550": [ + 119.0, + 10.908712114635714 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt550toinf": [ - 1e-06, - 1e-06 + "bin_phocr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ + 127.0, + 11.269427669584644 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt650toinf": [ - 0.202795444491127, - 0.104595112499213 + "bin_phocr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750": [ + 16.0, + 4.0 + ], + "bin_phocr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf": [ + 2.0, + 1.4142135623730951 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt250to350": [ - 0.00256213673471582, - 0.00222145640413664 + "bin_phocr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ + 166.0, + 12.884098726725126 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt550to650": [ - 4.73710736280808, - 0.674549634830009 + "bin_phocr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550": [ + 169.0, + 13.0 ], - "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500": [ - 58.2343410629043, - 2.9756392571092 + "bin_phocr_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550": [ + 6.0, + 2.449489742783178 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350": [ - 6.53903095043495, - 0.762970046456776 + "bin_phocr_hm_nb3_highmtb_htgt1500_MET_pt450to550": [ + 1.0, + 1.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt650toinf": [ - 0.00705788920494333, - 0.00799769433018583 + "bin_phocr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ + 5.0, + 2.23606797749979 ], - "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ - 1625.20067048271, - 10.8881925892605 + "bin_phocr_hm_nb1_highmtb_htlt1000_MET_pt250to350": [ + 5799.0, + 76.1511654539837 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt350to450": [ - 0.00157209929715491, - 0.00511233392097085 + "bin_phocr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350": [ + 15.0, + 3.872983346207417 ], - "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf": [ - 1.37105391339279, - 0.278663007515513 + "bin_phocr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf": [ + 3.0, + 1.7320508075688772 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt250to350": [ - 0.167628860566853, - 0.137608687428908 + "bin_phocr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf": [ + 64.0, + 8.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt650toinf": [ - 0.0077109256171214, - 0.00635909135197133 + "bin_phocr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf": [ + 16.0, + 4.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt650toinf": [ - 1e-06, - 1e-06 + "bin_phocr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf": [ + 13.0, + 3.605551275463989 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt450to550": [ - 0.0399941347697002, - 0.0340733150517482 + "bin_phocr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf": [ + 97.0, + 9.848857801796104 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650": [ - 3.11592999740936, - 0.536102319303067 + "bin_phocr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500": [ + 38.0, + 6.164414002968976 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt350to450": [ - 0.197494498486758, - 0.10096383121718 + "bin_phocr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ + 27.0, + 5.196152422706632 + ] + }, + "qcdcr_qcd": { + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 2.144548902357788, + 0.5047906036204336 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt450to550": [ - 0.0855377620887534, - 0.054141369761994 + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ + 7.021172226498088, + 1.188418222813892 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf": [ - 2.30224062710221, - 0.437849372735018 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ + 5496.329161228557, + 76.60204411706091 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt450to550": [ - 1e-06, - 1e-06 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ + 10.264256982864733, + 4.426441406388267 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt550to650": [ - 0.915983857230129, - 0.202393562887327 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550": [ + 288.0586902366589, + 12.915779440247936 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt550toinf": [ - 0.583036826386621, - 0.180639675503764 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450": [ + 181.3473495391854, + 9.434288279588559 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt250to350": [ - 2.97026818383346, - 0.443901387121475 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf": [ + 14.302207999327035, + 1.5068835791295798 ], - "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 9.89324681602334, - 0.961567851344691 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550": [ + 62.128402395782615, + 4.6100393930639125 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt350to450": [ - 0.00139279420286863, - 0.00139279420286863 + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550": [ + 4.942117155679526, + 0.9180316945160054 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt250to350": [ - 0.037380860447593, - 0.0895941981610854 + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf": [ + 23.492131601124406, + 2.277594524230869 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt250to350": [ - 18.0115407132311, - 1.22602011029168 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf": [ + 1.3249013532377243, + 0.6320191926509324 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt450to550": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650": [ + 0.970180354637414, + 0.007028560819561644 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt250to350": [ - 0.0758299557544916, - 0.0737444417446039 + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550": [ + 12.958953280095562, + 2.893101835557028 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt650toinf": [ - 0.141968243153681, - 0.100178178900477 + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf": [ + 1.0206359940834, + 0.5843362541505159 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt450to550": [ - 0.316633233254185, - 0.157739879225893 + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf": [ + 0.03535295652239519, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt650toinf": [ - 0.0143870672482998, - 0.0106042606480711 + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf": [ + 9.016684966105682, + 1.3189478166729567 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500": [ - 249.218680774839, - 8.50020179434079 + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550": [ + 5.549169447945831, + 3.4002548265685024 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt450to550": [ - 1e-06, - 1e-06 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ + 104.34390050898058, + 4.874406833158759 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt250to350": [ - 16.1841615891957, - 1.25455484230823 + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350": [ + 64.46270426579373, + 8.900656975235867 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt250to350": [ - 0.0171872613603405, - 0.00978002551348947 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf": [ + 4.8448995898780325, + 0.3110345857478768 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt350to450": [ - 0.00248189357521476, - 0.00530305348852019 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ + 204.90463881748002, + 46.374692042541284 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt250to350": [ - 37.3065746347874, - 1.65807289650302 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550": [ + 52.71133638966436, + 11.602684629961967 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt450to550": [ - 0.209695003403173, - 0.190456330010026 + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550": [ + 10.55204728789929, + 1.9419059738093505 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt550to650": [ - 0.32076937922875, - 0.179208653060526 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350": [ + 543.3946944409481, + 21.34924312154827 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt550toinf": [ - 1e-06, - 1e-06 + "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf": [ + 4.214412877883657, + 0.9385438934237065 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ - 0.192939227620442, - 0.118705373457643 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450": [ + 365.91367040137135, + 23.789263023389218 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550": [ - 1.13082225889453, - 0.357732664082281 + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350": [ + 61.447113765925266, + 10.454886041536064 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt450to550": [ - 1e-06, - 1e-06 + "bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf": [ + 6.480757716593498, + 1.0795126634225027 ], - "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 30.2330768098058, - 1.76141807819499 + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ + 55.08250712018411, + 6.824824545531144 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt350to450": [ - 16.4634545369461, - 0.891820033180255 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ + 1613.0709586640814, + 31.121170502760886 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt550to650": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650": [ + 11.48828988886323, + 1.4706425929024132 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt550to650": [ - 2.1754621918521, - 0.440449139514085 + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650": [ + 2.2645950085337794, + 0.990972085389092 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt250to350": [ - 0.00215593073395513, - 0.00868823933729639 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650": [ + 17.650639549301893, + 2.678828752550825 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt550toinf": [ - 0.00964937368179894, - 0.00508752885194981 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf": [ + 4.550196048943155, + 0.7033167393008861 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt550to650": [ - 0.306801943862018, - 0.14509034630206 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550": [ + 91.84897789477871, + 10.267792170420945 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt350to450": [ - 0.00557797640127969, - 0.00302634203705162 + "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ + 7.607392857843874, + 1.296642595118437 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt450to550": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf": [ + 0.6061189490730134, + 0.8448600576391927 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt550to650": [ - 0.00828152187715604, - 0.00505733578425531 + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550": [ + 3.93383172114609, + 1.1936571607820807 ], - "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500": [ - 25.6793350021007, - 2.24204805540161 + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ + 46.393648982656984, + 3.621935388300807 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt250to350": [ - 0.0615988304269653, - 0.0431788289806283 + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ + 94.17048723086236, + 29.971707348925307 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt450to550": [ - 2.6042312811175, - 0.4554186203398 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450": [ + 374.82784492136113, + 33.87082313195806 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550": [ - 0.84258403957019, - 0.243981460845406 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ + 24.469999007120496, + 6.513879455881687 + ], + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 4.531319924700381, + 1.313433450173894 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt250to350": [ - 1.06260368631251, - 0.282931107090754 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ + 531.763907161705, + 10.836971619899755 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt550to650": [ - 0.955213370933049, - 0.310823355843968 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350": [ + 942.7884371282345, + 17.784708778982143 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt650toinf": [ - 1e-06, - 1e-06 + "bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf": [ + 9.88936203637472, + 1.079672242571146 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt350to450": [ - 0.290673619418788, - 0.213897081679491 + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350": [ + 410.4285603890867, + 56.381838764481074 ], - "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550": [ - 121.872936905992, - 2.14869464164908 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ + 50.00537786748125, + 2.9131943834251164 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt550toinf": [ - 0.00971008941401802, - 0.0054562567428347 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350": [ + 1387.862490186213, + 56.039784820558175 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt650toinf": [ - 0.00266348893863838, - 0.00266348893863838 + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450": [ + 51.11105653039374, + 15.342295099311093 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 0.00709448105316161, - 0.00393464442200226 + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450": [ + 13.404349319918047, + 1.8523617272090902 ], - "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf": [ - 2.34169857539007, - 0.311723569585507 + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550": [ + 25.70230102105665, + 2.18969323246891 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt250to350": [ - 0.0488964827136079, - 0.038945128232872 + "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf": [ + 19.041917394717906, + 6.1220591671533855 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt250to350": [ - 10.9085608520662, - 0.768159016124641 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750": [ + 33.06686728016374, + 2.5988405955379856 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt250to350": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf": [ + 3.509530377830078, + 0.7298947822833328 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt450to550": [ - 0.276926447235994, - 0.115049166267899 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf": [ + 8.478706417344508, + 0.9933145452524724 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt450to550": [ - 0.204511210377073, - 0.149126131440334 + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450": [ + 49.179303222530145, + 3.267737630537912 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt350to450": [ - 16.7987341452173, - 1.293724984838 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf": [ + 5.928877444429656, + 0.9027529331628802 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to350": [ - 17.9285815358376, - 1.33245142215565 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf": [ + 292.45700707660336, + 9.383531961116349 ], - "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 149.931161437905, - 3.96768727363735 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf": [ + 25.543914431307833, + 13.946015010345002 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to450": [ - 1.77964630924947, - 0.383026648741946 + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650": [ + 3.455670928121817, + 1.2025250474819777 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt650toinf": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450": [ + 384.4962602338404, + 9.458640726353279 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt550toinf": [ - 1e-06, - 1e-06 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf": [ + 20.543340969551338, + 1.757280165396903 ], - "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 270.750652185994, - 5.37324749840529 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf": [ + 5.857519144705648, + 1.2277243976278822 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt450to550": [ - 5.77198927665089, - 0.810982971909936 + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550": [ + 5.736511829635037, + 2.559311043366328 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt250to350": [ - 1.75126955198136, - 0.365749118447068 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350": [ + 2834.6579636315646, + 111.21388845870112 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt450to550": [ - 7.85049556746615, - 0.589889206417371 + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ + 58.52071933333936, + 6.10337256983241 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt450to550": [ - 0.019435272692507, - 0.0118663898211274 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ + 12.338761948243912, + 1.355099521392113 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt550to650": [ - 1e-06, - 1e-06 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ + 357.3317190102762, + 44.121423005827886 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt350to450": [ - 0.0409475875906212, - 0.0450228807504777 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650": [ + 4.107191140139134, + 1.1749561600907588 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt650toinf": [ - 1e-06, - 1e-06 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf": [ + 15.400461056302241, + 7.634471184118136 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt450to550": [ - 6.934834330967, - 0.866796857239789 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf": [ + 50.72125418590805, + 2.916491046896248 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt650toinf": [ - 0.00370106762142528, - 0.00225485114794775 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550": [ + 165.58760909444226, + 5.5834912574212945 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650": [ - 12.2906551078594, - 1.02250630902437 + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf": [ + 0.3121980428691473, + 0.0 ], - "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ - 345.058301201635, - 7.0260943255764 + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350": [ + 162.16501017303494, + 16.139228319537274 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350": [ - 344.7296369871, - 5.88954402205171 + "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ + 76.37654133005776, + 20.585550012968252 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750": [ - 17.0277800688478, - 0.76325005271572 + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450": [ + 24.621794412376744, + 2.892432372884123 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 1.32041730406113, - 0.194578700757135 + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350": [ + 116.61102728445074, + 6.48079142536383 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf": [ - 0.545442271824202, - 0.232547953566725 + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550": [ + 173.04430687289394, + 12.00488289305088 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt350to450": [ - 0.371466556415243, - 0.19294702960744 + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450": [ + 12.136518294294365, + 3.0325965011355573 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt450to550": [ - 0.00194287247102243, - 0.00314505566545502 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf": [ + 0.6630699471536978, + 0.09340291388402941 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt450to550": [ - 2.93470909054125, - 0.551220106720172 + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf": [ + 0.8122489442763255, + 0.5042635405062433 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ - 27.870765047508, - 1.32232201380281 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ + 37.64391927008478, + 12.195899982673835 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt350to450": [ - 0.528198277498337, - 0.226175506063052 + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350": [ + 101.64542331683538, + 28.833516804078965 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt450to550": [ - 0.124219181833222, - 0.0950797656364289 + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf": [ + 17.86892437510634, + 2.0064254520470373 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf": [ - 14.0065760409257, - 0.685035247006438 + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ + 73.47692839542836, + 14.140836401844014 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt550to650": [ - 0.0497461112691173, - 0.0193143122982824 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ + 100.37108745354351, + 8.867895567337426 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt350to450": [ - 2.22003975765992, - 0.402869126108912 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650": [ + 68.76484546067445, + 3.6892212061982192 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt350to450": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ + 7.927527780424683, + 1.1740515432286065 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt650toinf": [ - 0.000541532833221539, - 0.000541532833221539 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650": [ + 17.4352464035793, + 6.422887897604368 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt350to450": [ - 0.681066493093272, - 0.236454696425109 + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350": [ + 27.61299404755343, + 5.431430069812639 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt350to450": [ - 0.0361720598657383, - 0.0297568457326886 + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450": [ + 51.3658933377438, + 11.070911169165573 + ] + }, + "qcdcr_Rare": { + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 0.34927312054513493, + 0.27753078970533246 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt550to650": [ - 0.0057013765949701, - 0.0030079201572466 + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ + 0.609968781251041, + 0.23007239698602824 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt450to550": [ - 0.64501765551779, - 0.260947069396676 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ + 0.766532918468279, + 0.16284205460811163 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt450to550": [ - 1e-06, - 1e-06 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ + -0.0009222299546038926, + 0.21269397686061367 ], - "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550": [ - 7.89386363371011, - 0.805611836100925 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550": [ + 0.25731862446240683, + 0.08816425351076193 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650": [ - 8.09474731421127, - 0.950465183811563 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450": [ + 0.3905358698406687, + 0.19953292314125481 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt450to550": [ - 0.0532930185720516, - 0.0408777099198125 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf": [ + 0.06754447288685128, + 0.03731122334863201 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 0.827699984268668, - 0.258893715581959 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550": [ + 0.34814951184451104, + 0.11902968371094076 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt250to350": [ - 0.00290630900546968, - 0.00214215014679097 + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550": [ + -0.031190209084464016, + 0.02089297840470235 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt250to350": [ - 0.538891368289517, - 0.209358459847124 + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf": [ + 0.015988197712673013, + 0.012763706899505315 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ - 0.724290195174369, - 0.249361414696018 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf": [ + 0.0965891550546445, + 0.05838962178151409 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt450to550": [ - 0.00881098255413322, - 0.00548340651371442 + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650": [ + -0.00016957247245841245, + 0.010894796730845117 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450": [ - 1.20525447906789, - 0.313789541143749 + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550": [ + 0.07159251662521626, + 0.052739770048311874 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt350to450": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf": [ + 0.021855326627289173, + 0.008087718626340617 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt350to450": [ - 1.02124066507275, - 0.310648719096829 + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf": [ + -2.8415026321226833e-05, + 2.009246848498155e-05 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt450to550": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf": [ + 0.12641190713593176, + 0.06100944710638304 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt650toinf": [ - 3.0343146387463, - 0.458211873445967 + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550": [ + 0.06549459514195632, + 0.09213560293721598 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt350to450": [ - 1e-06, - 1e-06 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ + -0.03351045680074094, + 0.08987016731105538 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt550to650": [ - 0.0253167954645935, - 0.019819107633963 + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350": [ + 0.10701138846635416, + 0.06534753882789902 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt550to650": [ - 1e-06, - 1e-06 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf": [ + 0.025028416674260257, + 0.019580135870988828 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt450to550": [ - 0.448364368607871, - 0.171634403493941 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ + 0.1219879712425822, + 0.10318122739579146 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to450": [ - 0.457659589748911, - 0.190448612999769 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550": [ + -0.24951807769910772, + 0.20776803714914197 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550": [ + 0.01659419981555743, + 0.007020852023294767 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt350to450": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350": [ + 0.7803899183439356, + 0.32813446767936194 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt550to650": [ - 0.0192037411358283, - 0.00878992496837801 + "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf": [ + -0.03840269101632998, + 0.14424275953554389 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt350to550": [ - 1.37276181021159, - 0.307011300865995 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450": [ + 1.273055072042034, + 0.392052749339801 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_htlt1000_MET_pt250to350": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350": [ + 0.48892090300995505, + 0.19231002353110002 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt250to350": [ - 1e-06, - 1e-06 + "bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf": [ + -0.019018276885880425, + 0.049360052200445995 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt550to650": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ + 1.4244662427198875, + 0.3696838875928583 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt350to450": [ - 7.65987698381661, - 0.804521694168022 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ + 0.3866919893105134, + 0.11846619392217239 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt450to550": [ - 26.4381628301135, - 1.24883192014525 + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650": [ + 0.2166725829360132, + 0.09787343053650208 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt450to550": [ - 5.8392537519308, - 0.576395210041011 + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650": [ + 0.02442293889827596, + 0.02462953225531138 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt550to650": [ - 0.00425505314723107, - 0.00300877693471625 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650": [ + 0.005303972727581652, + 0.07723924877520646 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt250to350": [ - 0.00158773133502701, - 0.00158773133502701 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf": [ + -0.013393433123354725, + 0.015865690571824718 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt450to550": [ - 0.0921131796502935, - 0.0918668933725334 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550": [ + 0.3118787620157306, + 0.2326171279941848 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt650toinf": [ - 4.1291075601468e-05, - 0.00376717415078307 + "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ + 0.14239618283253463, + 0.09589413323985768 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt650toinf": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf": [ + -0.02601871169208181, + 0.04757969034048568 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt450to550": [ - 1.5296099899908, - 0.391614751951787 + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550": [ + 0.25142681464137695, + 0.1421408665505617 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550": [ - 7.32343251255669, - 0.856117036367327 + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ + 0.027873176876752837, + 0.02086708293336901 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt450to550": [ - 0.036241922976852, - 0.0281103853068663 + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ + 2.882008809976085, + 0.5946156886152701 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt550to650": [ - 0.0506351895337004, - 0.0173074388767198 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450": [ + 1.1010572956440967, + 0.4025753279722375 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550": [ - 2.06016545686973, - 0.398718888835641 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ + 0.0437931004465284, + 0.03140221982942875 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ - 2.10442581453301, - 0.428423950412452 + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 0.17529930866579946, + 0.10672470716819496 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt350to450": [ - 0.292052237301729, - 0.17364237971242 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ + 0.29328897569961754, + 0.08375160995602188 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt350to450": [ - 0.0115536963812154, - 0.00491830070569667 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350": [ + 1.559648236184529, + 0.46309284245223353 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt250to350": [ - 58.8875137685577, - 2.34133778403599 + "bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf": [ + 0.22879464069439592, + 0.09016549163312249 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350": [ - 6.84342204352282, - 0.824907612424414 + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350": [ + 0.842342643836794, + 0.4651258968525086 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt350to450": [ - 3.586197472445, - 0.537548453179312 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ + 0.05983753888911281, + 0.16733694997963652 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt550toinf": [ - 0.00320408313300231, - 0.00236163021233255 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350": [ + 1.5164429525643968, + 0.5774091270446795 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt450to550": [ - 0.141128564238189, - 0.1010351898467 + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450": [ + 0.17141279290134293, + 0.09817941032867002 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt650toinf": [ - 0.0383520639030173, - 0.0236219352210787 + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450": [ + -0.025685739896736948, + 0.07711162791646492 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt250to350": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550": [ + 0.45966919094185243, + 0.24037802611549916 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt250to350": [ - 0.09234490089325, - 0.0513070517885318 + "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf": [ + -0.07437874246011233, + 0.0947812763088928 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt650toinf": [ - 1e-06, - 1e-06 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750": [ + 0.030384693339868818, + 0.017361304209740386 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt350to450": [ - 2.14870958142739, - 0.431486707003463 + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf": [ + 0.021315566573186118, + 0.08460592743416652 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt450to550": [ - 0.631872962433475, - 0.238713001332985 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf": [ + -0.024627534244842764, + 0.024627534244841653 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt550to650": [ - 4.0891008494026e-05, - 4.0891008494026e-05 + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450": [ + 0.22995637115379708, + 0.09811738432522721 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ - 99.2469880470717, - 3.74123397291691 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf": [ + 0.22117522843721815, + 0.09150848632129317 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt350to450": [ - 0.00194214556968633, - 0.00141153766193077 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf": [ + 0.3271303884225105, + 0.14498821957097346 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt450to550": [ - 0.0487534617358604, - 0.0297504988913078 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf": [ + 0.3699016910817434, + 0.16468843176661915 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt350to450": [ - 23.9887371488474, - 1.66747657216283 + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650": [ + 0.005914913143996614, + 0.005828950621004253 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt550to650": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450": [ + 1.148147308435071, + 0.38990024291980085 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt250to350": [ - 0.151824829932533, - 0.111928383729825 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf": [ + 0.12045730962811518, + 0.07362310450335918 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt250to350": [ - 45.8812727065104, - 1.61622254293165 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf": [ + 0.10694290839172993, + 0.059525474494344505 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt250to350": [ - 2.9486732514352, - 0.50617329919933 + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550": [ + 0.07797164399647016, + 0.066627167786857 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ - 13.8911716462213, - 0.752381390544794 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350": [ + 5.774857031519694, + 0.9489140893892992 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt350to450": [ - 40.7323925202701, - 2.05082337606557 + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ + 1.9230583579144067, + 0.503848982215968 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350": [ - 0.96895028277405, - 0.279183168347159 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ + 0.12678864262251466, + 0.118457589352445 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt650toinf": [ - 0.000560909417139356, - 0.000560909417139356 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ + 0.8626738791496962, + 0.2521334707149022 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt450to550": [ - 0.477448789031567, - 0.281170583194999 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650": [ + 0.040533517200792346, + 0.05325535855735636 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650": [ - 2.34282275423727, - 0.457380833070162 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf": [ + 0.02868709174519779, + 0.015888218891161633 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt250to350": [ - 0.0742865006903519, - 0.077216364677059 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf": [ + 0.046639651114482206, + 0.1366402398092428 ], - "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ - 64.6020176593322, - 2.48721227789493 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550": [ + -0.20406366400951015, + 0.29345108953958365 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt650toinf": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf": [ + -7.56918198163703e-06, + 0.002270790557900826 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt350to450": [ - 0.138464728706687, - 0.0942656172218851 + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350": [ + 0.2217993374396059, + 0.2552651044544061 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt550to650": [ - 0.345251543853842, - 0.171882360083552 + "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ + 0.09921706610836623, + 0.05965255849691303 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt550to650": [ - 0.921545000816805, - 0.182701827296706 + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450": [ + 0.05579672736073604, + 0.02858451681736518 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt350to450": [ - 0.00709347929119914, - 0.00543464206474937 + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350": [ + 0.49648015169422166, + 0.25648663326752513 ], - "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ - 65.2756402765727, - 1.71613682520817 + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550": [ + -0.004080284146411373, + 0.05974628627396303 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt550toinf": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450": [ + 0.24604977648802873, + 0.09930843307528328 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt350to450": [ - 0.0938761104836882, - 0.083378531289853 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf": [ + 0.039749979240795597, + 0.028276168351053368 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt350to450": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf": [ + -0.16249045061429257, + 0.13104793451912958 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ - 0.213179854782448, - 0.156226595100701 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ + 0.2709737114032791, + 0.2514240691986474 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt650toinf": [ - 0.00739638658126871, - 0.00415264204102238 + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350": [ + 0.17049121374818554, + 0.15298111651383328 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt550toinf": [ - 0.253214560262678, - 0.198765397512195 + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf": [ + 0.08071971313194837, + 0.06591588292512209 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt250to350": [ - 1.17584423847401, - 0.311739457543022 + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ + 0.9469747073195833, + 0.39797328754498285 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt250to350": [ - 0.0171395864314338, - 0.00615527637251232 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ + 0.05447923331413307, + 0.048173980387868395 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to450": [ - 23.4646213505777, - 1.59072777194212 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650": [ + 0.0010358711694209433, + 0.20173433997515464 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt350to450": [ - 0.308569544445853, - 0.157367519379377 + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ + 0.5741723872791766, + 0.2766638960230753 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt650toinf": [ - 1e-06, - 1e-06 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650": [ + 0.4507294841229239, + 0.2098782217501197 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt350to450": [ - 0.523530347628557, - 0.190972167676335 + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350": [ + 0.2971175885948085, + 0.15733439575012106 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt550to650": [ - 0.00663852208090529, - 0.00644671129262821 + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450": [ + 0.2257735762261106, + 0.10932057391386288 ] }, "lepcr_data": { @@ -8730,83 +9100,457 @@ 8.48978560992987, 0.829215375261791 ], - "bin_lepcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500": [ - 164.645234435686, - 6.10868724855299 + "bin_lepcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500": [ + 164.645234435686, + 6.10868724855299 + ], + "bin_lepcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650": [ + 8.08666864527074, + 1.13915349060993 + ], + "bin_lepcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf": [ + 35.6678659694853, + 1.35765841133454 + ], + "bin_lepcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf": [ + 6.10787693097541, + 0.640513339284223 + ], + "bin_lepcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550": [ + 81.6705806201947, + 2.95025408646591 + ], + "bin_lepcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550": [ + 19.5463525289083, + 1.3369778963622 + ], + "bin_lepcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ + 2689.23588479069, + 15.9721177056765 + ], + "bin_lepcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ + 3539.18013980315, + 13.9865670010651 + ], + "bin_lepcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650": [ + 9.75029765149701, + 0.850307878268659 + ], + "bin_lepcr_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf": [ + 4.12434734457801, + 0.443085890138154 + ], + "bin_lepcr_hm_nb3_highmtb_htlt1000_MET_pt350to550": [ + 91.7090207187475, + 3.08196394757648 + ] + }, + "qcdcr_znunu": { + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 0.12155844886865452, + 0.048715871844845264 + ], + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ + 0.10171494610949594, + 0.04610202883541337 + ], + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ + 543.2213364959971, + 5.553865665333579 + ], + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ + 0.1857386299693644, + 0.07956903516030281 + ], + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550": [ + 16.040516241000205, + 0.7870972133270483 + ], + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450": [ + 2.971755980845046, + 0.3598188304856104 + ], + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf": [ + 7.528633277992412, + 1.0287970140403775 + ], + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550": [ + 1.584152178718341, + 0.25530575396459454 + ], + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550": [ + 0.012579418940731557, + 0.003507989067489062 + ], + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf": [ + 7.195350962497287, + 0.591068011355766 + ], + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf": [ + 0.0856387771664231, + 0.04051159277203217 + ], + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650": [ + 0.44146632482807036, + 0.10882979126774756 + ], + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550": [ + 0.6685186903068825, + 0.13424970178445655 + ], + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf": [ + 0.3800098863130188, + 0.13253466564325853 + ], + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf": [ + 0.1285373581913518, + 0.06589763687856903 + ], + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf": [ + 0.6650007463804286, + 0.15274197777870094 + ], + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550": [ + 1.1395983390530091, + 0.1832491485285641 + ], + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ + 8.045137190159949, + 0.6895037671437912 + ], + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350": [ + 0.8853542854212719, + 0.18039275218186732 + ], + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf": [ + 0.9017970843306102, + 0.3372979786427096 + ], + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ + 31.086933357729777, + 2.3274201548618665 + ], + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550": [ + 7.5754064777183885, + 0.487214094032066 + ], + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550": [ + 0.4375522996751897, + 0.16025020799459372 + ], + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350": [ + 4.919116791968008, + 0.42516785650074296 + ], + "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf": [ + 0.09268383141579761, + 0.047516437549053214 + ], + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450": [ + 8.969507761716159, + 0.5452366574700154 + ], + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350": [ + 0.10570473704865435, + 0.04791476867006435 + ], + "bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf": [ + 1.474637513271773, + 0.39445784202397366 + ], + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ + 0.7748942673765669, + 0.16474316543835762 + ], + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ + 254.0265868063384, + 3.264621797633201 + ], + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650": [ + 0.25335103389625147, + 0.08187207770677987 + ], + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650": [ + 0.42566009314941766, + 0.1269861184138383 + ], + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650": [ + 0.975464377624121, + 0.19785129486780895 + ], + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf": [ + 2.1741757747618067, + 0.3260981834872891 + ], + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550": [ + 4.0094200179578365, + 0.7323299590180619 + ], + "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ + 0.0823607328215985, + 0.04794552476201815 + ], + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf": [ + 0.2557839265300572, + 0.09747454135231293 + ], + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550": [ + 0.07486937902194768, + 0.04347343680663269 + ], + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ + 9.115733030202136, + 0.6636784334468586 + ], + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ + 0.8137753108558172, + 0.27620284753753965 + ], + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450": [ + 24.211239948750517, + 1.0610161991263538 + ], + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ + 2.9566613334741305, + 0.33149212498404373 + ], + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 0.13879235935291945, + 0.06804397849109753 + ], + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ + 112.21710720942201, + 2.0896717804772007 + ], + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350": [ + 8.395488305251547, + 0.5631486763076791 + ], + "bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf": [ + 2.056656838157778, + 0.2676831685027438 + ], + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350": [ + 11.587814756205262, + 1.001333260133648 + ], + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ + 6.333859968399338, + 0.7630740972164537 + ], + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350": [ + 17.36076127064962, + 0.7460940755388817 + ], + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450": [ + 3.7447350204747636, + 0.4593622997216242 + ], + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450": [ + 0.007444937109539751, + 0.002206500202929526 + ], + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550": [ + 0.3854312246066911, + 0.1081508668265778 + ], + "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf": [ + 1.8594777446337503, + 0.2978199451609163 + ], + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750": [ + 3.599630307262487, + 0.383379907900928 + ], + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf": [ + 0.08405720085738722, + 0.05695413853595017 + ], + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf": [ + 2.136504807565416, + 0.32038485437772174 + ], + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450": [ + 0.5841309300767534, + 0.137017670892878 + ], + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf": [ + 1.485135823854307, + 0.2658079791778503 + ], + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf": [ + 101.72376182412563, + 2.0960987299419256 + ], + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf": [ + 5.171885201699752, + 0.8696788648982585 + ], + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650": [ + 0.31878320929081383, + 0.16036906233499337 + ], + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450": [ + 4.9744826408064, + 0.43719000785395007 + ], + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf": [ + 4.223597001952385, + 0.44131227180194477 + ], + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf": [ + 1.8941890495575535, + 0.28182153626325834 + ], + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550": [ + 0.622170324210856, + 0.14645246756780597 + ], + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350": [ + 86.0166616364877, + 2.8835552757958367 + ], + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ + 0.5425296205530685, + 0.12632354953395092 + ], + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ + 1.8291755518439459, + 0.2530929089416838 + ], + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ + 50.35100524624477, + 3.038711424211617 + ], + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650": [ + 1.9889585534392609, + 0.24959900482565175 + ], + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf": [ + 4.200885513709636, + 0.6788063511862854 + ], + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf": [ + 3.6873425513635993, + 0.3817353818827173 + ], + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550": [ + 3.377079921616769, + 0.3594027255851708 + ], + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf": [ + 0.02022611026859522, + 0.02022611026893081 + ], + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350": [ + 2.079769207161007, + 0.24906913188522642 + ], + "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ + 4.08420316624597, + 0.8109830869806782 + ], + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450": [ + 0.24187252010688098, + 0.11674486864762769 + ], + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350": [ + 0.5802538641573847, + 0.1401240046626198 + ], + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550": [ + 16.3077277524867, + 0.9642770508510896 + ], + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450": [ + 0.40583384527235467, + 0.13654015273461476 + ], + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf": [ + 0.6266012670275813, + 0.13197784456883815 ], - "bin_lepcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650": [ - 8.08666864527074, - 1.13915349060993 + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf": [ + 0.09467850465262018, + 0.06801043568630993 ], - "bin_lepcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf": [ - 35.6678659694853, - 1.35765841133454 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ + 5.31530365467961, + 0.8655047426431779 ], - "bin_lepcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf": [ - 6.10787693097541, - 0.640513339284223 + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350": [ + 1.104054010616892, + 0.20645988490848954 ], - "bin_lepcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550": [ - 81.6705806201947, - 2.95025408646591 + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf": [ + 1.0298452311617439, + 0.2241659880852058 ], - "bin_lepcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550": [ - 19.5463525289083, - 1.3369778963622 + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ + 0.631362290240304, + 0.1285739392965533 ], - "bin_lepcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 2689.23588479069, - 15.9721177056765 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ + 7.935561055951439, + 0.6765672778624624 ], - "bin_lepcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ - 3539.18013980315, - 13.9865670010651 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650": [ + 1.909568403938465, + 0.281869771619891 ], - "bin_lepcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650": [ - 9.75029765149701, - 0.850307878268659 + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ + 0.11984359666303135, + 0.054946432665586034 ], - "bin_lepcr_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf": [ - 4.12434734457801, - 0.443085890138154 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650": [ + 2.7151801735053596, + 0.32408445375289535 ], - "bin_lepcr_hm_nb3_highmtb_htlt1000_MET_pt350to550": [ - 91.7090207187475, - 3.08196394757648 + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350": [ + 0.0921717687324417, + 0.042399260858709806 + ], + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450": [ + 1.6352066214139995, + 0.3942337578941016 ] }, "qcd": { "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt250to350": [ - 1.1875806346721105, - 0.20795042288640478 + 1.1422103603030187, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt250to350": [ 0.0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt450to550": [ - 0.07647228957099748, - 0.010726451853183236 + 0.07601317370859516, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450": [ - 15.224849760913797, - 1.4059079633525975 + 13.86814949387266, + 0.0 ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt350to450": [ 0.0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350": [ - 0.029972779167504973, - 0.008359227803981118 + 0.032729747847800486, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt550to650": [ + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt250to350": [ 0.0, 0.0 ], + "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650": [ + 0.2821279193340214, + 0.14412033505745073 + ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt350to450": [ - 12.325461145203523, - 0.6023926805750204 + 7.555880599452493, + 0.7066127988754477 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt650toinf": [ 0.0, @@ -8816,9 +9560,9 @@ 0.0, 0.0 ], - "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 0.3986258819241719, - 0.060887847414628514 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt450to550": [ + 0.6812207979799485, + 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt650toinf": [ 0.0, @@ -8857,17 +9601,21 @@ 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650": [ - 0.0, + 0.003933841290614108, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt250to350": [ - 0.24197243156045442, - 0.20989293732433034 + 0.5395172136093357, + 0.7073437365059402 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt550to650": [ 0.0, 0.0 ], + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt550to650": [ + 0.0, + 0.0 + ], "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt450to550": [ 0.0, 0.0 @@ -8885,28 +9633,24 @@ 0.0 ], "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ - 117.45027157661471, - 3.7923897998809437 + 191.3076709071226, + 14.571194939600042 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt250to350": [ 0.0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt550to650": [ - 1.5037921979260969, - 0.11971918786807738 - ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt250to350": [ - 0.0, + 1.1287444662900044, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt250to350": [ - 0.6881148042436427, - 0.04461982930972394 + 0.7716487130052507, + 0.1016933556433121 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ - 3.5495908530013125, - 0.6632213013641594 + 3.338192086568898, + 0.9437366060480243 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt550to650": [ 0.0, @@ -8916,15 +9660,19 @@ 0.0, 0.0 ], - "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ - 4.5911683821705225, - 0.5795136739305318 + "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500": [ + 0.06571997578180971, + 0.0 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500": [ - 2.2800391114815755, - 0.23736799508580855 + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt550to650": [ + 0.0, + 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt550toinf": [ + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt450to550": [ + 0.0, + 0.0 + ], + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt450to550": [ 0.0, 0.0 ], @@ -8936,13 +9684,13 @@ 0.0, 0.0 ], - "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf": [ - 0.6271408246163309, - 0.32093595544339953 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450": [ + 0.35191921754765254, + 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt250to350": [ - 0.06694567525128642, - 0.010515663070831346 + 0.00966860464377221, + 0.0 ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt250to350": [ 0.0, @@ -8953,8 +9701,8 @@ 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550": [ - 2.526290393677437, - 0.28992910802739197 + 1.4986096991434557, + 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt250to350": [ 0.0, @@ -8964,9 +9712,9 @@ 0.0, 0.0 ], - "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550": [ - 0.5377761770033502, - 0.11801964743633879 + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt250to350": [ + 0.0, + 0.0 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350": [ 0.0, @@ -8977,16 +9725,16 @@ 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt550to650": [ - 0.047498693250630025, - 0.015865865558560958 + 0.04221947816192283, + 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt550to650": [ - 0.028726552583860095, - 0.00786172962183417 + 0.025752208269830282, + 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550": [ - 0.09350044538956272, - 0.05822139314289803 + "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750": [ + 0.1617384257303069, + 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt450to550": [ 0.0, @@ -8997,12 +9745,12 @@ 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt350to450": [ - 0.15217349138203723, - 0.029810749884332015 + 0.174715014855707, + 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt650toinf": [ - 0.0042772772855959856, - 0.0013132246481902489 + 0.0003954778043929929, + 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt450to550": [ 0.0, @@ -9012,17 +9760,17 @@ 0.0, 0.0 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500": [ - 13.334069232512405, - 0.9976064209617551 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt250to350": [ + 0.2761412426360759, + 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt550to650": [ - 0.27376437786011876, - 0.04569634270369437 + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt250to350": [ + 0.0, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt650toinf": [ 0.0, @@ -9036,17 +9784,17 @@ 0.0, 0.0 ], - "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf": [ - 0.09894253637734393, - 0.02563386330783703 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt550to650": [ + 0.0, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt450to550": [ 0.0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt250to350": [ - 12.239271352494706, - 0.6731912022318967 + 11.367325869691975, + 4.626687268778719 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt650toinf": [ 0.0, @@ -9061,12 +9809,12 @@ 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt350to450": [ - 0.09150599238930567, - 0.023380574881538503 + 0.06584854204858843, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ - 0.6053127754131606, - 0.05227343523432119 + 0.5395544873586684, + 0.0 ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt450to550": [ 0.0, @@ -9077,12 +9825,12 @@ 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt650toinf": [ - 4.750168278587829e-05, - 3.630257463615653e-05 + 4.196999574757069e-05, + 0.0 ], "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 32.13449812007549, - 1.592835481985596 + 16.243864868639655, + 10.682136776448266 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt450to550": [ 0.0, @@ -9093,22 +9841,18 @@ 0.0 ], "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650": [ - 0.9948808769884991, - 0.29375819406800596 + 1.0311435776143394, + 0.0 ], "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt550toinf": [ 0.0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt450to550": [ - 0.059536685783143056, - 0.01376980607240139 - ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt650toinf": [ - 0.0, + 0.027853435951089314, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt550toinf": [ + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt650toinf": [ 0.0, 0.0 ], @@ -9133,20 +9877,20 @@ 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ - 0.11604705475146118, - 0.017338496713204175 + 0.11607901739605633, + 0.0 ], "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ - 394.18792905072416, - 5.762917882122269 + 690.8268998079253, + 21.266224078854208 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to450": [ - 0.0, - 0.0 + "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750": [ + 4.56082929674977, + 6.535102260563106 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt550to650": [ - 0.02506317387194379, - 0.004601088844977419 + 0.017249763355564496, + 0.0 ], "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt350to550": [ 0.0, @@ -9157,8 +9901,8 @@ 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ - 0.08331297986169674, - 0.01686014991614358 + 0.08784593829438984, + 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt250to350": [ 0.0, @@ -9169,10 +9913,10 @@ 0.0 ], "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ - 22.097908267264142, - 2.008502818559234 + 40.02651581573113, + 8.71697505874692 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt250to350": [ + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt250to350": [ 0.0, 0.0 ], @@ -9181,14 +9925,14 @@ 0.0 ], "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650": [ - 0.26932951264616156, - 0.06740604930306049 + 0.4489376434069113, + 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt550to650": [ 0.0, 0.0 ], @@ -9201,36 +9945,36 @@ 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt450to550": [ - 0.005387322861283502, - 0.0029815363746612407 + 0.004759956115531281, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt550to650": [ + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt250to350": [ 0.0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt350to450": [ - 0.04186694586477715, - 0.004995579417033806 + 0.03928171220005902, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt250to350": [ - 0.01904862265347274, - 0.007201435773005491 + 0.01683036472006663, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt250to350": [ - 67.45112737947099, - 0.6234839000296676 + 55.969834876492556, + 7.095205586255797 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550": [ - 5.232183644589192, - 0.9814998350444484 + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt250to350": [ + 0.0, + 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 0.0023702529293704016, - 0.0007102062046242742 + 0.0023223187757621614, + 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt650toinf": [ 0.0, @@ -9249,52 +9993,52 @@ 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt650toinf": [ - 0.013872207888511214, - 0.002941216091477016 + 0.013408892937973652, + 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt550to650": [ - 0.006676520959172581, - 0.0030996269953923604 + 0.006580153638434954, + 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt550to650": [ 0.0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt350to450": [ - 0.02057865067584289, - 0.007879599903900835 + 0.020820650343580074, + 0.0 ], - "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750": [ - 0.9541818378646884, - 0.08692542914355887 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt550to650": [ + 0.0, + 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt350to450": [ - 0.03142188421174409, - 0.010787145163423916 + 0.0882872737224049, + 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt550to650": [ 0.0, 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550": [ - 0.010937367946235212, - 0.002506457890014828 + 0.0061371844106790285, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt550to650": [ - 0.5504305399397055, - 0.0655320588599178 + 0.48264315513906575, + 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt350to550": [ 0.0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf": [ - 0.014759061236727572, - 0.0038313044056172284 + 0.001440464367032831, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt250to350": [ - 0.02702532058289286, - 0.004794716656650006 + 0.02448182267830629, + 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt350to450": [ 0.0, @@ -9304,30 +10048,34 @@ 0.0, 0.0 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600": [ - 4.119746952683675, - 0.847989141591073 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to350": [ + 2.858728062891287, + 0.0 ], "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt450to550": [ 0.0, 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt550toinf": [ - 0.07198381237030471, - 0.022467154894494034 + 0.0719246356738436, + 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt650toinf": [ 0.0, 0.0 ], "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf": [ - 0.33790617392299116, - 0.021634515106962852 + 0.19999015964768452, + 0.12466690266216265 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt350to450": [ 0.0, 0.0 ], + "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550": [ + 1.7110267181906087, + 0.29673342013456677 + ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt550to650": [ 0.0, 0.0 @@ -9344,9 +10092,9 @@ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350": [ - 0.005490801237199502, - 0.0016700585310071051 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650": [ + 0.0037678639691856235, + 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt450to550": [ 0.0, @@ -9357,12 +10105,12 @@ 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650": [ - 0.0026384106362781433, - 0.0008136309731025704 + 0.002390095656841402, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf": [ - 0.03532950603111238, - 0.006593813393305046 + 0.06848436862052007, + 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt550to650": [ 0.0, @@ -9372,21 +10120,21 @@ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt550to650": [ + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt250to350": [ 0.0, 0.0 ], "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf": [ - 0.2628987998675206, - 0.08667405565914725 + 0.2715490153513565, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt450to550": [ + "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt450to550": [ 0.0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to450": [ - 0.20634161217698804, - 0.018568592502139956 + 0.18760851438082884, + 0.23008896281086788 ], "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt550to650": [ 0.0, @@ -9409,48 +10157,48 @@ 0.0 ], "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf": [ - 0.10971238484617457, - 0.014283843708498533 + 0.2294963347076473, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt350to450": [ - 1.9800683732188116, - 0.11698794257813382 + "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ + 0.1054991392578451, + 0.11087830229213896 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt450to550": [ + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt350to550": [ 0.0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt350to450": [ - 0.3461324089976857, - 0.04166714063932414 + 0.3688713792203473, + 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt250to350": [ 0.0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt250to350": [ - 0.27621651268302394, - 0.026266822056940396 + 0.07811306876909006, + 0.0 ], "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf": [ - 9.648659933130762, - 0.23959133481378958 + 6.173996076801264, + 1.011446866549971 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt350to450": [ 0.0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt450to550": [ - 0.0008031944070160914, - 0.0003952893572098628 + 0.0007096605094032054, + 0.0 ], "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600": [ - 0.8424777865483708, - 0.17759557299896106 + 1.2114233429595023, + 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt350to450": [ 0.0, @@ -9468,39 +10216,35 @@ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt350to450": [ - 0.0, - 0.0 - ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350": [ - 6.3797186644225645, - 0.4917178580469579 + 0.6959683993220334, + 0.3447101743790308 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt450to550": [ 0.0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt550to650": [ - 0.13529145888899835, - 0.03502482201693031 + 0.1342269472233936, + 0.0 ], - "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650": [ - 0.41559852346048737, - 0.025887320058754704 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ + 0.40557812882758787, + 0.15125805820215887 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ 0.0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt350to450": [ - 1.3874787060345246, - 0.10679521942177977 + 1.1273412629342987, + 0.6489866814563424 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt350to450": [ - 10.53351839264263, - 0.6475857202841853 + 8.893963170197875, + 1.4351173736166147 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt550to650": [ 0.0, 0.0 ], @@ -9517,8 +10261,8 @@ 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350": [ - 1.3330585843788698, - 0.06665486860134301 + 1.8023813168783611, + 0.9887427366049396 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt450to550": [ 0.0, @@ -9528,10 +10272,6 @@ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt250to350": [ - 0.0, - 0.0 - ], "bin_hm_nb3_highmtb_nrtntnwgeq3_htlt1000_MET_pt350to550": [ 0.0, 0.0 @@ -9545,40 +10285,40 @@ 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt350to450": [ - 1.1301318279539863, - 0.0781238813908537 + 0.5685811356035033, + 0.22122195382367327 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt550to650": [ + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt350to550": [ 0.0, 0.0 ], "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf": [ - 0.36518578981078764, - 0.03685835180462197 + 0.02204851017374174, + 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt650toinf": [ 0.0, 0.0 ], "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400": [ - 7.934257927524611, - 0.9029661561514974 + 11.514600190721051, + 0.0 ], "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt550toinf": [ 0.0, 0.0 ], "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf": [ - 0.1973400021052545, - 0.03574456093528202 + 0.37509296231652817, + 0.6140518572861154 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt550toinf": [ 0.0, 0.0 ], "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf": [ - 0.35669940766489505, - 0.09646382184437273 + 0.4662443288936433, + 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt550toinf": [ 0.0, @@ -9596,29 +10336,29 @@ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt350to450": [ + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt550to650": [ - 0.0, - 0.0 + "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ + 8.751109506903667, + 0.4200602879957655 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350": [ - 0.0, - 0.0 + "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ + 83.25038025968578, + 7.190297072984232 ], "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ - 4.5622831191016235, - 0.7430302648563412 + 8.54155944248272, + 0.7592137597397997 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt550to650": [ - 0.26845612910321615, - 0.03670944817673867 + 0.23528666189408362, + 0.0 ], - "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ - 47.103600234621, - 1.2028800541462508 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350": [ + 0.0, + 0.0 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt250to350": [ 0.0, @@ -9628,8 +10368,8 @@ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt550toinf": [ + 0.00044076384181979724, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt350to450": [ @@ -9641,22 +10381,26 @@ 0.0 ], "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 0.2699462761444203, - 0.04200936781184271 + 0.14204821076187274, + 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt250to350": [ 0.0, 0.0 ], + "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500": [ + 3.526660659311753, + 0.4536353619878721 + ], "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf": [ - 0.04659793531746464, - 0.019463415528430138 + 0.06977801708024087, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt450to550": [ - 0.12546128970514264, - 0.020875699526543116 + 0.110601972571015, + 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt450to550": [ + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt550toinf": [ 0.0, 0.0 ], @@ -9669,12 +10413,12 @@ 0.0 ], "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 5.479833721399663, - 0.4526470524556002 + 4.5007844420836935, + 2.9531331654727198 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt450to550": [ - 0.0005814622496703217, - 0.0004687634014683893 + 0.0006130613113620062, + 0.0 ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt250to350": [ 0.0, @@ -9684,19 +10428,19 @@ 0.0, 0.0 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ - 13.720871580356826, - 1.1928475956145579 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650": [ + 0.0, + 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450": [ - 0.009503241349945159, - 0.0025866957831818895 + 0.008568456187886646, + 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt250to350": [ - 3.0710686674598167, - 0.28653874017162206 + 2.9054821290961685, + 3.863259352864255 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt550toinf": [ + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt550toinf": [ 0.0, 0.0 ], @@ -9705,39 +10449,27 @@ 0.0 ], "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 14.769213523917319, - 1.018014673730227 - ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt350to550": [ - 0.0, - 0.0 + 8.400811906589476, + 0.3438332548974449 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450": [ - 14.370652907921414, - 1.8376746164582272 + 10.709816850519488, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt550to650": [ + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt350to450": [ 0.0, 0.0 ], "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550": [ - 12.245127089999926, - 1.1618496205342035 + 20.424766294008172, + 6.283591665012431 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt250to350": [ - 0.0, - 0.0 - ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to350": [ - 2.9180593613383325, - 0.32962632535389813 - ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt650toinf": [ - 0.0, + "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600": [ + 6.7882598317514615, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt450to550": [ @@ -9752,33 +10484,33 @@ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt550toinf": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450": [ - 0.8551825714031066, - 0.06683595887607001 + "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf": [ + 2.2758886293464804, + 0.0 ], "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt450to550": [ 0.0, 0.0 ], "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ - 3.7294672392931014, - 0.13148262151469547 + 2.4581423355272993, + 0.6165486443796423 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt550to650": [ - 0.3590976681426935, - 0.12078395448687503 + 0.340899879194179, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 0.025625658662353674, - 0.007752881100070027 + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt250to350": [ + 0.0, + 0.0 ], "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500": [ - 0.45033708566809216, - 0.11286866709291062 + 1.0133058037324614, + 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt550to650": [ 0.0, @@ -9800,29 +10532,25 @@ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt350to450": [ 0.0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt550to650": [ - 1.280983249985532, - 0.05369016819185592 - ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt250to350": [ - 0.04985638199618154, - 0.01304480953090711 + 0.9686642890923127, + 0.3621366411084067 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt550toinf": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt450to550": [ 0.0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt350to450": [ - 2.742860626230353, - 0.35404946386719927 + 4.050383246978723, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350": [ - 94.58603475467177, - 4.927375536455438 + 91.9984102813358, + 4.201918236754409 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt550to650": [ 0.0, @@ -9837,19 +10565,19 @@ 0.0 ], "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ - 2.3769906458900483, - 0.261921205154895 + 4.565181101078398, + 0.8752472673942866 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf": [ - 0.5243782833507384, - 0.06158592429819717 + 0.3116074873905993, + 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350": [ - 7.676869026542259, - 1.1678452998201767 + 4.846112662333365, + 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt450to550": [ - 0.0, + 0.15486208107851016, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt250to350": [ @@ -9861,44 +10589,40 @@ 0.0 ], "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf": [ - 23.476995146334026, - 0.4207338222177884 + 41.73165456880075, + 1.145310655692416 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ - 0.09748885114187449, - 0.008979884085074613 - ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt650toinf": [ 0.0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt350to450": [ - 0.19025116836117262, - 0.02232404317591848 + 1.1271390669159087, + 0.8020125203510611 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750": [ - 0.10741590393824367, - 0.017494178511474702 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550": [ + 0.045626492630882365, + 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt350to450": [ 0.0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt650toinf": [ - 0.11124964522045774, - 0.017915092398786563 + 0.08932339126044035, + 0.0 ], "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ - 57.55110645356021, - 1.9343601951552538 + 80.6684581729957, + 14.426627953795553 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf": [ 0.0, @@ -9912,39 +10636,35 @@ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ - 0.019364749690154927, - 0.004540113687176919 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt350to450": [ + 0.0, + 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt250to350": [ 0.0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf": [ - 0.0017356056534339665, - 0.0011871235790871617 + 0.0015722584942704852, + 0.0 ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt550to650": [ 0.0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt250to350": [ - 0.0014853160334449358, - 0.0004443699003688788 + 0.0015208404081466231, + 0.0 ], "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650": [ - 2.6989147274558993, - 0.36504028459384974 - ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650": [ - 0.0014941191316860192, - 0.0005230701047153813 + 0.680776380670397, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt450to550": [ - 0.0, + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350": [ + 0.014938300910048852, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt450to550": [ 0.0, 0.0 ], @@ -9952,8 +10672,8 @@ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt250to350": [ - 0.0, + "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550": [ + 0.644530475272209, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt250to350": [ @@ -9961,16 +10681,16 @@ 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt350to450": [ - 0.16265281675418103, - 0.022534183108310468 + 0.16245481204681242, + 0.0 ], "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750": [ - 11.710470973747036, - 0.40188627817426215 + 5.698289148414008, + 0.6316138234714871 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt450to550": [ - 0.3065657648359803, - 0.050403605337719926 + 0.2931975687728353, + 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt550toinf": [ 0.0, @@ -9985,28 +10705,28 @@ 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt250to350": [ - 0.23844887048845012, - 0.016074343649203245 + 0.21415261884017786, + 0.24494136111619533 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt650toinf": [ - 0.0018873024324913437, - 0.0010304160324635576 + 0.0012714706996932376, + 0.0 ], "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf": [ - 0.32074691303244274, - 0.0544725597468307 + 0.7575728033028764, + 0.0 ], "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750": [ - 1.0055459479906572, - 0.15711004501473744 + 0.094357925578163, + 0.04926052799196813 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt250to350": [ - 1.250623204960735, - 0.10911222944542148 + 1.807134438264582, + 0.7189065186843709 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 0.4666637164407883, - 0.06794767421729345 + 0.5761566545623453, + 0.2159901501972432 ], "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt350to450": [ 0.0, @@ -10017,12 +10737,12 @@ 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt550to650": [ - 0.04313320260123436, - 0.011964553389305027 + 0.03978134797875592, + 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt250to350": [ - 0.36478912247350026, - 0.04481973590145681 + 0.3833331784184103, + 0.549693217843496 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt450to550": [ 0.0, @@ -10033,21 +10753,25 @@ 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt350to450": [ - 1.2855830454694455, - 0.09309808541055925 + 1.1164768219753138, + 0.46406985046886273 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt350to550": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt350to450": [ + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt450to550": [ 0.0, 0.0 ], + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ + 0.02067154181194909, + 0.0 + ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt650toinf": [ 0.0, 0.0 @@ -10057,40 +10781,36 @@ 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550": [ - 5.565864257224795, - 0.6554149313680137 - ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ - 0.5295210150499285, - 0.03281336472580525 + 4.745703621877447, + 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt450to550": [ - 0.07515909796162479, - 0.011192137164183302 + 0.07088674189857261, + 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf": [ - 0.10058697170403211, - 0.013182315796789447 + 0.10012933588856693, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt250to350": [ - 66.8871185255064, - 1.807628984932061 + 56.31215761224317, + 19.544587060370784 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt650toinf": [ - 0.09041816882820693, - 0.024985992659665297 + 0.08471771043472322, + 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt550to650": [ + "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf": [ 0.0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt650toinf": [ - 0.003250452603287385, - 0.0007763774969865105 + 0.003101272105919063, + 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt550to650": [ 0.0, @@ -10113,18 +10833,14 @@ 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt450to550": [ - 0.13160943487607668, - 0.028457378764347546 - ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt250to350": [ - 0.0, + 0.12364311563724383, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt450to550": [ + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt550toinf": [ + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt550to650": [ 0.0, 0.0 ], @@ -10133,36 +10849,44 @@ 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt650toinf": [ - 0.00015562141652973192, - 0.00016817624167366198 + 0.0006985842188242104, + 0.0 ], "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt250to350": [ 0.0, 0.0 ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt550to650": [ + 0.17605805014414372, + 0.0 + ], "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500": [ - 2.657883076255453, - 0.7104407011311937 + 3.144051939537269, + 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350": [ - 0.10211494746461826, - 0.036574563818255315 + 0.030371600076458553, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt650toinf": [ 0.0, 0.0 ], + "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ + 203.36440319560154, + 5.091563608958597 + ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt350to450": [ 0.0, 0.0 ], "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf": [ - 0.10152058542434537, - 0.013046381951270968 + 0.0864287866355988, + 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt250to350": [ - 0.031780944773999856, - 0.015378406980147655 + 0.02878986956397556, + 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt650toinf": [ 0.0, @@ -10177,8 +10901,8 @@ 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650": [ - 1.0070686872175332, - 0.13160680465426408 + 0.9841908009385487, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt350to450": [ 0.0, @@ -10189,28 +10913,28 @@ 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf": [ - 0.06899012554429615, - 0.02058068581639546 + 0.04753145218109089, + 0.0 ], "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt450to550": [ 0.0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt550to650": [ - 0.031825255787352125, - 0.015585655048369965 + 0.03019202152900534, + 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt550toinf": [ - 0.0002915963096939278, - 0.0001504193758304421 + 0.0002628984738915045, + 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt250to350": [ - 2.569250811481462, - 0.17438687536728267 + 2.4212306020754193, + 0.3901798059783243 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt450to550": [ - 0.7031815438487578, - 0.389525277612459 + "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 0.23626616851319382, + 0.36338417039926735 ], "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt350to450": [ 0.0, @@ -10221,16 +10945,16 @@ 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt250to350": [ - 0.1789263567088012, - 0.035859057908598835 + 0.5510050998203043, + 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt450to550": [ 0.0, 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt250to350": [ - 0.3240248375254351, - 0.07588669466461569 + 0.2862913701973956, + 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt650toinf": [ 0.0, @@ -10244,17 +10968,17 @@ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt250to350": [ - 0.3046870802183995, - 0.07259788978663803 + "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500": [ + 24.140871478535885, + 0.2733862168892872 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt450to550": [ + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt450to550": [ 0.0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt250to350": [ - 0.44207280426767154, - 0.041998953378409226 + 0.5564647307670448, + 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt250to350": [ 0.0, @@ -10265,14 +10989,14 @@ 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt250to350": [ - 6.377804026029475, - 0.38828035861030974 + 7.370765099495776, + 3.2127225394906755 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt550to650": [ 0.0, 0.0 ], @@ -10281,20 +11005,24 @@ 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ - 0.02469077614954752, - 0.008562401932292327 + 0.02088313135138149, + 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550": [ - 0.01763904943634465, - 0.002974408150004214 + 0.009037364787150559, + 0.0 ], "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt450to550": [ 0.0, 0.0 ], "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 2.3100213660441913, - 0.3076237558648988 + 1.7807266676668365, + 0.7602612113345186 + ], + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt350to450": [ + 2.027387910096235, + 3.1415857631416615 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt550to650": [ 0.0, @@ -10329,40 +11057,40 @@ 0.0 ], "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500": [ - 7.485252247329228, - 0.5832939348859171 + 9.528088334365794, + 7.976422631877426 ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt250to350": [ 0.0, 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt450to550": [ - 0.03435119680618549, - 0.012488910483286143 + 0.013980292641881196, + 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550": [ 0.0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt250to350": [ - 0.1403959814594415, - 0.01877747565684488 + 0.15027134160444494, + 0.297850340309137 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt550to650": [ - 0.002898355372622795, - 0.001187699684976596 + 0.0026255755995058835, + 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt650toinf": [ 0.0, 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt350to450": [ - 0.10267583747866586, - 0.03346301150778554 + 0.09071898927185952, + 0.0 ], "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550": [ - 100.54956122006516, - 2.2273211723277533 + 50.670899841922434, + 5.826327386853987 ], "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt550toinf": [ 0.0, @@ -10376,8 +11104,8 @@ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt550to650": [ - 0.0, + "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf": [ + 0.14936002895907974, 0.0 ], "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt250to350": [ @@ -10385,8 +11113,8 @@ 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt250to350": [ - 9.776503746742959, - 0.1917638599047877 + 8.744038734947551, + 1.2461077532291598 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt250to350": [ 0.0, @@ -10396,21 +11124,21 @@ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt550to650": [ + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt450to550": [ 0.0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt350to450": [ - 0.04957296526320366, - 0.016393699726987187 + 0.12224011981854935, + 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to350": [ - 2.777367736000219, - 0.09773636199346959 + 2.7361013056582912, + 0.8486492360528518 ], "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 15.192423210929952, - 0.858050197733808 + 5.851304555610466, + 4.741402933567531 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to450": [ 0.0, @@ -10425,8 +11153,8 @@ 0.0 ], "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 30.72805218801535, - 1.5753977827750913 + 13.418855886499575, + 6.4640545795536 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt450to550": [ 0.0, @@ -10437,14 +11165,14 @@ 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt450to550": [ - 1.7245369695321178, - 0.09946256559863344 + 1.4203194176812075, + 0.707804644646871 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf": [ + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt550to650": [ 0.0, 0.0 ], @@ -10457,36 +11185,36 @@ 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt450to550": [ - 0.23859321927108576, - 0.10740190709444943 + 0.23086412624657163, + 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt650toinf": [ 0.0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650": [ - 0.5325517608421184, - 0.15490536184468534 + 0.5688017865031423, + 0.0 ], "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ - 25.796225219667296, - 1.2605709906816422 + 30.877670680122204, + 29.271052071003833 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350": [ - 11.838543338309597, - 1.1349874501053268 + 9.215678106688037, + 1.9124216948182111 ], "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750": [ - 0.9513427577525239, - 0.0762475922947562 + 1.6524539427087765, + 0.4147552574551963 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 0.16412810124842236, - 0.01098613008717325 + 0.10728371531612185, + 0.036815989362951794 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf": [ - 0.0035271187002148662, - 0.0009135133039949909 + 0.006022255151987635, + 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt350to450": [ 0.0, @@ -10501,13 +11229,21 @@ 0.0 ], "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ - 0.7638789627192616, - 0.08741515055325956 + 1.0923865650232565, + 0.2728514956484974 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt350to550": [ + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt350to450": [ 0.0, 0.0 ], + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt450to550": [ + 0.0, + 0.0 + ], + "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf": [ + 0.4417295565821551, + 0.0 + ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt550to650": [ 0.0, 0.0 @@ -10516,17 +11252,17 @@ 0.0, 0.0 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf": [ - 0.294140644372987, - 0.03549902596945018 + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt350to450": [ + 0.0, + 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt650toinf": [ 0.0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt350to450": [ - 0.17701751227667756, - 0.04622441260444765 + 0.0, + 0.0 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt350to450": [ 0.0, @@ -10540,13 +11276,13 @@ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt350to450": [ - 0.3686902217794698, - 0.08708038234148284 + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt450to550": [ + 0.0, + 0.0 ], "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550": [ - 1.9829389613330992, - 0.5572573269213487 + 2.6396223336044575, + 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650": [ 0.0, @@ -10556,8 +11292,8 @@ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf": [ + 0.024114114183575643, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt250to350": [ @@ -10577,24 +11313,24 @@ 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450": [ - 0.1693644990597275, - 0.014710581415182661 + 0.09337734887584483, + 0.0 ], "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt350to450": [ 0.0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt350to450": [ - 4.391853516517465, - 0.6954477917299606 + 3.7908878937748955, + 0.3889017319495848 ], "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt450to550": [ 0.0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt650toinf": [ - 0.07059739220664119, - 0.010257819914776286 + 0.12707985351647522, + 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt350to450": [ 0.0, @@ -10612,9 +11348,9 @@ 0.0, 0.0 ], - "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500": [ - 0.793530577919507, - 0.07715113653701365 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to450": [ + 0.0, + 0.0 ], "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ 0.0, @@ -10649,12 +11385,12 @@ 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt450to550": [ - 5.636047788565909, - 0.7602555726307665 + 2.479012791385011, + 0.5489779566567824 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt450to550": [ - 0.3202151801874123, - 0.05452262380769764 + 0.332867686561732, + 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt550to650": [ 0.0, @@ -10669,8 +11405,8 @@ 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt650toinf": [ - 0.009230448419504165, - 0.003275081734490386 + 0.008724375906438266, + 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt650toinf": [ 0.0, @@ -10693,12 +11429,12 @@ 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550": [ - 0.07561336947814104, - 0.014051178067586897 + 0.09689619559840144, + 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ - 0.005749486981513808, - 0.0014616885292217492 + 0.009915254177825437, + 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt350to450": [ 0.0, @@ -10709,16 +11445,16 @@ 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt250to350": [ - 4.304308602449056, - 0.25149735560068454 + 3.447238308856408, + 3.7940738438979467 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350": [ - 0.6306266342530684, - 0.05094693391958717 + 0.6081261081809415, + 0.39210487439124114 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt350to450": [ - 0.3720833844923286, - 0.05288280698300417 + 0.3581796686481089, + 0.0 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt550toinf": [ 0.0, @@ -10728,15 +11464,15 @@ 0.0, 0.0 ], - "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ - 117.39908916692343, - 2.6225961113364002 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt650toinf": [ + 0.0, + 0.0 ], "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt250to350": [ 0.0, 0.0 ], @@ -10749,23 +11485,27 @@ 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt450to550": [ - 0.17095121724695975, - 0.04179700045256873 + 0.0, + 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt550to650": [ 0.0, 0.0 ], + "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ + 19.568327021196534, + 3.6647816127125874 + ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt350to450": [ 0.0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt450to550": [ - 0.030395474953490702, - 0.0062369843897137865 + 0.027535888460209088, + 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt450to550": [ - 0.0, + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt350to450": [ + 0.3659359626412818, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt550to650": [ @@ -10777,24 +11517,24 @@ 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt250to350": [ - 14.834911123426863, - 0.4241396331122294 + 12.699876929928193, + 2.329838283968916 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt250to350": [ + 0.05236814596191155, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ - 1.44067618484647, - 0.0850274259124944 + 1.147513108007432, + 0.27248293435779936 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt350to450": [ - 1.1689022135276612, - 0.27144236433730395 + 1.0459854238016648, + 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350": [ - 0.18447978206734947, - 0.014650446962318908 + -0.007541737016487075, + 0.14553679107281042 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt650toinf": [ 0.0, @@ -10813,8 +11553,8 @@ 0.0 ], "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ - 6.775866079120986, - 0.431393495901079 + 3.3073439244900813, + 1.2838247991224276 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt650toinf": [ 0.0, @@ -10829,18 +11569,18 @@ 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt550to650": [ - 0.14792342798626112, - 0.01365338521391151 - ], - "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ - 39.37543436621432, - 1.3911893393839057 + 0.08346968523399949, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650": [ + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt350to450": [ + "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ + 20.328523984152074, + 1.8701584454539255 + ], + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt550toinf": [ 0.0, 0.0 ], @@ -10853,8 +11593,8 @@ 0.0 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ - 0.003176544918183959, - 0.002427562382638314 + 0.0028066287275533884, + 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt650toinf": [ 0.0, @@ -10873,8 +11613,8 @@ 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to450": [ - 0.020318564251956196, - 0.008639790382251492 + 0.01925009475130863, + 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt350to450": [ 0.0, @@ -10895,2489 +11635,2489 @@ }, "qcdcr_data": { "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 128.0, - 11.31370849898476 + 19, + 4.358898943540674 ], "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 340.0, - 18.439088914585774 + 41, + 6.4031242374328485 ], - "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf": [ - 27.0, - 5.196152422706632 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ + 4311, + 65.65820588471787 ], "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ - 71.0, - 8.426149773176359 + 19, + 4.358898943540674 ], "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550": [ - 936.0, - 30.59411708155671 + 270, + 16.431676725154983 ], "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450": [ - 249.0, - 15.7797338380595 + 212, + 14.560219778561036 ], "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf": [ - 59.0, - 7.681145747868608 + 52, + 7.211102550927978 ], "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550": [ - 94.0, - 9.695359714832659 + 82, + 9.055385138137417 ], "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550": [ - 7.0, + 7, 2.6457513110645907 ], - "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ - 4462.0, - 66.79820356865893 + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf": [ + 28, + 5.291502622129181 ], "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf": [ - 20.0, - 4.47213595499958 + 7, + 2.6457513110645907 ], "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650": [ - 1.0, - 1.0 + 0, + 0.0 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550": [ - 23.0, - 4.795831523312719 + 19, + 4.358898943540674 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf": [ - 2.0, - 1.4142135623730951 + 1, + 1.0 ], "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf": [ - 0.0, - 0.0 + 1, + 1.0 ], "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf": [ - 15.0, - 3.872983346207417 + 13, + 3.605551275463989 ], "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550": [ - 20.0, - 4.47213595499958 + 19, + 4.358898943540674 ], "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ - 371.0, - 19.261360284258224 + 118, + 10.862780491200215 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350": [ - 105.0, - 10.246950765959598 + 75, + 8.660254037844387 ], "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf": [ - 10.0, - 3.1622776601683795 + 11, + 3.3166247903554 + ], + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ + 321, + 17.916472867168917 ], "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550": [ - 96.0, - 9.797958971132712 + 79, + 8.888194417315589 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550": [ - 14.0, + 14, 3.7416573867739413 ], "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350": [ - 768.0, - 27.712812921102035 + 695, + 26.362852652928137 ], "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf": [ - 13.0, - 3.605551275463989 + 5, + 2.23606797749979 ], "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450": [ - 522.0, - 22.847319317591726 + 454, + 21.307275752662516 ], "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350": [ - 97.0, - 9.848857801796104 + 85, + 9.219544457292887 ], "bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf": [ - 8.0, - 2.8284271247461903 - ], - "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450": [ - 731.0, - 27.03701166919155 + 6, + 2.449489742783178 ], "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 2504.0, - 50.039984012787215 + 107, + 10.344080432788601 ], "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ - 1402.0, - 37.44329045369811 + 1472, + 38.36665218650175 ], "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650": [ - 13.0, - 3.605551275463989 + 12, + 3.4641016151377544 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650": [ - 8.0, - 2.8284271247461903 + 4, + 2.0 ], "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650": [ - 21.0, - 4.58257569495584 + 22, + 4.69041575982343 ], "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf": [ - 9.0, - 3.0 + 7, + 2.6457513110645907 ], "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550": [ - 159.0, - 12.609520212918492 + 147, + 12.12435565298214 ], "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ - 25.0, - 5.0 + 10, + 3.1622776601683795 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf": [ - 2.0, - 1.4142135623730951 + 1, + 1.0 ], "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550": [ - 6.0, - 2.449489742783178 + 5, + 2.23606797749979 ], "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ - 32.0, - 5.656854249492381 + 27, + 5.196152422706632 ], "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 2862.0, - 53.49766350038102 + 263, + 16.217274740226856 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ - 354.0, - 18.81488772222678 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450": [ + 627, + 25.03996805109783 ], "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ - 40.0, - 6.324555320336759 + 32, + 5.656854249492381 ], "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 185.0, - 13.601470508735444 + 8, + 2.8284271247461903 ], "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ - 478.0, - 21.863211109075447 - ], - "bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf": [ - 15.0, - 3.872983346207417 + 531, + 23.043437243605826 ], "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350": [ - 1330.0, - 36.46916505762094 + 1198, + 34.61213659975356 + ], + "bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf": [ + 17, + 4.123105625617661 ], "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350": [ - 744.0, - 27.27636339397171 + 594, + 24.372115213907882 ], "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ - 55.0, + 55, 7.416198487095663 ], "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350": [ - 1995.0, - 44.66542286825459 + 1669, + 40.85339643163099 ], "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450": [ - 129.0, - 11.357816691600547 + 110, + 10.488088481701515 ], "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450": [ - 21.0, - 4.58257569495584 + 18, + 4.242640687119285 ], "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550": [ - 40.0, - 6.324555320336759 + 34, + 5.830951894845301 ], "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf": [ - 15.0, - 3.872983346207417 + 12, + 3.4641016151377544 ], "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750": [ - 128.0, - 11.313708498984761 + 37, + 6.082762530298219 ], "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf": [ - 12.0, - 3.4641016151377544 + 11, + 3.3166247903554 ], "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf": [ - 9.0, - 3.0 + 8, + 2.8284271247461903 ], "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450": [ - 65.0, - 8.06225774829855 + 56, + 7.483314773547883 ], "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf": [ - 14.0, - 3.7416573867739413 + 11, + 3.3166247903554 ], "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf": [ - 322.0, - 17.944358444926362 + 350, + 18.708286933869708 ], "bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf": [ - 56.0, - 7.483314773547883 + 55, + 7.416198487095663 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650": [ - 4.0, + 4, 2.0 ], "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450": [ - 474.0, - 21.77154105707724 + 439, + 20.952326839756964 ], "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf": [ - 88.0, - 9.38083151964686 + 32, + 5.656854249492381 ], "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf": [ - 19.0, - 4.358898943540674 + 20, + 4.47213595499958 ], "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550": [ - 27.0, - 5.196152422706632 + 23, + 4.795831523312719 ], "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350": [ - 5227.0, - 72.29799443968 + 4299, + 65.56675987114203 ], "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 1533.0, - 39.153543900903784 + 121, + 11.0 ], "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ - 17.0, - 4.12310562561766 + 17, + 4.123105625617661 ], "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ - 633.0, - 25.15949125081825 + 507, + 22.516660498395403 ], "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650": [ - 17.0, - 4.123105625617661 + 13, + 3.605551275463989 ], "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf": [ - 31.0, - 5.5677643628300215 + 30, + 5.477225575051661 ], "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf": [ - 77.0, - 8.774964387392123 + 71, + 8.426149773176359 ], "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550": [ - 194.0, - 13.92838827718412 + 185, + 13.601470508735444 ], "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf": [ - 1.0, + 1, 1.0 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350": [ - 264.0, - 16.24807680927192 + 225, + 15.0 ], "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ - 71.0, - 8.426149773176359 + 47, + 6.855654600401044 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450": [ - 39.0, - 6.244997998398399 + 38, + 6.164414002968976 ], "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350": [ - 140.0, - 11.832159566199232 + 132, + 11.489125293076057 ], "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550": [ - 120.0, - 10.954451150103322 + 118, + 10.862780491200215 ], "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450": [ - 20.0, - 4.47213595499958 + 18, + 4.242640687119285 ], "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf": [ - 1.0, + 1, 1.0 ], "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf": [ - 1.0, - 1.0 + 2, + 1.4142135623730951 ], "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ - 92.0, - 9.591663046625438 + 86, + 9.273618495495704 ], "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350": [ - 161.0, - 12.68857754044952 + 146, + 12.083045973594572 ], "bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf": [ - 57.0, - 7.54983443527075 + 17, + 4.123105625617661 ], "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 4792.0, - 69.22427319950712 + 215, + 14.66287829861518 ], "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ - 105.0, - 10.246950765959598 + 96, + 9.797958971132712 ], "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650": [ - 84.0, - 9.16515138991168 + 74, + 8.602325267042627 ], "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 493.0, - 22.20360331117452 + 20, + 4.47213595499958 ], "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650": [ - 37.0, - 6.082762530298219 + 35, + 5.916079783099616 ], "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350": [ - 47.0, - 6.855654600401044 + 44, + 6.6332495807108 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450": [ - 72.0, - 8.48528137423857 + 54, + 7.3484692283495345 ] }, "data": { "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt250to350": [ - 232.0, - 15.231546211727817 + 233, + 15.264337522473747 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt250to350": [ - 13.0, - 3.6055512754639896 + 13, + 3.605551275463989 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt450to550": [ - 1.0, + 1, 1.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450": [ - 420.0, - 20.493901531919196 + 499, + 22.338307903688676 ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350": [ - 42.0, - 6.48074069840786 + 44, + 6.6332495807108 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt550to650": [ - 0.0, - 0.0 + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt250to350": [ + 1, + 1.0 + ], + "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650": [ + 6, + 2.449489742783178 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt350to450": [ - 165.0, - 12.84523257866513 + 143, + 11.958260743101398 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt350to450": [ - 5.0, + 5, 2.23606797749979 ], - "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 13.0, - 3.605551275463989 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt450to550": [ + 1, + 1.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt250to350": [ - 1.0, + 1, 1.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt650toinf": [ - 1.0, + 1, 1.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt250to350": [ - 4.0, - 2.0 + 5, + 2.23606797749979 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt250to350": [ - 49.0, + 49, 7.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt550to650": [ - 0.0, + 0, + 0.0 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt550to650": [ + 0, 0.0 ], "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ - 2380.0, - 48.78524367060187 + 2396, + 48.948953002081666 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt550to650": [ - 51.0, - 7.14142842854285 - ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt250to350": [ - 0.0, - 0.0 + 45, + 6.708203932499369 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt250to350": [ - 13.0, - 3.6055512754639896 + 16, + 4.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ - 34.0, - 5.830951894845301 + 33, + 5.744562646538029 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt550toinf": [ - 0.0, + 0, 0.0 ], - "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ - 115.0, - 10.723805294763608 + "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500": [ + 14, + 3.7416573867739413 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500": [ - 216.0, - 14.696938456699069 + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt550to650": [ + 0, + 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt450to550": [ + 0, + 0.0 + ], + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt450to550": [ + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt250to350": [ - 1.0, - 1.0 + 2, + 1.4142135623730951 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], - "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf": [ - 17.0, - 4.123105625617661 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450": [ + 3, + 1.7320508075688772 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt250to350": [ - 0.0, - 0.0 + 1, + 1.0 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550": [ - 35.0, + 35, 5.916079783099616 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt350to450": [ - 0.0, + 0, 0.0 ], - "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550": [ - 39.0, - 6.244997998398398 + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt250to350": [ + 0, + 0.0 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350": [ - 6.0, - 2.449489742783178 + 7, + 2.6457513110645907 ], "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt550to650": [ - 2.0, - 1.4142135623730951 + 1, + 1.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt550to650": [ - 0.0, + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550": [ - 22.0, - 4.69041575982343 + "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750": [ + 18, + 4.242640687119285 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt350to450": [ - 4.0, - 2.0 + 2, + 1.4142135623730951 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt650toinf": [ - 1.0, - 1.0 + 0, + 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt550toinf": [ - 0.0, + 0, 0.0 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500": [ - 457.0, - 21.37755832643195 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt250to350": [ + 13, + 3.605551275463989 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt550to650": [ - 7.0, - 2.6457513110645907 + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt250to350": [ + 1, + 1.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], - "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf": [ - 4.0, - 2.0 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt550to650": [ + 0, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt250to350": [ - 24.0, - 4.898979485566357 + 21, + 4.58257569495584 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt650toinf": [ - 1.0, + 1, 1.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt250to350": [ - 7.0, - 2.6457513110645907 + 8, + 2.8284271247461903 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt350to450": [ - 7.0, - 2.6457513110645907 + 6, + 2.449489742783178 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ - 25.0, - 5.0 + 19, + 4.358898943540674 ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt450to550": [ - 1.0, - 1.0 + 0, + 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 1636.0, - 40.44749683231337 + 692, + 26.30589287593181 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt350to450": [ - 1.0, + 1, 1.0 ], "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650": [ - 14.0, + 14, 3.7416573867739413 ], "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt550toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt450to550": [ - 3.0, - 1.7320508075688772 + 2, + 1.4142135623730951 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt650toinf": [ - 1.0, - 1.0 - ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt550toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt250to350": [ - 5.0, - 2.23606797749979 + 3, + 1.7320508075688772 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt350to550": [ - 2.0, - 1.4142135623730951 + 0, + 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ - 7.0, - 2.6457513110645903 + 10, + 3.1622776601683795 ], "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ - 6843.0, - 82.72242743053422 + 7558, + 86.93675862372602 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to450": [ - 0.0, - 0.0 + "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750": [ + 67, + 8.18535277187245 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt550to650": [ - 1.0, + 1, 1.0 ], "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt350to550": [ - 1.0, - 1.0 + 0, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ - 5.0, - 2.23606797749979 + 4, + 2.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt250to350": [ - 31.0, - 5.5677643628300215 + 32, + 5.656854249492381 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ - 214.0, - 14.628738838327793 + 132, + 11.489125293076057 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt250to350": [ - 0.0, + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt250to350": [ + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650": [ - 9.0, + 9, 3.0 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt250to350": [ - 5.0, - 2.23606797749979 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt550to650": [ + 0, + 0.0 ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt450to550": [ - 5.0, - 2.23606797749979 + 3, + 1.7320508075688772 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt550to650": [ - 0.0, - 0.0 + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt250to350": [ + 4, + 2.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt350to450": [ - 7.0, + 7, 2.6457513110645907 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt250to350": [ - 17.0, - 4.123105625617661 + 16, + 4.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt250to350": [ - 197.0, - 14.035668847618199 + 181, + 13.45362404707371 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], - "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550": [ - 33.0, - 5.744562646538029 + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt250to350": [ + 0, + 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 2.0, + 2, 1.4142135623730951 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt650toinf": [ - 1.0, - 1.0 + 2, + 1.4142135623730951 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt350to450": [ - 1.0, + 1, 1.0 ], - "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750": [ - 61.0, - 7.810249675906654 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt550to650": [ + 0, + 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt350to450": [ - 3.0, + 3, 1.7320508075688772 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt550to650": [ - 12.0, - 3.4641016151377544 + 13, + 3.605551275463989 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt350to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf": [ - 3.0, - 1.7320508075688774 + 5, + 2.23606797749979 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt350to450": [ - 4.0, + 4, 2.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600": [ - 63.0, - 7.937253933193772 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to350": [ + 172, + 13.114877048604 ], "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt550toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf": [ - 10.0, - 3.1622776601683795 + 4, + 2.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], + "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550": [ + 11, + 3.3166247903554 + ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt550to650": [ - 1.0, + 1, 1.0 ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350": [ - 9.0, - 3.0 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650": [ + 0, + 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650": [ - 3.0, - 1.7320508075688774 + 3, + 1.7320508075688772 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf": [ - 3.0, - 1.7320508075688774 + 4, + 2.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt550to650": [ - 2.0, - 1.4142135623730951 + 3, + 1.7320508075688772 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt550to650": [ - 0.0, + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt250to350": [ + 0, 0.0 ], "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf": [ - 13.0, - 3.605551275463989 + 14, + 3.7416573867739413 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt450to550": [ - 1.0, - 1.0 + "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt450to550": [ + 0, + 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to450": [ - 2.0, + 2, 1.4142135623730951 ], "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt550toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf": [ - 7.0, + 7, 2.6457513110645907 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt350to450": [ - 39.0, - 6.244997998398398 + "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ + 0, + 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf": [ - 1.0, - 1.0 + 2, + 1.4142135623730951 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt450to550": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt350to550": [ + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt350to450": [ - 10.0, - 3.1622776601683795 + 9, + 3.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt250to350": [ - 2.0, + 2, 1.4142135623730951 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt250to350": [ - 2.0, + 2, 1.4142135623730951 ], "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf": [ - 235.0, - 15.329709716755891 + 84, + 9.16515138991168 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt350to450": [ - 1.0, + 1, 1.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt450to550": [ - 4.0, - 2.0 + 3, + 1.7320508075688772 ], "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600": [ - 27.0, - 5.196152422706632 + 28, + 5.291502622129181 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt350to450": [ - 0.0, - 0.0 - ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350": [ - 7.0, - 2.6457513110645907 + 5, + 2.23606797749979 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt550to650": [ - 1.0, + 1, 1.0 ], - "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650": [ - 13.0, - 3.605551275463989 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ + 3, + 1.7320508075688772 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ - 1.0, + 1, 1.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt350to450": [ - 8.0, - 2.82842712474619 + 6, + 2.449489742783178 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt350to450": [ - 59.0, - 7.681145747868608 + 57, + 7.54983443527075 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt250to350": [ - 1.0, - 1.0 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt550to650": [ + 0, + 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350": [ - 9.0, - 3.0000000000000004 + 10, + 3.1622776601683795 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt650toinf": [ - 0.0, - 0.0 - ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nrtntnwgeq3_htlt1000_MET_pt350to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt350to450": [ - 1.0, + 1, 1.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt550to650": [ - 0.0, + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt350to550": [ + 0, 0.0 ], "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf": [ - 8.0, - 2.8284271247461903 + 2, + 1.4142135623730951 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400": [ - 239.0, - 15.459624833740307 + 246, + 15.684387141358123 ], "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt550toinf": [ - 0.0, + 0, 0.0 ], "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf": [ - 11.0, - 3.3166247903554003 + 12, + 3.4641016151377544 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt550toinf": [ - 0.0, + 0, 0.0 ], "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf": [ - 9.0, - 3.0 + 8, + 2.8284271247461903 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt550toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450": [ - 3.0, - 1.7320508075688774 + 2, + 1.4142135623730951 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt250to350": [ - 5.0, + 5, 2.23606797749979 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt450to550": [ - 0.0, + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt350to450": [ - 0.0, + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt550to650": [ - 0.0, - 0.0 + "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ + 126, + 11.224972160321824 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350": [ - 3.0, - 1.7320508075688772 + "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ + 2141, + 46.2709412050371 ], "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ - 85.0, + 85, 9.219544457292887 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt550to650": [ - 11.0, - 3.3166247903554003 + 15, + 3.872983346207417 ], - "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ - 1920.0, - 43.81780460041329 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350": [ + 3, + 1.7320508075688772 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf": [ - 1.0, - 1.0 + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt550toinf": [ + 0, + 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 32.0, - 5.656854249492381 + 23, + 4.795831523312719 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], + "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500": [ + 223, + 14.933184523068078 + ], "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf": [ - 5.0, + 5, 2.23606797749979 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt450to550": [ - 3.0, - 1.7320508075688772 + 4, + 2.0 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt450to550": [ - 0.0, + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt550toinf": [ + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 119.0, - 10.908712114635714 + 56, + 7.483314773547883 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt450to550": [ - 6.0, + 6, 2.449489742783178 ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt550to650": [ - 0.0, + 0, 0.0 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ - 158.0, - 12.569805089976535 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650": [ + 1, + 1.0 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450": [ - 3.0, - 1.7320508075688774 + 1, + 1.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt250to350": [ - 17.0, - 4.123105625617661 + 22, + 4.69041575982343 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt550toinf": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt550toinf": [ + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf": [ - 1.0, + 1, 1.0 ], "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 747.0, - 27.331300737432898 - ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt350to550": [ - 0.0, - 0.0 + 347, + 18.627936010197157 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450": [ - 123.0, - 11.090536506409418 + 116, + 10.770329614269007 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt550to650": [ - 0.0, + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt550to650": [ - 0.0, + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt350to450": [ + 0, 0.0 ], "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550": [ - 138.0, - 11.74734012447073 - ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt250to350": [ - 2.0, - 1.4142135623730951 - ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to350": [ - 163.0, - 12.767145334803704 + 161, + 12.68857754044952 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt650toinf": [ - 0.0, - 0.0 + "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600": [ + 66, + 8.12403840463596 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt450to550": [ - 2.0, + 2, 1.4142135623730951 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt550toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt550toinf": [ + 0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450": [ - 2.0, - 1.4142135623730951 + "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf": [ + 17, + 4.123105625617661 ], "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ - 39.0, - 6.244997998398398 + 21, + 4.58257569495584 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt550to650": [ - 2.0, + 2, 1.4142135623730951 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 0.0, - 0.0 + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt250to350": [ + 1, + 1.0 ], "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500": [ - 49.0, - 7.0 + 46, + 6.782329983125268 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt250to350": [ - 3.0, - 1.7320508075688774 + 3, + 1.7320508075688772 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt550to650": [ - 0.0, + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt350to450": [ + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt550to650": [ - 18.0, - 4.242640687119285 - ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt250to350": [ - 4.0, - 2.0 + 19, + 4.358898943540674 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt450to550": [ + 0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt350to450": [ - 95.0, - 9.746794344808963 + 105, + 10.246950765959598 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350": [ - 2277.0, - 47.7179211617606 + 2540, + 50.39841267341661 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ - 66.0, - 8.12403840463596 + 74, + 8.602325267042627 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf": [ - 9.0, - 3.0 + 10, + 3.1622776601683795 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350": [ - 129.0, - 11.357816691600547 + 102, + 10.099504938362077 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt450to550": [ - 32.0, - 5.656854249492381 + 37, + 6.082762530298219 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nrtntnwgeq3_htlt1000_MET_pt550toinf": [ - 0.0, + 0, 0.0 ], "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf": [ - 1597.0, - 39.96248240537617 + 1781, + 42.20189569201838 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt350to450": [ - 0.0, - 0.0 - ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt350to450": [ - 7.0, - 2.6457513110645907 + 8, + 2.8284271247461903 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750": [ - 17.0, - 4.123105625617661 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550": [ + 20, + 4.47213595499958 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt350to450": [ - 6.0, + 6, 2.449489742783178 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt650toinf": [ - 2.0, - 1.4142135623730951 + 1, + 1.0 ], "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ - 1233.0, - 35.11409973215888 + 1253, + 35.397740040855716 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf": [ - 2.0, - 1.4142135623730951 + 3, + 1.7320508075688772 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt250to350": [ - 2.0, - 1.4142135623730951 + 1, + 1.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt250to350": [ - 1.0, - 1.0 + 2, + 1.4142135623730951 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ - 3.0, - 1.7320508075688772 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt350to450": [ + 0, + 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt250to350": [ - 6.0, + 6, 2.449489742783178 ], "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650": [ - 14.0, - 3.7416573867739413 + 4, + 2.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650": [ - 0.0, - 0.0 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350": [ + 9, + 3.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt450to550": [ - 0.0, - 0.0 - ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt250to350": [ - 0.0, - 0.0 - ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt250to350": [ - 0.0, + 0, 0.0 ], + "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550": [ + 41, + 6.4031242374328485 + ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt350to450": [ - 3.0, - 1.7320508075688772 + 5, + 2.23606797749979 ], "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750": [ - 256.0, - 16.0 + 64, + 8.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt450to550": [ - 7.0, + 7, 2.6457513110645907 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt550toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt250to350": [ - 3.0, + 3, 1.7320508075688772 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt250to350": [ - 7.0, - 2.6457513110645907 + 6, + 2.449489742783178 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt650toinf": [ - 3.0, + 3, 1.7320508075688772 ], "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf": [ - 34.0, - 5.830951894845301 + 39, + 6.244997998398398 ], "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750": [ - 6.0, - 2.449489742783178 + 2, + 1.4142135623730951 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt250to350": [ - 7.0, - 2.6457513110645907 + 5, + 2.23606797749979 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 30.0, - 5.477225575051661 + 31, + 5.5677643628300215 ], "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt550to650": [ - 3.0, - 1.7320508075688774 + 1, + 1.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt250to350": [ - 1.0, - 1.0 + 0, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt450to550": [ - 2.0, + 2, 1.4142135623730951 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt350to450": [ - 45.0, - 6.708203932499369 + 44, + 6.6332495807108 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt350to550": [ - 0.0, + 0, 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt350to450": [ - 0.0, + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt450to550": [ + 0, 0.0 ], + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ + 3, + 1.7320508075688772 + ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt250to350": [ - 1.0, - 1.0 + 0, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550": [ - 79.0, - 8.888194417315589 - ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ - 3.0, - 1.7320508075688772 + 99, + 9.9498743710662 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt450to550": [ - 5.0, - 2.23606797749979 + 4, + 2.0 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf": [ - 1.0, + 1, 1.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt250to350": [ - 382.0, - 19.544820285692065 + 346, + 18.601075237738275 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt650toinf": [ - 1.0, + 1, 1.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt450to550": [ - 0.0, - 0.0 + 1, + 1.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt550to650": [ - 0.0, - 0.0 + "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf": [ + 9, + 3.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt550to650": [ - 3.0, - 1.7320508075688772 + 1, + 1.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt450to550": [ - 1.0, - 1.0 + 2, + 1.4142135623730951 ], "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt250to350": [ - 1.0, + 1, 1.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt450to550": [ - 0.0, - 0.0 - ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt550to650": [ + 0, 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt550toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt550to650": [ + 7, + 2.6457513110645907 + ], "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500": [ - 79.0, - 8.888194417315589 + 83, + 9.1104335791443 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350": [ - 13.0, - 3.605551275463989 + 7, + 2.6457513110645907 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], + "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ + 4905, + 70.03570517957252 + ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf": [ - 9.0, - 3.0 + 3, + 1.7320508075688772 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650": [ - 9.0, - 3.0 + 7, + 2.6457513110645907 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt350to450": [ - 1.0, + 1, 1.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf": [ - 3.0, - 1.7320508075688774 + 3, + 1.7320508075688772 ], "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt550to650": [ - 6.0, - 2.449489742783178 + 4, + 2.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt550toinf": [ - 1.0, + 1, 1.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt250to350": [ - 5.0, - 2.23606797749979 + 4, + 2.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt450to550": [ - 1.0, - 1.0 + "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 9, + 3.0 ], "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt250to350": [ - 32.0, - 5.656854249492381 + 22, + 4.69041575982343 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt450to550": [ - 1.0, + 1, 1.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt250to350": [ - 15.0, - 3.872983346207417 + "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500": [ + 454, + 21.307275752662516 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt450to550": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt450to550": [ + 0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt250to350": [ - 7.0, + 7, 2.6457513110645907 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt250to350": [ - 1.0, + 1, 1.0 ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt250to350": [ - 64.0, + 64, 8.0 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt450to550": [ - 0.0, - 0.0 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt450to550": [ + 1, + 1.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt550to650": [ + 0, 0.0 ], "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt550toinf": [ - 0.0, - 0.0 + 1, + 1.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ - 2.0, - 1.4142135623730951 + 1, + 1.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550": [ - 1.0, + 1, 1.0 ], "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 39.0, - 6.244997998398398 + 26, + 5.0990195135927845 + ], + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt350to450": [ + 40, + 6.324555320336759 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt550to650": [ - 3.0, - 1.7320508075688772 + 1, + 1.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt550toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500": [ - 45.0, - 6.708203932499369 + 42, + 6.48074069840786 ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt250to350": [ - 1.0, + 1, 1.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt450to550": [ - 1.0, + 1, 1.0 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550": [ - 1.0, + 1, 1.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550": [ - 935.0, - 30.57776970284131 + 277, + 16.64331697709324 ], "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt550toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt550to650": [ - 0.0, - 0.0 + "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf": [ + 4, + 2.0 ], "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt250to350": [ - 34.0, - 5.830951894845301 + 32, + 5.656854249492381 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt450to550": [ - 0.0, + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt550to650": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt450to550": [ + 0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt350to450": [ - 16.0, - 4.0 + 14, + 3.7416573867739413 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to350": [ - 17.0, - 4.123105625617661 + 15, + 3.872983346207417 ], "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 272.0, - 16.492422502470642 + 133, + 11.532562594670797 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt550toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 502.0, - 22.40535650240808 + 227, + 15.066519173319364 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt450to550": [ - 10.0, - 3.1622776601683795 + 7, + 2.6457513110645907 ], "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt250to350": [ - 10.0, - 3.1622776601683795 + 5, + 2.23606797749979 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt450to550": [ - 16.0, - 4.0 + 11, + 3.3166247903554 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], - "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf": [ - 8.0, - 2.8284271247461903 + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt550to650": [ + 0, + 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt450to550": [ - 9.0, + 9, 3.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650": [ - 23.0, - 4.795831523312719 + 24, + 4.898979485566356 ], "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ - 429.0, - 20.71231517720798 + 445, + 21.095023109728988 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350": [ - 510.0, - 22.58317958127243 + 453, + 21.283796653792763 ], "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750": [ - 33.0, + 33, 5.744562646538029 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 5.0, + 5, 2.23606797749979 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt450to550": [ - 4.0, - 1.9999999999999998 + 3, + 1.7320508075688772 ], "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ - 33.0, + 33, 5.744562646538029 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt350to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt350to450": [ + 1, + 1.0 + ], + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt450to550": [ + 0, 0.0 ], + "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf": [ + 29, + 5.385164807134504 + ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt350to450": [ - 2.0, + 2, 1.4142135623730951 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf": [ - 31.0, - 5.5677643628300215 + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt350to450": [ + 0, + 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt350to450": [ - 6.0, - 2.449489742783178 + 3, + 1.7320508075688772 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt450to550": [ - 1.0, + 1, 1.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt350to450": [ - 27.0, - 5.196152422706632 + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt450to550": [ + 0, + 0.0 ], "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550": [ - 21.0, - 4.582575694955841 + 22, + 4.69041575982343 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650": [ - 13.0, - 3.605551275463989 + 16, + 4.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt250to350": [ - 2.0, - 1.4142135623730951 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf": [ + 0, + 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt250to350": [ - 1.0, - 1.0 + 0, + 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ - 1.0, - 1.0 + 2, + 1.4142135623730951 ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450": [ - 3.0, - 1.7320508075688774 + 2, + 1.4142135623730951 ], "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt350to450": [ - 1.0, - 1.0 + 0, + 0.0 ], "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt650toinf": [ - 1.0, - 1.0 + 2, + 1.4142135623730951 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt450to550": [ - 0.0, - 0.0 + 1, + 1.0 ], - "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500": [ - 32.0, - 5.65685424949238 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to450": [ + 0, + 0.0 ], "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt350to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nrtntnwgeq3_htlt1000_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt350to450": [ - 13.0, + 13, 3.605551275463989 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt450to550": [ - 90.0, - 9.486832980505138 + 79, + 8.888194417315589 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt450to550": [ - 16.0, - 4.0 + 15, + 3.872983346207417 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt450to550": [ - 8.0, - 2.8284271247461903 + 9, + 3.0 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550": [ - 5.0, + 5, 2.23606797749979 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt550to650": [ - 1.0, + 1, 1.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550": [ - 1.0, + 1, 1.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ - 2.0, + 2, 1.4142135623730951 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt250to350": [ - 65.0, - 8.06225774829855 + 58, + 7.615773105863909 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350": [ - 7.0, - 2.6457513110645907 + 5, + 2.23606797749979 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt350to450": [ - 5.0, + 5, 2.23606797749979 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt550toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], - "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ - 4500.0, - 67.08203932499369 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt650toinf": [ + 0, + 0.0 ], "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt250to350": [ - 0.0, + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt250to350": [ + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt350to450": [ - 8.0, - 2.8284271247461903 + 10, + 3.1622776601683795 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt550to650": [ - 1.0, - 1.0 + 0, + 0.0 + ], + "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ + 164, + 12.806248474865697 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt450to550": [ - 0.0, - 0.0 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt350to450": [ + 27, + 5.196152422706632 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt250to350": [ - 1.0, - 1.0 + 0, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt250to350": [ - 126.0, - 11.224972160321824 + 114, + 10.677078252031311 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt450to550": [ - 0.0, - 0.0 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt250to350": [ + 2, + 1.4142135623730951 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ - 54.0, - 7.3484692283495345 + 55, + 7.416198487095663 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt350to450": [ - 53.0, + 53, 7.280109889280518 ], "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350": [ - 3.0, - 1.7320508075688774 + 4, + 2.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt450to550": [ - 0.0, - 0.0 + 1, + 1.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650": [ - 3.0, - 1.7320508075688774 + 3, + 1.7320508075688772 ], "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ - 184.0, - 13.564659966250536 + 54, + 7.3484692283495345 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt550to650": [ - 6.0, - 2.449489742783178 + 5, + 2.23606797749979 + ], + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt350to450": [ + 0, + 0.0 ], "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ - 486.0, - 22.045407685048602 + 145, + 12.041594578792296 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt550toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt350to450": [ - 1.0, - 1.0 - ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ - 1.0, + 1, 1.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt550toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt250to350": [ - 1.0, + 1, 1.0 ], "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to450": [ - 21.0, - 4.58257569495584 + 23, + 4.795831523312719 ], "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt350to450": [ - 1.0, + 1, 1.0 ], "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt350to450": [ - 6.0, - 2.449489742783178 + 5, + 2.23606797749979 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt550to650": [ - 0.0, + 0, 0.0 ] }, @@ -15083,4 +15823,4 @@ "bin_phocr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": "58" } } -} +} \ No newline at end of file diff --git a/Datacards/setup/SUSYNano19/define_uncs.conf b/Datacards/setup/SUSYNano19/define_uncs.conf index 5ec7895..f1a73e6 100644 --- a/Datacards/setup/SUSYNano19/define_uncs.conf +++ b/Datacards/setup/SUSYNano19/define_uncs.conf @@ -15,7 +15,7 @@ Prefire_Weight lnN # resTopWeight_MISTAG_NB lnN # resTopWeight_MISTAG_PS lnN ## resolved top - tagging - eff_restop lnN + eff_restoptag lnN # resTopWeight_STATS lnN # resTopWeight_MISTAG_UP lnN # resTopWeight_GEN lnN diff --git a/Datacards/setup/SUSYNano19/qcd_BkgPred.json b/Datacards/setup/SUSYNano19/qcd_BkgPred.json index c37611d..2c8bb8b 100644 --- a/Datacards/setup/SUSYNano19/qcd_BkgPred.json +++ b/Datacards/setup/SUSYNano19/qcd_BkgPred.json @@ -1783,3796 +1783,4352 @@ }, "yieldsMap": { "qcdcr_data": { - "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ - 4462.0, - 66.79820356865893 - ], - "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ - 1402.0, - 37.44329045369811 - ], - "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ - 478.0, - 21.863211109075447 - ], - "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf": [ - 322.0, - 17.944358444926362 - ], - "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550": [ - 936.0, - 30.59411708155671 - ], - "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ - 371.0, - 19.261360284258224 - ], - "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750": [ - 128.0, - 11.313708498984761 - ], - "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf": [ - 88.0, - 9.38083151964686 - ], - "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550": [ - 120.0, - 10.954451150103322 - ], - "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ - 32.0, - 5.656854249492381 - ], - "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf": [ - 27.0, - 5.196152422706632 - ], - "bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf": [ - 57.0, - 7.54983443527075 - ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ - 633.0, - 25.15949125081825 - ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf": [ - 59.0, - 7.681145747868608 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350": [ + 1669, + 40.85339643163099 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ - 354.0, - 18.81488772222678 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450": [ + 454, + 21.307275752662516 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf": [ - 31.0, - 5.5677643628300215 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550": [ + 147, + 12.12435565298214 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ - 105.0, - 10.246950765959598 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650": [ + 35, + 5.916079783099616 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ - 40.0, - 6.324555320336759 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf": [ + 20, + 4.47213595499958 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf": [ - 9.0, - 3.0 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350": [ + 695, + 26.362852652928137 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ - 55.0, - 7.416198487095663 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450": [ + 212, + 14.560219778561036 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ - 17.0, - 4.12310562561766 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550": [ + 82, + 9.055385138137417 ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf": [ - 9.0, - 3.0 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650": [ + 22, + 4.69041575982343 ], - "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ - 71.0, - 8.426149773176359 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf": [ + 11, + 3.3166247903554 ], - "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf": [ - 15.0, - 3.872983346207417 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350": [ + 1198, + 34.61213659975356 ], - "bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf": [ - 56.0, - 7.483314773547883 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450": [ + 439, + 20.952326839756964 ], - "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ - 92.0, - 9.591663046625438 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550": [ + 185, + 13.601470508735444 ], - "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf": [ - 10.0, - 3.1622776601683795 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650": [ + 74, + 8.602325267042627 ], - "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ - 71.0, + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf": [ + 71, 8.426149773176359 ], - "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf": [ - 20.0, - 4.47213595499958 - ], - "bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf": [ - 8.0, - 2.8284271247461903 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350": [ + 4299, + 65.56675987114203 ], - "bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf": [ - 15.0, - 3.872983346207417 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450": [ + 627, + 25.03996805109783 ], - "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ - 25.0, - 5.0 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550": [ + 79, + 8.888194417315589 ], - "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf": [ - 13.0, + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650": [ + 13, 3.605551275463989 ], + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf": [ + 1, + 1.0 + ], "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 4792.0, - 69.22427319950712 + 215, + 14.66287829861518 ], "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 2504.0, - 50.039984012787215 + 107, + 10.344080432788601 ], "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 493.0, - 22.20360331117452 + 20, + 4.47213595499958 ], "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 185.0, - 13.601470508735444 + 8, + 2.8284271247461903 ], "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 2862.0, - 53.49766350038102 + 263, + 16.217274740226856 ], "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 1533.0, - 39.153543900903784 + 121, + 11.0 ], "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 340.0, - 18.439088914585774 + 41, + 6.4031242374328485 ], "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 128.0, - 11.31370849898476 - ], - "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350": [ - 1995.0, - 44.66542286825459 - ], - "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450": [ - 522.0, - 22.847319317591726 - ], - "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550": [ - 159.0, - 12.609520212918492 - ], - "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650": [ - 37.0, - 6.082762530298219 - ], - "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf": [ - 19.0, + 19, 4.358898943540674 ], - "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350": [ - 768.0, - 27.712812921102035 - ], - "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450": [ - 249.0, - 15.7797338380595 - ], - "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550": [ - 94.0, - 9.695359714832659 - ], - "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650": [ - 21.0, - 4.58257569495584 - ], - "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf": [ - 14.0, - 3.7416573867739413 + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350": [ + 85, + 9.219544457292887 ], - "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350": [ - 1330.0, - 36.46916505762094 + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450": [ + 18, + 4.242640687119285 ], - "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450": [ - 474.0, - 21.77154105707724 + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550": [ + 5, + 2.23606797749979 ], - "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550": [ - 194.0, - 13.92838827718412 + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf": [ + 2, + 1.4142135623730951 ], - "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650": [ - 84.0, - 9.16515138991168 + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350": [ + 44, + 6.6332495807108 ], - "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf": [ - 77.0, - 8.774964387392123 + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450": [ + 18, + 4.242640687119285 ], - "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350": [ - 5227.0, - 72.29799443968 + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550": [ + 7, + 2.6457513110645907 ], - "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450": [ - 731.0, - 27.03701166919155 + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf": [ + 11, + 3.3166247903554 ], - "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550": [ - 96.0, - 9.797958971132712 + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350": [ + 146, + 12.083045973594572 ], - "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650": [ - 17.0, - 4.123105625617661 + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550": [ + 23, + 4.795831523312719 ], - "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf": [ - 1.0, + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf": [ + 1, 1.0 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350": [ - 264.0, - 16.24807680927192 + 225, + 15.0 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450": [ - 72.0, - 8.48528137423857 + 54, + 7.3484692283495345 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550": [ - 23.0, - 4.795831523312719 + 19, + 4.358898943540674 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650": [ - 8.0, - 2.8284271247461903 + 4, + 2.0 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf": [ - 2.0, - 1.4142135623730951 + 1, + 1.0 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350": [ - 105.0, - 10.246950765959598 + 75, + 8.660254037844387 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450": [ - 39.0, - 6.244997998398399 + 38, + 6.164414002968976 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550": [ - 14.0, + 14, 3.7416573867739413 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650": [ - 4.0, + 4, 2.0 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf": [ - 2.0, - 1.4142135623730951 + 1, + 1.0 ], "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350": [ - 140.0, - 11.832159566199232 + 132, + 11.489125293076057 ], "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450": [ - 65.0, - 8.06225774829855 + 56, + 7.483314773547883 ], "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550": [ - 40.0, - 6.324555320336759 + 34, + 5.830951894845301 ], "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650": [ - 13.0, - 3.605551275463989 + 12, + 3.4641016151377544 ], "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf": [ - 15.0, - 3.872983346207417 + 13, + 3.605551275463989 ], "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350": [ - 744.0, - 27.27636339397171 + 594, + 24.372115213907882 ], "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450": [ - 129.0, - 11.357816691600547 + 110, + 10.488088481701515 ], "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550": [ - 20.0, - 4.47213595499958 + 19, + 4.358898943540674 ], "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650": [ - 1.0, - 1.0 - ], - "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], - "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350": [ - 97.0, - 9.848857801796104 - ], - "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450": [ - 20.0, - 4.47213595499958 - ], - "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550": [ - 6.0, - 2.449489742783178 - ], - "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf": [ - 1.0, + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf": [ + 1, 1.0 ], - "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350": [ - 47.0, - 6.855654600401044 - ], - "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450": [ - 21.0, - 4.58257569495584 - ], - "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550": [ - 7.0, - 2.6457513110645907 - ], - "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf": [ - 12.0, - 3.4641016151377544 - ], - "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350": [ - 161.0, - 12.68857754044952 - ], - "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550": [ - 27.0, - 5.196152422706632 - ], - "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf": [ - 1.0, - 1.0 - ] - }, - "qcdcr_otherbkgs": { "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ - 945.2477060353208, - 8.105772491854482 + 4311, + 65.65820588471787 ], "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ - 432.55299356667695, - 4.002985358468458 + 1472, + 38.36665218650175 ], "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ - 196.7531433039506, - 6.207036860395526 + 531, + 23.043437243605826 ], "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf": [ - 177.79447665623394, - 2.0845679357945803 + 350, + 18.708286933869708 ], "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550": [ - 131.13959005516793, - 5.625266216504505 + 270, + 16.431676725154983 ], "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ - 67.96455590989083, - 6.488868224298364 + 118, + 10.862780491200215 ], "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750": [ - 31.341159576609982, - 2.7407694081565803 + 37, + 6.082762530298219 ], "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf": [ - 30.321222710281802, - 0.8094054689451156 + 32, + 5.656854249492381 ], "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550": [ - 29.99577269286042, - 1.431727122970144 + 118, + 10.862780491200215 ], "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ - 14.476052546411374, - 0.7457065724803285 + 27, + 5.196152422706632 ], "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf": [ - 11.629850801750894, - 0.5637514757655273 + 28, + 5.291502622129181 ], "bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf": [ - 8.878778995735747, - 0.48488597738056666 - ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ - 145.82033427037032, - 8.735286066954743 - ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf": [ - 16.939924056871952, - 1.8574589636147196 - ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ - 132.86609049176917, - 13.188749144795569 - ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf": [ - 23.70858391042831, - 6.940497649144053 + 17, + 4.123105625617661 ], "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ - 21.1825669708543, - 3.0325524041543743 + 96, + 9.797958971132712 ], "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ - 6.829545816692018, - 0.514829726242683 + 32, + 5.656854249492381 ], "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf": [ - 10.824956178998512, - 4.008788496424562 + 8, + 2.8284271247461903 ], "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ - 17.961951756678623, - 1.7228170145580994 + 55, + 7.416198487095663 ], "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ - 7.6810458498766, - 0.8151297239438067 + 17, + 4.123105625617661 ], "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf": [ - 5.783498345522943, - 0.41160506690550225 + 7, + 2.6457513110645907 ], - "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ - 9.573229978510206, - 1.343113247210503 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ + 507, + 22.516660498395403 ], - "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf": [ - 3.9925293128819064, - 0.6959545173892192 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf": [ + 52, + 7.211102550927978 ], - "bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf": [ - 23.24050924046276, - 6.379406514093607 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ + 321, + 17.916472867168917 ], - "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ - 28.323470136673063, - 7.295126396409946 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf": [ + 30, + 5.477225575051661 ], - "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf": [ - 1.4594715255295725, - 0.40844258055390575 + "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ + 47, + 6.855654600401044 ], - "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ - 10.25783113721803, - 5.390338956477541 + "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf": [ + 12, + 3.4641016151377544 ], - "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf": [ - 3.4912887801932158, - 2.8055740237324116 + "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ + 10, + 3.1622776601683795 + ], + "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf": [ + 5, + 2.23606797749979 ], "bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf": [ - 2.274420957056119, - 0.3456596308461436 + 6, + 2.449489742783178 ], "bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf": [ - 4.3524433083182394, - 0.43763942921636323 - ], - "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ - 23.63896968105441, - 9.148933027168269 + 17, + 4.123105625617661 ], - "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf": [ - 4.374791277607784, - 3.4007315553571287 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ + 19, + 4.358898943540674 ], - "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 414.08917202962164, - 32.01134445835715 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf": [ + 7, + 2.6457513110645907 ], - "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 317.76809388620194, - 29.73665781388468 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf": [ + 55, + 7.416198487095663 ], - "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 129.91376240839088, - 18.49810760616834 - ], - "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 54.73742173519595, - 12.217179891103555 - ], - "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 645.5180379330914, - 39.97838136761151 - ], - "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 422.81978194645893, - 33.69235071971744 - ], - "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 160.65333091302082, - 21.543839594206663 - ], - "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 80.98177640448209, - 19.503103635600763 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ + 86, + 9.273618495495704 ], + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf": [ + 11, + 3.3166247903554 + ] + }, + "qcdcr_Rare": { "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350": [ - 192.61193420232053, - 21.848045755100614 + 1.5164429525643968, + 0.5774091270446795 ], "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450": [ - 61.91031745520234, - 11.462950683532625 + 1.273055072042034, + 0.392052749339801 ], "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550": [ - 30.469310508603733, - 8.21243440681835 + 0.3118787620157306, + 0.2326171279941848 ], "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650": [ - 6.35909462012517, - 0.439453908633029 + 0.4507294841229239, + 0.2098782217501197 ], "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf": [ - 3.4005698710209273, - 0.3239464449497335 + 0.10694290839172993, + 0.059525474494344505 ], "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350": [ - 75.67758847491169, - 13.33418419253243 + 0.7803899183439356, + 0.32813446767936194 ], "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450": [ - 15.539238963850394, - 3.8201554223769847 + 0.3905358698406687, + 0.19953292314125481 ], "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550": [ - 7.220365994129796, - 2.5340786459599696 + 0.34814951184451104, + 0.11902968371094076 ], "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650": [ - 7.319292411466421, - 3.5567093320170224 + 0.005303972727581652, + 0.07723924877520646 ], "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf": [ - 3.122172158643018, - 0.2875220738653851 + 0.22117522843721815, + 0.09150848632129317 ], "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350": [ - 118.55415264462188, - 17.183938399543305 + 1.559648236184529, + 0.46309284245223353 ], "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450": [ - 36.071152085281994, - 8.663409253007016 + 1.148147308435071, + 0.38990024291980085 ], "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550": [ - 43.504066379454436, - 9.921483261952988 + -0.20406366400951015, + 0.29345108953958365 ], "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650": [ - 11.696431028087616, - 4.8256555634121545 + 0.0010358711694209433, + 0.20173433997515464 ], "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf": [ - 16.892494241765483, - 5.551922562973274 + 0.046639651114482206, + 0.1366402398092428 ], "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350": [ - 651.9320144310259, - 37.307116159474674 + 5.774857031519694, + 0.9489140893892992 ], "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450": [ - 142.97092288615045, - 16.236740291545008 + 1.1010572956440967, + 0.4025753279722375 ], "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550": [ - 21.30505950182268, - 4.432490217879168 + -0.24951807769910772, + 0.20776803714914197 ], "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650": [ - 4.12658040461821, - 0.33072813202297374 + 0.040533517200792346, + 0.05325535855735636 ], "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf": [ - 0.8376395459810979, - 0.1455858259735757 + 0.039749979240795597, + 0.028276168351053368 + ], + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ + 0.9469747073195833, + 0.39797328754498285 + ], + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ + 1.4244662427198875, + 0.3696838875928583 + ], + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ + 0.5741723872791766, + 0.2766638960230753 + ], + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 0.17529930866579946, + 0.10672470716819496 + ], + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ + 2.882008809976085, + 0.5946156886152701 + ], + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ + 1.9230583579144067, + 0.503848982215968 + ], + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ + 0.609968781251041, + 0.23007239698602824 + ], + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 0.34927312054513493, + 0.27753078970533246 + ], + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350": [ + 0.48892090300995505, + 0.19231002353110002 + ], + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450": [ + 0.24604977648802873, + 0.09930843307528328 + ], + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550": [ + 0.25142681464137695, + 0.1421408665505617 + ], + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf": [ + -0.16249045061429257, + 0.13104793451912958 + ], + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350": [ + 0.2971175885948085, + 0.15733439575012106 + ], + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450": [ + -0.025685739896736948, + 0.07711162791646492 + ], + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550": [ + -0.031190209084464016, + 0.02089297840470235 + ], + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf": [ + 0.021315566573186118, + 0.08460592743416652 + ], + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350": [ + 0.17049121374818554, + 0.15298111651383328 + ], + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550": [ + 0.07797164399647016, + 0.066627167786857 + ], + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf": [ + -7.56918198163703e-06, + 0.002270790557900826 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350": [ - 37.26063945582024, - 9.297965903743744 + 0.2217993374396059, + 0.2552651044544061 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450": [ - 13.31474365702687, - 5.90744081721506 + 0.2257735762261106, + 0.10932057391386288 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550": [ - 1.2797149758072521, - 0.18050269333001157 + 0.07159251662521626, + 0.052739770048311874 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650": [ - 0.7073694660473535, - 0.14250707806379595 + 0.02442293889827596, + 0.02462953225531138 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf": [ - 0.42966076063991565, - 0.12095668551071978 + -0.02601871169208181, + 0.04757969034048568 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350": [ - 25.2474925580192, - 8.758224144489013 + 0.10701138846635416, + 0.06534753882789902 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450": [ - 0.930482861650912, - 0.14254777073763164 + 0.05579672736073604, + 0.02858451681736518 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550": [ - 0.8230122728657285, - 0.14426614893740047 + 0.01659419981555743, + 0.007020852023294767 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650": [ - 0.4773295712516301, - 0.135904457626665 + 0.005914913143996614, + 0.005828950621004253 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf": [ - 0.5019695549179986, - 0.1118775666910627 + 0.021855326627289173, + 0.008087718626340617 ], "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350": [ - 13.94891366697992, - 4.805599215912625 + 0.49648015169422166, + 0.25648663326752513 ], "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450": [ - 2.034981465229439, - 0.1894585004911632 + 0.22995637115379708, + 0.09811738432522721 ], "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550": [ - 6.119520321873953, - 3.565201994790417 + 0.45966919094185243, + 0.24037802611549916 ], "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650": [ - 4.934233631793251, - 4.044012146169008 + 0.2166725829360132, + 0.09787343053650208 ], "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf": [ - 4.670035067254329, - 2.4421030400329182 + 0.12641190713593176, + 0.06100944710638304 ], "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350": [ - 67.97019071336905, - 12.193327962217566 + 0.842342643836794, + 0.4651258968525086 ], "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450": [ - 18.95910546595318, - 5.98088327029428 + 0.17141279290134293, + 0.09817941032867002 ], "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550": [ - 1.6237446487863068, - 0.21353759563598146 + 0.06549459514195632, + 0.09213560293721598 ], "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650": [ - 0.5455990287958947, - 0.11520498986701973 + -0.00016957247245841245, + 0.010894796730845117 ], "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf": [ - 0.14369335909240988, - 0.0565081139521504 - ], - "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350": [ - 22.868856230396982, - 7.8209218890360805 - ], - "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450": [ - 7.090576818168508, - 4.527039285571619 - ], - "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550": [ - -4.243611222118574, - 3.5097364348196796 - ], - "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf": [ - 2.181164911607791, - 2.0724403867479357 - ], - "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350": [ - 3.6985468369849492, - 1.940504597411426 - ], - "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450": [ - 0.15508472695043096, - 0.0887865524441799 - ], - "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550": [ - 0.0817806759977664, - 0.03018656632399243 + -2.8415026321226833e-05, + 2.009246848498155e-05 ], - "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf": [ - 2.4733875015559903, - 2.1628129693566787 - ], - "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350": [ - 22.258083110642684, - 7.738556543573619 - ], - "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550": [ - 3.765848047235174, - 2.1998761999618592 - ], - "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf": [ - 0.04779343814859516, - 0.03216249826673098 - ] - }, - "qcdcr_qcd": { "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ - 6768.969612293242, - 11.995112391447389 + 0.766532918468279, + 0.16284205460811163 ], "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ - 2079.052710954225, - 6.896108885061834 + 0.3866919893105134, + 0.11846619392217239 ], "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ - 700.5835134222248, - 2.911999561518384 + 0.29328897569961754, + 0.08375160995602188 ], "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf": [ - 398.2369029944525, - 1.2125563702864448 + 0.3271303884225105, + 0.14498821957097346 ], "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550": [ - 1123.5701466480846, - 3.4979635028825364 + 0.25731862446240683, + 0.08816425351076193 ], "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ - 392.65876394634336, - 1.4091004314509712 + -0.03351045680074094, + 0.08987016731105538 ], "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750": [ - 129.5796958856489, - 0.6357812181881909 + 0.030384693339868818, + 0.017361304209740386 ], "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf": [ - 83.110107129668, - 0.5704194043566212 + 0.12045730962811518, + 0.07362310450335918 ], "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550": [ - 204.30199957113854, - 1.919557325886905 + -0.004080284146411373, + 0.05974628627396303 ], "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ - 53.303118508083905, - 0.5833875290862673 + 0.027873176876752837, + 0.02086708293336901 ], "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf": [ - 26.077922335646107, - 0.24258738636498106 + 0.015988197712673013, + 0.012763706899505315 ], "bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf": [ - 71.97992054087369, - 0.7349227278928536 - ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ - 460.27162472653544, - 6.264515109931516 - ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf": [ - 17.66360779838975, - 0.9128307245406683 - ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ - 305.1339526822771, - 4.370801374222826 - ], - "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf": [ - 23.6260418495023, - 0.7840505912399125 + 0.08071971313194837, + 0.06591588292512209 ], "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ - 131.15011536786471, - 1.886709135192994 + 0.05447923331413307, + 0.048173980387868395 ], "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ - 38.92837405113892, - 1.5845169044068728 + 0.0437931004465284, + 0.03140221982942875 ], "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf": [ - 11.983037566536897, - 0.3278522336199172 + -0.024627534244842764, + 0.024627534244841653 ], "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ - 66.59508394912399, - 0.8546724363193132 + 0.05983753888911281, + 0.16733694997963652 ], "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ - 15.130134387519128, - 0.2840717040621952 + 0.12678864262251466, + 0.118457589352445 ], "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf": [ - 6.0169051648239495, - 0.12332567515197407 - ], - "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ - 85.55674895125634, - 2.4321693994704088 - ], - "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf": [ - 25.712454180459858, - 1.5084837535831004 - ], - "bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf": [ - 30.98125598022, - 1.2226191076737296 + -0.013393433123354725, + 0.015865690571824718 ], - "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ - 50.414645451071664, - 1.3460267771814596 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ + 0.8626738791496962, + 0.2521334707149022 ], - "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf": [ - 5.96212547360577, - 0.3296656726318228 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf": [ + 0.06754447288685128, + 0.03731122334863201 ], - "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ - 57.432009550310184, - 1.4497414795426977 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ + 0.1219879712425822, + 0.10318122739579146 ], - "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf": [ - 3.9355503066204687, - 0.12128204671606867 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf": [ + 0.02868709174519779, + 0.015888218891161633 ], - "bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf": [ - 8.510478327289677, - 0.32418663106633405 + "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ + 0.09921706610836623, + 0.05965255849691303 ], - "bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf": [ - 12.73081726157874, - 0.4874371658782314 + "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf": [ + -0.07437874246011233, + 0.0947812763088928 ], "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ - 29.160563585208262, - 1.7837879413425102 + 0.14239618283253463, + 0.09589413323985768 ], "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf": [ - 10.497753489111641, - 0.15524878358957853 - ], - "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 3163.224357780219, - 9.51234087168175 - ], - "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 1728.5678151914237, - 5.4661964111022225 + -0.03840269101632998, + 0.14424275953554389 ], - "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 366.4053860954342, - 1.7848451684845308 + "bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf": [ + -0.019018276885880425, + 0.049360052200445995 ], - "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 144.16007344411344, - 0.66806771224536 + "bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf": [ + 0.22879464069439592, + 0.09016549163312249 ], - "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 1565.2578006957128, - 7.625381098806801 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ + -0.0009222299546038926, + 0.21269397686061367 ], - "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 857.8224025804737, - 4.399892532664078 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf": [ + 0.0965891550546445, + 0.05838962178151409 ], - "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 165.2840197365926, - 2.036069134484077 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf": [ + 0.3699016910817434, + 0.16468843176661915 ], - "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 58.87757915052107, - 0.38792044353651256 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ + 0.2709737114032791, + 0.2514240691986474 ], + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf": [ + 0.025028416674260257, + 0.019580135870988828 + ] + }, + "qcdcr_znunu": { "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350": [ - 1569.4531660786397, - 6.699710455182397 + 17.36076127064962, + 0.7460940755388817 ], "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450": [ - 449.44983735853725, - 3.034769341310196 + 8.969507761716159, + 0.5452366574700154 ], "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550": [ - 115.37743353141549, - 1.348085794756003 + 4.0094200179578365, + 0.7323299590180619 ], "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650": [ - 21.629735526617477, - 0.37949011728415566 + 2.7151801735053596, + 0.32408445375289535 ], "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf": [ - 6.87502899662138, - 0.13823528547197794 + 1.8941890495575535, + 0.28182153626325834 ], "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350": [ - 629.7008541414335, - 3.107845025700672 + 4.919116791968008, + 0.42516785650074296 ], "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450": [ - 210.11385413540452, - 1.2208767466739883 + 2.971755980845046, + 0.3598188304856104 ], "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550": [ - 77.29877112110788, - 0.6925342894026184 + 1.584152178718341, + 0.25530575396459454 ], "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650": [ - 22.797834323261156, - 0.2722822769156529 + 0.975464377624121, + 0.19785129486780895 ], "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf": [ - 8.951537698976411, - 0.14936223886755373 + 1.485135823854307, + 0.2658079791778503 ], "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350": [ - 1032.9500567012278, - 1.9641773189421314 + 8.395488305251547, + 0.5631486763076791 ], "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450": [ - 431.8007127249145, - 1.1449588998575095 + 4.9744826408064, + 0.43719000785395007 ], "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550": [ - 193.27189024511665, - 0.7131345019999988 + 3.377079921616769, + 0.3594027255851708 ], "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650": [ - 82.58703066928337, - 0.43684027398100683 + 1.909568403938465, + 0.281869771619891 ], "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf": [ - 65.269018394857, - 0.35640910422143635 + 3.6873425513635993, + 0.3817353818827173 ], "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350": [ - 3130.6369985760552, - 12.342149554452542 + 86.0166616364877, + 2.8835552757958367 ], "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450": [ - 426.0961092164116, - 3.4830199374986055 + 24.211239948750517, + 1.0610161991263538 ], "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550": [ - 61.49200938251224, - 1.0366989446726722 + 7.5754064777183885, + 0.487214094032066 ], "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650": [ - 4.198479246078268, - 0.1780091835001668 + 1.9889585534392609, + 0.24959900482565175 ], "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf": [ - 0.9135646178889283, - 0.04365511030548376 + 0.6266012670275813, + 0.13197784456883815 + ], + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ + 0.631362290240304, + 0.1285739392965533 + ], + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ + 0.7748942673765669, + 0.16474316543835762 + ], + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ + 0.11984359666303135, + 0.054946432665586034 + ], + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 0.13879235935291945, + 0.06804397849109753 + ], + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ + 0.8137753108558172, + 0.27620284753753965 + ], + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ + 0.5425296205530685, + 0.12632354953395092 + ], + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ + 0.10171494610949594, + 0.04610202883541337 + ], + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 0.12155844886865452, + 0.048715871844845264 + ], + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350": [ + 0.10570473704865435, + 0.04791476867006435 + ], + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450": [ + 0.40583384527235467, + 0.13654015273461476 + ], + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550": [ + 0.07486937902194768, + 0.04347343680663269 + ], + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf": [ + 0.09467850465262018, + 0.06801043568630993 + ], + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350": [ + 0.0921717687324417, + 0.042399260858709806 + ], + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450": [ + 0.007444937109539751, + 0.002206500202929526 + ], + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550": [ + 0.012579418940731557, + 0.003507989067489062 + ], + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf": [ + 0.08405720085738722, + 0.05695413853595017 + ], + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350": [ + 1.104054010616892, + 0.20645988490848954 + ], + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550": [ + 0.622170324210856, + 0.14645246756780597 + ], + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf": [ + 0.02022611026859522, + 0.02022611026893081 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350": [ - 176.98297610447042, - 2.1719687593884123 + 2.079769207161007, + 0.24906913188522642 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450": [ - 60.41458714166233, - 1.086788465316377 + 1.6352066214139995, + 0.3942337578941016 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550": [ - 15.892596184432008, - 0.46331718965458873 + 0.6685186903068825, + 0.13424970178445655 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650": [ - 2.7168157958459442, - 0.06895872976185387 + 0.42566009314941766, + 0.1269861184138383 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf": [ - 0.5002434751672115, - 0.024744674965104803 + 0.2557839265300572, + 0.09747454135231293 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350": [ - 77.23863655051434, - 0.9964020202265662 + 0.8853542854212719, + 0.18039275218186732 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450": [ - 30.50294564072895, - 0.4765669161595231 + 0.24187252010688098, + 0.11674486864762769 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550": [ - 12.949205322047796, - 0.23547605702750055 + 0.4375522996751897, + 0.16025020799459372 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650": [ - 4.042569339944957, - 0.12708887517348813 + 0.31878320929081383, + 0.16036906233499337 ], "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf": [ - 1.0580113510095277, - 0.03908209507762718 + 0.3800098863130188, + 0.13253466564325853 ], "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350": [ - 128.85620893386562, - 0.7042726044499924 + 0.5802538641573847, + 0.1401240046626198 ], "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450": [ - 53.82701680415936, - 0.39545400451692675 + 0.5841309300767534, + 0.137017670892878 ], "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550": [ - 28.899148546572683, - 0.30865889419210035 + 0.3854312246066911, + 0.1081508668265778 ], "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650": [ - 13.123852503167397, - 0.17317187559095362 + 0.25335103389625147, + 0.08187207770677987 ], "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf": [ - 10.604754396001892, - 0.14009835921912692 + 0.6650007463804286, + 0.15274197777870094 ], "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350": [ - 507.08335956869166, - 4.7937043738160074 + 11.587814756205262, + 1.001333260133648 ], "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450": [ - 65.17077459867589, - 1.303011603580369 + 3.7447350204747636, + 0.4593622997216242 ], "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550": [ - 3.5818057695101664, - 0.3104205537222402 + 1.1395983390530091, + 0.1832491485285641 ], "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650": [ - 0.665555741334869, - 0.10663753450517609 + 0.44146632482807036, + 0.10882979126774756 ], "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf": [ - 0.06334103971263545, - 0.007891231640264536 + 0.1285373581913518, + 0.06589763687856903 ], - "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350": [ - 76.65414967703265, - 1.3418652717076642 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ + 543.2213364959971, + 5.553865665333579 ], - "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450": [ - 14.939275787407823, - 0.37560389601999605 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ + 254.0265868063384, + 3.264621797633201 ], - "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550": [ - 4.652226274711863, - 0.14672304015414492 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ + 112.21710720942201, + 2.0896717804772007 ], - "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf": [ - 0.8148227246857619, - 0.038623008948759655 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf": [ + 101.72376182412563, + 2.0960987299419256 ], - "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350": [ - 30.447663055639914, - 0.3869374622232861 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550": [ + 16.040516241000205, + 0.7870972133270483 ], - "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450": [ - 14.435620149292873, - 0.21915507399230397 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ + 8.045137190159949, + 0.6895037671437912 ], - "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550": [ - 5.344109919954164, - 0.1080155119877189 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750": [ + 3.599630307262487, + 0.383379907900928 ], - "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf": [ - 4.213950395386755, - 0.09478391701731383 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf": [ + 4.223597001952385, + 0.44131227180194477 ], - "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350": [ - 113.79078392607552, - 2.8253062483771525 + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550": [ + 16.3077277524867, + 0.9642770508510896 ], - "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550": [ - 9.397029904732282, - 0.32698885179746806 + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ + 9.115733030202136, + 0.6636784334468586 ], - "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf": [ - 0.3931443224694178, - 0.05308856855901153 - ] - }, - "data": { - "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ - 6843.0, - 82.72242743053422 + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf": [ + 7.195350962497287, + 0.591068011355766 ], - "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ - 4500.0, - 67.08203932499369 + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf": [ + 1.0298452311617439, + 0.2241659880852058 ], - "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ - 1920.0, - 43.81780460041329 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ + 7.935561055951439, + 0.6765672778624624 ], - "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf": [ - 1597.0, - 39.96248240537617 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ + 2.9566613334741305, + 0.33149212498404373 ], - "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550": [ - 935.0, - 30.57776970284131 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf": [ + 2.136504807565416, + 0.32038485437772174 ], - "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ - 486.0, - 22.045407685048602 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ + 6.333859968399338, + 0.7630740972164537 ], - "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750": [ - 256.0, - 16.0 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ + 1.8291755518439459, + 0.2530929089416838 ], - "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf": [ - 235.0, - 15.329709716755891 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf": [ + 2.1741757747618067, + 0.3260981834872891 ], - "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550": [ - 138.0, - 11.74734012447073 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ + 50.35100524624477, + 3.038711424211617 ], - "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ - 115.0, - 10.723805294763608 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf": [ + 7.528633277992412, + 1.0287970140403775 ], - "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750": [ - 61.0, - 7.810249675906654 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ + 31.086933357729777, + 2.3274201548618665 ], - "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf": [ - 34.0, - 5.830951894845301 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf": [ + 4.200885513709636, + 0.6788063511862854 ], - "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550": [ - 33.0, - 5.744562646538029 + "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ + 4.08420316624597, + 0.8109830869806782 ], - "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650": [ - 14.0, - 3.7416573867739413 + "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf": [ + 1.8594777446337503, + 0.2978199451609163 ], - "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750": [ - 6.0, - 2.449489742783178 + "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ + 0.0823607328215985, + 0.04794552476201815 ], - "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf": [ - 9.0, - 3.0 + "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf": [ + 0.09268383141579761, + 0.047516437549053214 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ - 2380.0, - 48.78524367060187 + "bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf": [ + 1.474637513271773, + 0.39445784202397366 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500": [ - 457.0, - 21.37755832643195 + "bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf": [ + 2.056656838157778, + 0.2676831685027438 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600": [ - 63.0, - 7.937253933193772 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ + 0.1857386299693644, + 0.07956903516030281 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf": [ - 13.0, - 3.605551275463989 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf": [ + 0.0856387771664231, + 0.04051159277203217 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ - 1233.0, - 35.11409973215888 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf": [ + 5.171885201699752, + 0.8696788648982585 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500": [ - 216.0, - 14.696938456699069 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ + 5.31530365467961, + 0.8655047426431779 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600": [ - 27.0, - 5.196152422706632 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf": [ + 0.9017970843306102, + 0.3372979786427096 + ] + }, + "qcdcr_ttbarplusw": { + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350": [ + 164.8329474411305, + 24.312405972384656 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf": [ - 5.0, - 2.23606797749979 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450": [ + 43.592454568111634, + 13.632029924933216 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ - 158.0, - 12.569805089976535 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550": [ + 19.779874216343615, + 7.534160999711365 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ - 66.0, - 8.12403840463596 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650": [ + 3.1967124980346853, + 0.3216164597613509 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750": [ - 33.0, - 5.744562646538029 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf": [ + 1.4178968777732734, + 0.21402561287251903 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf": [ - 31.0, - 5.5677643628300215 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350": [ + 87.40656018619302, + 18.563247310009316 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ - 85.0, - 9.219544457292887 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450": [ + 11.716203059954978, + 4.797569246452596 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ - 33.0, - 5.744562646538029 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550": [ + 12.964251463335131, + 6.487994614582682 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750": [ - 17.0, - 4.123105625617661 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650": [ + 6.1843266461171424, + 3.552543522408202 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf": [ - 11.0, - 3.3166247903554003 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf": [ + 1.6136519788515216, + 0.18877113836446976 ], - "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ - 214.0, - 14.628738838327793 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350": [ + 90.61256102088987, + 17.975863092426376 ], - "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500": [ - 45.0, - 6.708203932499369 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450": [ + 29.886787294404257, + 9.276478682001915 ], - "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf": [ - 17.0, - 4.123105625617661 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550": [ + 32.498918303396295, + 9.947019227141851 ], - "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400": [ - 239.0, - 15.459624833740307 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650": [ + 9.765655880005852, + 4.7873279627242855 ], - "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500": [ - 49.0, - 7.0 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf": [ + 13.128146384474348, + 5.88368157099497 ], - "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf": [ - 8.0, - 2.8284271247461903 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350": [ + 601.3628012105496, + 45.06989243138188 ], - "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ - 429.0, - 20.71231517720798 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450": [ + 137.3835591690647, + 21.647178125816314 ], - "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500": [ - 79.0, - 8.888194417315589 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550": [ + 23.94466509478002, + 8.383825295329805 ], - "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf": [ - 9.0, - 3.0 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650": [ + 2.640257792353623, + 0.32884759836212163 ], - "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ - 184.0, - 13.564659966250536 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf": [ + 0.4462018081894712, + 0.1392298645126096 ], - "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500": [ - 32.0, - 5.65685424949238 + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ + 73.22042464730703, + 16.519752002419672 ], - "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf": [ - 8.0, - 2.8284271247461903 + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ + 42.63706927821568, + 13.293581845881222 ], - "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550": [ - 21.0, - 4.582575694955841 + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ + 18.646683695405272, + 7.762434971397133 ], - "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650": [ - 9.0, - 3.0 + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 10.73874776962657, + 6.253056508876904 ], - "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf": [ - 4.0, - 2.0 + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ + 160.4794590415238, + 24.19896271165871 ], - "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550": [ - 39.0, - 6.244997998398398 + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ + 107.71231329519424, + 22.117992104462346 ], - "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650": [ - 14.0, - 3.7416573867739413 + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ + 23.444379112895604, + 9.333152938036694 ], - "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf": [ - 7.0, - 2.6457513110645907 + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 15.239789505137196, + 7.0845137315442885 ], - "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ - 39.0, - 6.244997998398398 + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350": [ + 22.980493121615837, + 9.847180489650908 ], - "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650": [ - 13.0, - 3.605551275463989 + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450": [ + 6.475591110522373, + 4.538026296462683 ], - "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf": [ - 10.0, - 3.1622776601683795 + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550": [ + -4.574695322370644, + 4.758781283208817 ], - "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 502.0, - 22.40535650240808 + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf": [ + 2.2322062241098592, + 2.0692315948070177 ], - "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 272.0, - 16.492422502470642 + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350": [ + 4.3161251416388495, + 3.035248314819754 ], - "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 39.0, - 6.244997998398398 + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450": [ + 0.14966281596480258, + 0.03604759201360094 ], - "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 13.0, - 3.605551275463989 + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550": [ + 0.09139132824657281, + 0.03062118504619373 ], - "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 1636.0, - 40.44749683231337 + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf": [ + 2.3800760337592237, + 2.1606596019355586 ], - "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 747.0, - 27.331300737432898 + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350": [ + 21.086876512938034, + 9.146519382475942 ], - "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 119.0, - 10.908712114635714 + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550": [ + 3.2514996083812093, + 2.22331243406668 ], - "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 32.0, - 5.656854249492381 + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf": [ + 0.02755967395933112, + 0.024901569436829755 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt250to350": [ - 382.0, - 19.544820285692065 + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350": [ + 35.09560862354533, + 10.878760422880205 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt350to450": [ - 165.0, - 12.84523257866513 + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450": [ + 11.61293452749942, + 7.693463728190789 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt450to550": [ - 90.0, - 9.486832980505138 + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550": [ + 0.5320434042132547, + 0.11998389904755895 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt550to650": [ - 51.0, - 7.14142842854285 + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650": [ + 0.19964257812807773, + 0.08912746303157758 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ - 54.0, - 7.3484692283495345 + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf": [ + 0.19293203905363043, + 0.07330570372661636 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt250to350": [ - 126.0, - 11.224972160321824 + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350": [ + 29.42056625052055, + 11.80114675495851 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt350to450": [ - 39.0, - 6.244997998398398 + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450": [ + 0.5719407732885884, + 0.10031784428739532 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt450to550": [ - 16.0, - 4.0 + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550": [ + 0.2935641199528618, + 0.07017021540371336 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt550to650": [ - 12.0, - 3.4641016151377544 + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650": [ + 0.17166488561633741, + 0.05394867550081952 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ - 25.0, - 5.0 + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf": [ + 0.07814241833966662, + 0.02667831481064904 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt250to350": [ - 197.0, - 14.035668847618199 + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350": [ + 10.397019243351679, + 5.3066351235965685 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt350to450": [ - 59.0, - 7.681145747868608 + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450": [ + 1.0927672974157758, + 0.10427043252616115 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ - 34.0, - 5.830951894845301 + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550": [ + 5.267348129569882, + 3.5642795253726787 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt550to650": [ - 18.0, - 4.242640687119285 + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650": [ + 4.460085514637285, + 4.057903718715472 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 30.0, - 5.477225575051661 + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf": [ + 4.008687179870321, + 3.3079080879090856 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to350": [ - 163.0, - 12.767145334803704 + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350": [ + 56.39178031124857, + 12.695088761901983 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt350to450": [ - 95.0, - 9.746794344808963 + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450": [ + 15.246166294796012, + 6.282579760519277 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt450to550": [ - 32.0, - 5.656854249492381 + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550": [ + 0.4767594136092157, + 0.12256471023277343 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650": [ - 13.0, - 3.605551275463989 + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650": [ + 0.20556451538686815, + 0.08186752984848325 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf": [ - 3.0, - 1.7320508075688774 + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf": [ + 0.015068917324242648, + 0.015068917325203289 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt250to350": [ - 49.0, - 7.0 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ + 509.19389423348866, + 8.183247109369079 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt350to450": [ - 16.0, - 4.0 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ + 229.6891469528, + 3.441811232719843 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt450to550": [ - 10.0, - 3.1622776601683795 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ + 108.90801219825244, + 6.769341833989803 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt550to650": [ - 3.0, - 1.7320508075688772 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf": [ + 99.02421222787598, + 1.4931174904853932 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ - 3.0, - 1.7320508075688772 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550": [ + 27.36630158649041, + 6.104285123406107 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt250to350": [ - 7.0, - 2.6457513110645907 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ + 18.76954077618757, + 6.408702475288948 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt350to450": [ - 5.0, - 2.23606797749979 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750": [ + 13.15818709615769, + 7.419627960031297 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt450to550": [ - 0.0, - 0.0 + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf": [ + 6.030803650962298, + 0.2862561901437493 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt550to650": [ - 0.0, - 0.0 + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550": [ + 17.3503112871349, + 1.4466358008339346 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ - 1.0, - 1.0 + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ + 7.502694385255381, + 0.6187064534437717 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to350": [ - 17.0, - 4.123105625617661 + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf": [ + 6.1126567890069055, + 0.3913157495383084 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt350to450": [ - 7.0, - 2.6457513110645907 + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf": [ + 1.5596454911537876, + 0.19576150923295638 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt450to550": [ - 4.0, - 2.0 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ + 13.647650782037545, + 3.0573887114418516 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650": [ - 3.0, - 1.7320508075688774 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ + 3.914813277506255, + 0.46380279742177327 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 2.0, - 1.4142135623730951 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf": [ + 8.86385040954383, + 5.425744771403913 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt250to350": [ - 232.0, - 15.231546211727817 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ + 11.958233757492962, + 1.9092053244908584 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt350to450": [ - 53.0, - 7.280109889280518 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ + 5.900502266460535, + 0.845081412111236 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt450to550": [ - 9.0, - 3.0 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf": [ + 3.871439934969203, + 0.41045986894181347 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt550to650": [ - 2.0, - 1.4142135623730951 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ + 100.41887435842068, + 9.961551739422877 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt650toinf": [ - 0.0, - 0.0 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf": [ + 10.270644517930123, + 1.986169497329325 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt250to350": [ - 17.0, - 4.123105625617661 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ + 103.77836109402756, + 15.287370939170247 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt350to450": [ - 5.0, - 2.23606797749979 + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf": [ + 20.34262691400818, + 7.047375323686307 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt450to550": [ - 3.0, - 1.7320508075688772 + "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ + 5.474515904260443, + 1.4577773390164293 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt550to650": [ - 1.0, - 1.0 + "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf": [ + 2.2599017844058835, + 0.6621926230568845 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt650toinf": [ - 3.0, - 1.7320508075688772 + "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ + 5.357164782112704, + 4.519556851365772 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt250to350": [ - 4.0, - 2.0 + "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf": [ + 3.4997857110788573, + 3.4070851633240653 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt350to450": [ - 1.0, - 1.0 + "bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf": [ + 0.8876276233586395, + 0.19214795692843628 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt450to550": [ - 0.0, - 0.0 + "bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf": [ + 7.003798847372309, + 4.921476363387794 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt550to650": [ - 0.0, - 0.0 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ + 6.616276187708081, + 4.906919809220409 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt650toinf": [ - 0.0, - 0.0 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf": [ + 5.534352217817286, + 3.864853959967725 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt250to350": [ - 7.0, - 2.6457513110645907 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf": [ + 17.830739569032175, + 7.621823382347896 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt350to450": [ - 1.0, - 1.0 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ + 23.001064976534053, + 7.7919202201263325 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt450to550": [ - 1.0, - 1.0 + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf": [ + 0.6169971785075177, + 0.3201629402997711 + ] + }, + "qcdcr_qcd": { + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350": [ + 1387.862490186213, + 56.039784820558175 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt550to650": [ - 0.0, - 0.0 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450": [ + 365.91367040137135, + 23.789263023389218 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt650toinf": [ - 1.0, - 1.0 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550": [ + 91.84897789477871, + 10.267792170420945 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350": [ - 2277.0, - 47.7179211617606 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650": [ + 17.4352464035793, + 6.422887897604368 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450": [ - 420.0, - 20.493901531919196 + "bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf": [ + 5.857519144705648, + 1.2277243976278822 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550": [ - 79.0, - 8.888194417315589 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350": [ + 543.3946944409481, + 21.34924312154827 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650": [ - 23.0, - 4.795831523312719 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450": [ + 181.3473495391854, + 9.434288279588559 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf": [ - 9.0, - 3.0 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550": [ + 62.128402395782615, + 4.6100393930639125 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt250to350": [ - 65.0, - 8.06225774829855 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650": [ + 17.650639549301893, + 2.678828752550825 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt350to450": [ - 27.0, - 5.196152422706632 + "bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf": [ + 5.928877444429656, + 0.9027529331628802 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt450to550": [ - 7.0, - 2.6457513110645907 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350": [ + 942.7884371282345, + 17.784708778982143 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt550to650": [ - 7.0, - 2.6457513110645907 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450": [ + 384.4962602338404, + 9.458640726353279 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt650toinf": [ - 1.0, - 1.0 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550": [ + 165.58760909444226, + 5.5834912574212945 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt250to350": [ - 13.0, - 3.6055512754639896 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650": [ + 68.76484546067445, + 3.6892212061982192 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt350to450": [ - 7.0, - 2.6457513110645907 + "bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf": [ + 50.72125418590805, + 2.916491046896248 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt450to550": [ - 1.0, - 1.0 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350": [ + 2834.6579636315646, + 111.21388845870112 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt550to650": [ - 3.0, - 1.7320508075688774 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450": [ + 374.82784492136113, + 33.87082313195806 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt650toinf": [ - 2.0, - 1.4142135623730951 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550": [ + 52.71133638966436, + 11.602684629961967 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350": [ - 9.0, - 3.0000000000000004 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650": [ + 4.107191140139134, + 1.1749561600907588 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450": [ - 2.0, - 1.4142135623730951 + "bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf": [ + 0.6630699471536978, + 0.09340291388402941 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550": [ - 1.0, - 1.0 + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ + 73.47692839542836, + 14.140836401844014 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650": [ - 0.0, - 0.0 + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ + 55.08250712018411, + 6.824824545531144 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf": [ - 3.0, - 1.7320508075688774 + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ + 7.927527780424683, + 1.1740515432286065 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt250to350": [ - 1.0, - 1.0 + "bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 4.531319924700381, + 1.313433450173894 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt350to450": [ - 0.0, - 0.0 + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ + 94.17048723086236, + 29.971707348925307 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt450to550": [ - 0.0, - 0.0 + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ + 58.52071933333936, + 6.10337256983241 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt550to650": [ - 0.0, - 0.0 + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ + 7.021172226498088, + 1.188418222813892 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt650toinf": [ - 0.0, - 0.0 + "bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 2.144548902357788, + 0.5047906036204336 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt250to350": [ - 0.0, - 0.0 + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350": [ + 61.447113765925266, + 10.454886041536064 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt350to450": [ - 0.0, - 0.0 + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450": [ + 12.136518294294365, + 3.0325965011355573 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt450to550": [ - 0.0, - 0.0 + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550": [ + 3.93383172114609, + 1.1936571607820807 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt550to650": [ - 0.0, - 0.0 + "bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf": [ + 0.8122489442763255, + 0.5042635405062433 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt650toinf": [ - 1.0, - 1.0 + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350": [ + 27.61299404755343, + 5.431430069812639 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt250to350": [ - 0.0, - 0.0 + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450": [ + 13.404349319918047, + 1.8523617272090902 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt350to450": [ - 0.0, - 0.0 + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550": [ + 4.942117155679526, + 0.9180316945160054 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt450to550": [ - 0.0, - 0.0 + "bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf": [ + 3.509530377830078, + 0.7298947822833328 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt550to650": [ - 0.0, - 0.0 + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350": [ + 101.64542331683538, + 28.833516804078965 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt650toinf": [ - 0.0, - 0.0 + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550": [ + 5.736511829635037, + 2.559311043366328 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt250to350": [ - 0.0, + "bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf": [ + 0.3121980428691473, 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt350to450": [ - 0.0, - 0.0 + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350": [ + 162.16501017303494, + 16.139228319537274 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt450to550": [ - 0.0, - 0.0 + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450": [ + 51.3658933377438, + 11.070911169165573 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt550to650": [ - 0.0, - 0.0 + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550": [ + 12.958953280095562, + 2.893101835557028 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt650toinf": [ - 0.0, + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650": [ + 2.2645950085337794, + 0.990972085389092 + ], + "bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf": [ + 0.6061189490730134, + 0.8448600576391927 + ], + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350": [ + 64.46270426579373, + 8.900656975235867 + ], + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450": [ + 24.621794412376744, + 2.892432372884123 + ], + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550": [ + 10.55204728789929, + 1.9419059738093505 + ], + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650": [ + 3.455670928121817, + 1.2025250474819777 + ], + "bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf": [ + 1.0206359940834, + 0.5843362541505159 + ], + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350": [ + 116.61102728445074, + 6.48079142536383 + ], + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450": [ + 49.179303222530145, + 3.267737630537912 + ], + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550": [ + 25.70230102105665, + 2.18969323246891 + ], + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650": [ + 11.48828988886323, + 1.4706425929024132 + ], + "bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf": [ + 9.016684966105682, + 1.3189478166729567 + ], + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350": [ + 410.4285603890867, + 56.381838764481074 + ], + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450": [ + 51.11105653039374, + 15.342295099311093 + ], + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550": [ + 5.549169447945831, + 3.4002548265685024 + ], + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650": [ + 0.970180354637414, + 0.007028560819561644 + ], + "bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf": [ + 0.03535295652239519, 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt250to350": [ - 5.0, + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ + 5496.329161228557, + 76.60204411706091 + ], + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ + 1613.0709586640814, + 31.121170502760886 + ], + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ + 531.763907161705, + 10.836971619899755 + ], + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf": [ + 292.45700707660336, + 9.383531961116349 + ], + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550": [ + 288.0586902366589, + 12.915779440247936 + ], + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ + 104.34390050898058, + 4.874406833158759 + ], + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750": [ + 33.06686728016374, + 2.5988405955379856 + ], + "bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf": [ + 20.543340969551338, + 1.757280165396903 + ], + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550": [ + 173.04430687289394, + 12.00488289305088 + ], + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ + 46.393648982656984, + 3.621935388300807 + ], + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf": [ + 23.492131601124406, + 2.277594524230869 + ], + "bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf": [ + 17.86892437510634, + 2.0064254520470373 + ], + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ + 100.37108745354351, + 8.867895567337426 + ], + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ + 24.469999007120496, + 6.513879455881687 + ], + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf": [ + 8.478706417344508, + 0.9933145452524724 + ], + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ + 50.00537786748125, + 2.9131943834251164 + ], + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ + 12.338761948243912, + 1.355099521392113 + ], + "bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf": [ + 4.550196048943155, + 0.7033167393008861 + ], + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ + 357.3317190102762, + 44.121423005827886 + ], + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf": [ + 14.302207999327035, + 1.5068835791295798 + ], + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ + 204.90463881748002, + 46.374692042541284 + ], + "bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf": [ + 15.400461056302241, + 7.634471184118136 + ], + "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ + 76.37654133005776, + 20.585550012968252 + ], + "bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf": [ + 19.041917394717906, + 6.1220591671533855 + ], + "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ + 7.607392857843874, + 1.296642595118437 + ], + "bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf": [ + 4.214412877883657, + 0.9385438934237065 + ], + "bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf": [ + 6.480757716593498, + 1.0795126634225027 + ], + "bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf": [ + 9.88936203637472, + 1.079672242571146 + ], + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ + 10.264256982864733, + 4.426441406388267 + ], + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf": [ + 1.3249013532377243, + 0.6320191926509324 + ], + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf": [ + 25.543914431307833, + 13.946015010345002 + ], + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ + 37.64391927008478, + 12.195899982673835 + ], + "bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf": [ + 4.8448995898780325, + 0.3110345857478768 + ] + }, + "data": { + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt250to350": [ + 346, + 18.601075237738275 + ], + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt350to450": [ + 143, + 11.958260743101398 + ], + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt450to550": [ + 79, + 8.888194417315589 + ], + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt550to650": [ + 45, + 6.708203932499369 + ], + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ + 55, + 7.416198487095663 + ], + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt250to350": [ + 114, + 10.677078252031311 + ], + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt350to450": [ + 40, + 6.324555320336759 + ], + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt450to550": [ + 11, + 3.3166247903554 + ], + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt550to650": [ + 13, + 3.605551275463989 + ], + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ + 19, + 4.358898943540674 + ], + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt250to350": [ + 181, + 13.45362404707371 + ], + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt350to450": [ + 57, + 7.54983443527075 + ], + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ + 33, + 5.744562646538029 + ], + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt550to650": [ + 19, + 4.358898943540674 + ], + "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt650toinf": [ + 31, + 5.5677643628300215 + ], + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt250to350": [ + 16, + 4.0 + ], + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt350to450": [ + 5, 2.23606797749979 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt350to450": [ - 6.0, - 2.449489742783178 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt450to550": [ + 4, + 2.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt450to550": [ - 0.0, - 0.0 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt550to650": [ + 1, + 1.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt550to650": [ - 3.0, + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt650toinf": [ + 3, 1.7320508075688772 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt650toinf": [ - 0.0, - 0.0 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt250to350": [ + 5, + 2.23606797749979 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt250to350": [ - 1.0, + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt350to450": [ + 1, 1.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt350to450": [ - 3.0, - 1.7320508075688772 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt450to550": [ + 1, + 1.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt450to550": [ - 0.0, + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt550to650": [ - 0.0, + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt650toinf": [ - 0.0, - 0.0 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt250to350": [ + 6, + 2.449489742783178 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt250to350": [ - 0.0, - 0.0 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt350to450": [ + 1, + 1.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt350to450": [ - 0.0, + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt450to550": [ - 0.0, + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt550to650": [ - 0.0, - 0.0 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt650toinf": [ + 2, + 1.4142135623730951 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt650toinf": [ - 0.0, - 0.0 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt250to350": [ + 233, + 15.264337522473747 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt250to350": [ - 2.0, + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt350to450": [ + 53, + 7.280109889280518 + ], + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt450to550": [ + 9, + 3.0 + ], + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt550to650": [ + 2, 1.4142135623730951 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt350to450": [ - 0.0, + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt450to550": [ - 0.0, - 0.0 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt250to350": [ + 58, + 7.615773105863909 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt550to650": [ - 0.0, - 0.0 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt350to450": [ + 27, + 5.196152422706632 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt650toinf": [ - 0.0, - 0.0 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt450to550": [ + 7, + 2.6457513110645907 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt250to350": [ - 13.0, - 3.6055512754639896 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt550to650": [ + 7, + 2.6457513110645907 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt350to450": [ - 2.0, + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt650toinf": [ + 2, 1.4142135623730951 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt450to550": [ - 2.0, + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt250to350": [ + 16, + 4.0 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt350to450": [ + 8, + 2.8284271247461903 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt450to550": [ + 2, 1.4142135623730951 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt550to650": [ - 0.0, - 0.0 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt550to650": [ + 1, + 1.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt650toinf": [ - 0.0, + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt650toinf": [ + 1, + 1.0 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350": [ + 10, + 3.1622776601683795 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450": [ + 3, + 1.7320508075688772 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550": [ + 1, + 1.0 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650": [ + 0, 0.0 ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf": [ + 4, + 2.0 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350": [ + 2540, + 50.39841267341661 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450": [ + 499, + 22.338307903688676 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550": [ + 99, + 9.9498743710662 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650": [ + 24, + 4.898979485566356 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf": [ + 10, + 3.1622776601683795 + ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt250to350": [ - 1.0, - 1.0 + 2, + 1.4142135623730951 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt350to450": [ - 1.0, + 1, 1.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt250to350": [ - 1.0, - 1.0 + 0, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt350to450": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt550to650": [ - 1.0, + 1, 1.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt250to350": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt350to450": [ - 1.0, + 1, 1.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt450to550": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt550to650": [ - 0.0, + 0, 0.0 ], "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt650toinf": [ - 0.0, + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt250to350": [ - 64.0, - 8.0 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt250to350": [ + 13, + 3.605551275463989 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt350to450": [ - 45.0, - 6.708203932499369 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt350to450": [ + 2, + 1.4142135623730951 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt450to550": [ - 16.0, - 4.0 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt450to550": [ + 2, + 1.4142135623730951 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt550to650": [ - 11.0, - 3.3166247903554003 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt550to650": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ - 7.0, - 2.6457513110645903 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt650toinf": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt250to350": [ - 24.0, - 4.898979485566357 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt250to350": [ + 49, + 7.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt350to450": [ - 10.0, - 3.1622776601683795 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt350to450": [ + 14, + 3.7416573867739413 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt450to550": [ - 5.0, - 2.23606797749979 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt450to550": [ + 7, + 2.6457513110645907 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt550to650": [ - 6.0, - 2.449489742783178 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt550to650": [ + 1, + 1.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ - 5.0, + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ + 3, + 1.7320508075688772 + ], + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt250to350": [ + 7, + 2.6457513110645907 + ], + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt350to450": [ + 5, 2.23606797749979 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt250to350": [ - 34.0, - 5.830951894845301 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt450to550": [ + 1, + 1.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt350to450": [ - 8.0, - 2.82842712474619 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt550to650": [ + 0, + 0.0 + ], + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ + 1, + 1.0 + ], + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to350": [ + 15, + 3.872983346207417 + ], + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt350to450": [ + 7, + 2.6457513110645907 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ - 3.0, + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt450to550": [ + 3, 1.7320508075688772 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt550to650": [ - 6.0, - 2.449489742783178 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650": [ + 3, + 1.7320508075688772 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 5.0, - 2.23606797749979 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf": [ + 2, + 1.4142135623730951 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350": [ - 42.0, - 6.48074069840786 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to350": [ + 172, + 13.114877048604 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to450": [ - 21.0, - 4.58257569495584 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt350to450": [ + 105, + 10.246950765959598 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt450to550": [ - 6.0, - 2.449489742783178 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt450to550": [ + 37, + 6.082762530298219 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650": [ - 3.0, - 1.7320508075688774 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650": [ + 16, + 4.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf": [ - 1.0, - 1.0 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf": [ + 3, + 1.7320508075688772 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt250to350": [ - 15.0, - 3.872983346207417 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt250to350": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt350to450": [ - 4.0, - 2.0 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt350to450": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt450to550": [ - 4.0, - 1.9999999999999998 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt450to550": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt550to650": [ - 0.0, + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ - 1.0, + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt650toinf": [ + 1, 1.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt250to350": [ - 6.0, - 2.449489742783178 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt250to350": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt350to450": [ - 6.0, - 2.449489742783178 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt350to450": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt450to550": [ - 0.0, + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt550to650": [ - 2.0, - 1.4142135623730951 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt550to650": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ - 2.0, - 1.4142135623730951 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt650toinf": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350": [ - 7.0, - 2.6457513110645907 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt250to350": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to450": [ - 2.0, - 1.4142135623730951 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt350to450": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt450to550": [ - 1.0, - 1.0 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt450to550": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650": [ - 0.0, + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 0.0, + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt250to350": [ - 31.0, - 5.5677643628300215 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt250to350": [ + 1, + 1.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt350to450": [ - 13.0, - 3.605551275463989 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt350to450": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt450to550": [ - 8.0, - 2.8284271247461903 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt450to550": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt550to650": [ - 0.0, + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt650toinf": [ - 1.0, - 1.0 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt650toinf": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt250to350": [ - 5.0, - 2.23606797749979 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt250to350": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt350to450": [ - 0.0, + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt350to450": [ + 3, + 1.7320508075688772 + ], + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt450to550": [ - 0.0, + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt550to650": [ - 0.0, + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt650toinf": [ - 0.0, + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt250to350": [ - 1.0, - 1.0 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt350to450": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt350to450": [ - 0.0, + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt450to550": [ - 1.0, - 1.0 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt550to650": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt550to650": [ - 0.0, + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt650toinf": [ - 0.0, + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt250to350": [ + 2, + 1.4142135623730951 + ], + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt250to350": [ - 0.0, + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt350to450": [ - 0.0, + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt450to550": [ - 1.0, - 1.0 + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt650toinf": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt550to650": [ - 0.0, + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt250to350": [ + 3, + 1.7320508075688772 + ], + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt350to450": [ + 3, + 1.7320508075688772 + ], + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt650toinf": [ - 0.0, + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt550to650": [ + 1, + 1.0 + ], + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350": [ - 510.0, - 22.58317958127243 + "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ + 227, + 15.066519173319364 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450": [ - 123.0, - 11.090536506409418 + "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ + 133, + 11.532562594670797 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550": [ - 35.0, - 5.916079783099616 + "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ + 26, + 5.0990195135927845 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650": [ - 9.0, + "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 9, 3.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf": [ - 3.0, - 1.7320508075688774 + "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ + 692, + 26.30589287593181 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt250to350": [ - 32.0, - 5.656854249492381 + "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ + 347, + 18.627936010197157 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt350to450": [ - 7.0, - 2.6457513110645907 + "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ + 56, + 7.483314773547883 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt450to550": [ - 3.0, - 1.7320508075688772 + "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 23, + 4.795831523312719 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt550to650": [ - 2.0, - 1.4142135623730951 + "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt250to350": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt650toinf": [ - 1.0, - 1.0 + "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt350to450": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt250to350": [ - 7.0, - 2.6457513110645907 + "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt450to550": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt350to450": [ - 1.0, - 1.0 + "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt550toinf": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt450to550": [ - 2.0, - 1.4142135623730951 + "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt250to350": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt550to650": [ - 1.0, - 1.0 + "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt350to450": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt650toinf": [ - 1.0, - 1.0 + "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt450to550": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350": [ - 7.0, - 2.6457513110645907 + "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt550toinf": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450": [ - 3.0, - 1.7320508075688774 + "bin_hm_nb3_highmtb_nrtntnwgeq3_htlt1000_MET_pt250to350": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550": [ - 1.0, - 1.0 + "bin_hm_nb3_highmtb_nrtntnwgeq3_htlt1000_MET_pt350to550": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650": [ - 0.0, + "bin_hm_nb3_highmtb_nrtntnwgeq3_htlt1000_MET_pt550toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt250to350": [ + 22, + 4.69041575982343 + ], + "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt350to450": [ + 2, + 1.4142135623730951 + ], + "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt450to550": [ + 1, + 1.0 + ], + "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ + 2, + 1.4142135623730951 + ], + "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt250to350": [ + 4, + 2.0 + ], + "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt350to450": [ + 5, + 2.23606797749979 + ], + "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt250to350": [ - 1.0, + "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt550toinf": [ + 1, + 1.0 + ], + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt250to350": [ + 1, + 1.0 + ], + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt350to450": [ + 1, 1.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt350to450": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt450to550": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt550toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt550to650": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt650toinf": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt250to350": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt350to450": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt550toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt450to550": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt250to350": [ + 4, + 2.0 + ], + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt350to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt550to650": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt550toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt650toinf": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt250to350": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt350to450": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt450to550": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt550toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt550to650": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt650toinf": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt250to350": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt350to450": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt550toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt450to550": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt550to650": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt350to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt650toinf": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt550toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt250to350": [ - 4.0, - 2.0 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350": [ + 7, + 2.6457513110645907 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt350to450": [ - 6.0, - 2.449489742783178 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450": [ + 2, + 1.4142135623730951 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt450to550": [ - 1.0, + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550": [ + 1, 1.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt550to650": [ - 1.0, + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf": [ + 1, 1.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt650toinf": [ - 1.0, + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350": [ + 4, + 2.0 + ], + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450": [ + 1, 1.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt250to350": [ - 3.0, - 1.7320508075688772 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt350to450": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt450to550": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350": [ + 102, + 10.099504938362077 + ], + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550": [ + 20, + 4.47213595499958 + ], + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf": [ + 2, + 1.4142135623730951 + ], + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt250to350": [ + 1, + 1.0 + ], + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt550to650": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt650toinf": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt550toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt250to350": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt350to450": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt450to550": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt550to650": [ - 1.0, - 1.0 + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt550toinf": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt650toinf": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt250to350": [ - 1.0, + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt350to550": [ + 0, + 0.0 + ], + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt550toinf": [ + 0, + 0.0 + ], + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt250to350": [ + 1, 1.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt350to450": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt450to550": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt550to650": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt550toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt650toinf": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt250to350": [ - 3.0, - 1.7320508075688774 + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt350to450": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt350to450": [ - 1.0, - 1.0 + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt450to550": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt450to550": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt550toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt550to650": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt250to350": [ + 5, + 2.23606797749979 + ], + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt350to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt650toinf": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt550toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt250to350": [ - 0.0, + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350": [ + 3, + 1.7320508075688772 + ], + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt350to450": [ - 0.0, + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt450to550": [ + 1, + 1.0 + ], + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ + 1, + 1.0 + ], + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350": [ + 9, + 3.0 + ], + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt450to550": [ - 0.0, + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt450to550": [ + 1, + 1.0 + ], + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt550to650": [ - 0.0, + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350": [ + 7, + 2.6457513110645907 + ], + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550": [ + 5, + 2.23606797749979 + ], + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf": [ + 3, + 1.7320508075688772 + ], + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt650toinf": [ - 0.0, + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt250to350": [ - 0.0, + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt350to450": [ - 0.0, + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt550toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt450to550": [ - 0.0, + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt550to650": [ - 0.0, + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt650toinf": [ - 0.0, + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt250to350": [ - 0.0, + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt550toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt350to450": [ - 0.0, + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt450to550": [ - 0.0, + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt350to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt550to650": [ - 0.0, + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt550toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt650toinf": [ - 0.0, + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt250to350": [ + 1, + 1.0 + ], + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt250to350": [ - 0.0, + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt350to450": [ - 0.0, + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt550toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt450to550": [ - 0.0, + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt550to650": [ - 0.0, + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt650toinf": [ - 0.0, + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt250to350": [ - 1.0, + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt550toinf": [ + 1, 1.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt350to450": [ - 0.0, - 0.0 + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt250to350": [ + 1, + 1.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt450to550": [ - 0.0, + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt350to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt550to650": [ - 0.0, + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt550toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ - 0.0, + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt250to350": [ - 0.0, + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt350to450": [ - 0.0, + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt450to550": [ - 0.0, + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt550to650": [ - 0.0, + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ - 0.0, + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt250to350": [ - 0.0, + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt350to450": [ - 0.0, + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt550toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt450to550": [ - 0.0, + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt550to650": [ - 0.0, + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt350to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 0.0, + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt550toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt250to350": [ - 0.0, - 0.0 + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt250to350": [ + 1, + 1.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt550to650": [ - 0.0, + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt650toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt550to650": [ - 0.0, + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt650toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt550to650": [ - 0.0, + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt650toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt550to650": [ - 0.0, + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt650toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt250to350": [ - 7.0, - 2.6457513110645907 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt250to350": [ + 64, + 8.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt350to450": [ - 8.0, - 2.8284271247461903 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt350to450": [ + 44, + 6.6332495807108 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt450to550": [ - 5.0, - 2.23606797749979 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt450to550": [ + 15, + 3.872983346207417 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt550to650": [ - 0.0, - 0.0 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt550to650": [ + 15, + 3.872983346207417 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt650toinf": [ - 0.0, - 0.0 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ + 10, + 3.1622776601683795 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt250to350": [ - 2.0, - 1.4142135623730951 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt250to350": [ + 21, + 4.58257569495584 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt350to450": [ - 1.0, - 1.0 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt350to450": [ + 9, + 3.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt450to550": [ + 4, + 2.0 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt550to650": [ + 4, + 2.0 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ + 4, + 2.0 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt250to350": [ + 32, + 5.656854249492381 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt350to450": [ + 6, + 2.449489742783178 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ + 3, + 1.7320508075688772 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt550to650": [ + 5, + 2.23606797749979 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt650toinf": [ + 5, + 2.23606797749979 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt250to350": [ + 5, + 2.23606797749979 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt550to650": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt650toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt550to650": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt450to550": [ + 1, + 1.0 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt650toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt450to550": [ + 1, + 1.0 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt550to650": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt650toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt250to350": [ + 32, + 5.656854249492381 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt350to450": [ + 13, + 3.605551275463989 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt450to550": [ + 9, + 3.0 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt650toinf": [ + 1, + 1.0 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt550to650": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt650toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1000to1300_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt250to350": [ - 1.0, - 1.0 + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt250to350": [ + 0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt550to650": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt650toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_ht1300to1500_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt550to650": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt650toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt550to650": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt650toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt250to350": [ - 17.0, - 4.123105625617661 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt250to350": [ + 22, + 4.69041575982343 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt350to450": [ - 4.0, - 2.0 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt350to450": [ + 6, + 2.449489742783178 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt450to550": [ - 1.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt450to550": [ + 2, + 1.4142135623730951 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt550to650": [ + 1, 1.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ - 2.0, - 1.4142135623730951 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt650toinf": [ + 1, + 1.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt250to350": [ - 5.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt250to350": [ + 5, 2.23606797749979 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt350to450": [ - 3.0, - 1.7320508075688772 - ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt550toinf": [ - 1.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt450to550": [ + 2, + 1.4142135623730951 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt550to650": [ + 1, 1.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350": [ - 6.0, - 2.449489742783178 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt650toinf": [ + 0, + 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550": [ - 5.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350": [ + 5, 2.23606797749979 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf": [ - 2.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450": [ + 2, 1.4142135623730951 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350": [ - 3.0, - 1.7320508075688772 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550": [ + 1, + 1.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt450to550": [ - 1.0, - 1.0 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf": [ + 0, + 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ - 1.0, - 1.0 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350": [ + 453, + 21.283796653792763 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350": [ - 9.0, - 3.0 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450": [ + 116, + 10.770329614269007 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550": [ + 35, + 5.916079783099616 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650": [ + 7, + 2.6457513110645907 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf": [ + 5, + 2.23606797749979 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf": [ - 1.0, - 1.0 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt450to550": [ + 0, + 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt250to350": [ - 5.0, - 2.23606797749979 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt550to650": [ + 0, + 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt350to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt250to350": [ - 2.0, - 1.4142135623730951 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt350to450": [ + 0, + 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt350to450": [ - 1.0, - 1.0 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt450to550": [ + 0, + 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350": [ - 129.0, - 11.357816691600547 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt650toinf": [ + 0, + 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550": [ - 22.0, - 4.69041575982343 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt250to350": [ + 3, + 1.7320508075688772 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf": [ - 1.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt350to450": [ + 1, 1.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350": [ - 13.0, - 3.605551275463989 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt450to550": [ + 0, + 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450": [ - 3.0, - 1.7320508075688774 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt550to650": [ + 0, + 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550": [ - 1.0, - 1.0 + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt650toinf": [ + 0, + 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf": [ - 1.0, + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt250to350": [ + 2, + 1.4142135623730951 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt350to450": [ + 1, 1.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350": [ - 3.0, - 1.7320508075688774 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt450to550": [ + 0, + 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450": [ - 3.0, - 1.7320508075688774 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt550to650": [ + 0, + 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt350to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt250to350": [ + 8, + 2.8284271247461903 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt350to450": [ + 10, + 3.1622776601683795 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt450to550": [ + 3, + 1.7320508075688772 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt250to350": [ - 2.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt250to350": [ + 13, + 3.605551275463989 + ], + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt350to450": [ + 4, + 2.0 + ], + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt450to550": [ + 3, + 1.7320508075688772 + ], + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt550to650": [ + 0, + 0.0 + ], + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ + 2, 1.4142135623730951 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt350to550": [ - 1.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt250to350": [ + 6, + 2.449489742783178 + ], + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt350to450": [ + 6, + 2.449489742783178 + ], + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt450to550": [ + 0, + 0.0 + ], + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt550to650": [ + 3, + 1.7320508075688772 + ], + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ + 1, 1.0 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350": [ + 5, + 2.23606797749979 + ], + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to450": [ + 2, + 1.4142135623730951 + ], + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt450to550": [ + 1, + 1.0 + ], + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650": [ + 1, + 1.0 + ], + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt250to350": [ - 1.0, - 1.0 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350": [ + 44, + 6.6332495807108 + ], + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to450": [ + 23, + 4.795831523312719 + ], + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt450to550": [ + 6, + 2.449489742783178 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt350to450": [ - 0.0, - 0.0 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650": [ + 3, + 1.7320508075688772 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt450to550": [ - 0.0, - 0.0 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf": [ + 1, + 1.0 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt350to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt250to350": [ - 1.0, - 1.0 - ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt250to350": [ - 0.0, - 0.0 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt250to350": [ + 1, + 1.0 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt350to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt450to550": [ - 0.0, - 0.0 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt250to350": [ + 3, + 1.7320508075688772 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt350to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt350to450": [ - 0.0, - 0.0 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt250to350": [ + 2, + 1.4142135623730951 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt450to550": [ - 0.0, - 0.0 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt250to350": [ + 2, + 1.4142135623730951 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt550toinf": [ - 0.0, - 0.0 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt350to450": [ + 5, + 2.23606797749979 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt250to350": [ - 10.0, - 3.1622776601683795 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt450to550": [ + 1, + 1.0 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt350to550": [ - 2.0, - 1.4142135623730951 + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt550to650": [ + 1, + 1.0 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt250to350": [ - 2.0, - 1.4142135623730951 + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt250to350": [ + 1, + 1.0 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt250to350": [ - 1.0, - 1.0 + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ + 0, + 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_htlt1000_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_htlt1000_MET_pt350to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_htlt1000_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt250to350": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt650toinf": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt250to350": [ + 1, + 1.0 + ], + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt350to450": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt450to550": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt550to650": [ + 0, 0.0 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt650toinf": [ + 0, 0.0 - ] - }, - "qcd": { + ], "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ - 394.18792905072416, - 5.762917882122269 + 7558, + 86.93675862372602 ], "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ - 117.39908916692343, - 2.6225961113364002 + 4905, + 70.03570517957252 ], "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ - 47.103600234621, - 1.2028800541462508 + 2141, + 46.2709412050371 ], "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf": [ - 23.476995146334026, - 0.4207338222177884 + 1781, + 42.20189569201838 ], "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550": [ - 100.54956122006516, - 2.2273211723277533 + 277, + 16.64331697709324 ], "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ - 39.37543436621432, - 1.3911893393839057 + 145, + 12.041594578792296 ], "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750": [ - 11.710470973747036, - 0.40188627817426215 + 64, + 8.0 ], "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf": [ - 9.648659933130762, - 0.23959133481378958 + 84, + 9.16515138991168 ], "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550": [ - 12.245127089999926, - 1.1618496205342035 + 161, + 12.68857754044952 ], "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ - 4.5911683821705225, - 0.5795136739305318 + 126, + 11.224972160321824 ], "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750": [ - 0.9541818378646884, - 0.08692542914355887 + 67, + 8.18535277187245 ], "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf": [ - 0.32074691303244274, - 0.0544725597468307 + 39, + 6.244997998398398 ], "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550": [ - 5.232183644589192, - 0.9814998350444484 + 11, + 3.3166247903554 ], "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650": [ - 2.6989147274558993, - 0.36504028459384974 + 4, + 2.0 ], "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750": [ - 1.0055459479906572, - 0.15711004501473744 + 2, + 1.4142135623730951 ], "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf": [ - 0.10152058542434537, - 0.013046381951270968 + 3, + 1.7320508075688772 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ - 117.45027157661471, - 3.7923897998809437 + "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ + 164, + 12.806248474865697 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500": [ - 13.334069232512405, - 0.9976064209617551 + "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ + 74, + 8.602325267042627 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600": [ - 4.119746952683675, - 0.847989141591073 + "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750": [ + 33, + 5.744562646538029 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf": [ - 0.2628987998675206, - 0.08667405565914725 + "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf": [ + 29, + 5.385164807134504 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ - 57.55110645356021, - 1.9343601951552538 + "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ + 85, + 9.219544457292887 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500": [ - 2.2800391114815755, - 0.23736799508580855 + "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ + 33, + 5.744562646538029 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600": [ - 0.8424777865483708, - 0.17759557299896106 + "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750": [ + 18, + 4.242640687119285 ], - "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf": [ - 0.04659793531746464, - 0.019463415528430138 + "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf": [ + 12, + 3.4641016151377544 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ - 13.720871580356826, - 1.1928475956145579 + "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ + 2396, + 48.948953002081666 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ - 2.3769906458900483, - 0.261921205154895 + "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500": [ + 454, + 21.307275752662516 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750": [ - 0.9513427577525239, - 0.0762475922947562 + "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600": [ + 66, + 8.12403840463596 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf": [ - 0.294140644372987, - 0.03549902596945018 + "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf": [ + 14, + 3.7416573867739413 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ - 4.5622831191016235, - 0.7430302648563412 + "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ + 1253, + 35.397740040855716 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ - 0.7638789627192616, - 0.08741515055325956 + "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500": [ + 223, + 14.933184523068078 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750": [ - 0.10741590393824367, - 0.017494178511474702 + "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600": [ + 28, + 5.291502622129181 ], - "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf": [ - 0.1973400021052545, - 0.03574456093528202 + "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf": [ + 5, + 2.23606797749979 ], "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ - 22.097908267264142, - 2.008502818559234 + 132, + 11.489125293076057 ], "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500": [ - 7.485252247329228, - 0.5832939348859171 + 42, + 6.48074069840786 ], "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf": [ - 0.6271408246163309, - 0.32093595544339953 - ], - "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400": [ - 7.934257927524611, - 0.9029661561514974 - ], - "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500": [ - 0.45033708566809216, - 0.11286866709291062 - ], - "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf": [ - 0.0, - 0.0 - ], - "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ - 25.796225219667296, - 1.2605709906816422 - ], - "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500": [ - 2.657883076255453, - 0.7104407011311937 - ], - "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf": [ - 0.35669940766489505, - 0.09646382184437273 + 17, + 4.123105625617661 ], - "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ - 6.775866079120986, - 0.431393495901079 + "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ + 21, + 4.58257569495584 ], - "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500": [ - 0.793530577919507, - 0.07715113653701365 + "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650": [ + 6, + 2.449489742783178 ], - "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf": [ - 0.36518578981078764, - 0.03685835180462197 + "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf": [ + 4, + 2.0 ], "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550": [ - 1.9829389613330992, - 0.5572573269213487 + 22, + 4.69041575982343 ], "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650": [ - 0.26932951264616156, - 0.06740604930306049 + 9, + 3.0 ], "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf": [ - 0.09894253637734393, - 0.02563386330783703 + 4, + 2.0 ], "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550": [ - 0.5377761770033502, - 0.11801964743633879 + 41, + 6.4031242374328485 ], "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650": [ - 0.9948808769884991, - 0.29375819406800596 + 14, + 3.7416573867739413 ], "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf": [ - 0.10971238484617457, - 0.014283843708498533 - ], - "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ - 3.7294672392931014, - 0.13148262151469547 - ], - "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650": [ - 0.41559852346048737, - 0.025887320058754704 - ], - "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf": [ - 0.33790617392299116, - 0.021634515106962852 + 7, + 2.6457513110645907 ], - "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 30.72805218801535, - 1.5753977827750913 + "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ + 54, + 7.3484692283495345 ], - "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 15.192423210929952, - 0.858050197733808 + "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500": [ + 14, + 3.7416573867739413 ], - "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 2.3100213660441913, - 0.3076237558648988 + "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf": [ + 2, + 1.4142135623730951 ], - "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 0.3986258819241719, - 0.060887847414628514 + "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400": [ + 246, + 15.684387141358123 ], - "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ - 32.13449812007549, - 1.592835481985596 + "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500": [ + 46, + 6.782329983125268 ], - "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ - 14.769213523917319, - 1.018014673730227 + "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf": [ + 9, + 3.0 ], - "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ - 5.479833721399663, - 0.4526470524556002 + "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ + 445, + 21.095023109728988 ], - "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ - 0.2699462761444203, - 0.04200936781184271 + "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500": [ + 83, + 9.1104335791443 ], + "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf": [ + 8, + 2.8284271247461903 + ] + }, + "qcd": { "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt250to350": [ - 66.8871185255064, - 1.807628984932061 + 56.31215761224317, + 19.544587060370784 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt350to450": [ - 12.325461145203523, - 0.6023926805750204 + 7.555880599452493, + 0.7066127988754477 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt450to550": [ - 5.636047788565909, - 0.7602555726307665 + 2.479012791385011, + 0.5489779566567824 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt550to650": [ - 1.5037921979260969, - 0.11971918786807738 + 1.1287444662900044, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ - 1.44067618484647, - 0.0850274259124944 + 1.147513108007432, + 0.27248293435779936 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt250to350": [ - 14.834911123426863, - 0.4241396331122294 + 12.699876929928193, + 2.329838283968916 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt350to450": [ - 1.9800683732188116, - 0.11698794257813382 + 2.027387910096235, + 3.1415857631416615 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt450to550": [ - 1.7245369695321178, - 0.09946256559863344 + 1.4203194176812075, + 0.707804644646871 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt550to650": [ - 0.5504305399397055, - 0.0655320588599178 + 0.48264315513906575, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ - 0.6053127754131606, - 0.05227343523432119 + 0.5395544873586684, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt250to350": [ - 67.45112737947099, - 0.6234839000296676 + 55.969834876492556, + 7.095205586255797 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt350to450": [ - 10.53351839264263, - 0.6475857202841853 + 8.893963170197875, + 1.4351173736166147 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ - 3.5495908530013125, - 0.6632213013641594 + 3.338192086568898, + 0.9437366060480243 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt550to650": [ - 1.280983249985532, - 0.05369016819185592 + 0.9686642890923127, + 0.3621366411084067 ], "bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 0.4666637164407883, - 0.06794767421729345 - ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to350": [ - 2.9180593613383325, - 0.32962632535389813 - ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt350to450": [ - 2.742860626230353, - 0.35404946386719927 + 0.5761566545623453, + 0.2159901501972432 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt450to550": [ - 0.0, + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt250to350": [ + 0.01683036472006663, 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650": [ - 0.0, + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt350to450": [ + 0.3581796686481089, 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf": [ - 0.06899012554429615, - 0.02058068581639546 - ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt250to350": [ - 0.24197243156045442, - 0.20989293732433034 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt450to550": [ + 0.110601972571015, + 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt350to450": [ - 0.04957296526320366, - 0.016393699726987187 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt550to650": [ + 0.1342269472233936, + 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt450to550": [ - 0.0, + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt650toinf": [ + 0.0012714706996932376, 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt550to650": [ + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ - 0.019364749690154927, - 0.004540113687176919 - ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt250to350": [ - 0.44207280426767154, - 0.041998953378409226 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt350to450": [ + 0.020820650343580074, + 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt350to450": [ + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt450to550": [ + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt550to650": [ - 0.002898355372622795, - 0.001187699684976596 - ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to350": [ - 2.777367736000219, - 0.09773636199346959 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt250to350": [ + 0.21415261884017786, + 0.24494136111619533 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt350to450": [ - 0.04186694586477715, - 0.004995579417033806 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt350to450": [ + 0.5685811356035033, + 0.22122195382367327 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt450to550": [ - 0.0008031944070160914, - 0.0003952893572098628 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt450to550": [ + 0.0, + 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650": [ - 0.0026384106362781433, - 0.0008136309731025704 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt550to650": [ + 0.0, + 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 0.0023702529293704016, - 0.0007102062046242742 + "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt650toinf": [ + 0.013408892937973652, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt250to350": [ - 1.1875806346721105, - 0.20795042288640478 + 1.1422103603030187, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt350to450": [ - 1.1689022135276612, - 0.27144236433730395 + 1.0459854238016648, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt450to550": [ - 0.23859321927108576, - 0.10740190709444943 + 0.23086412624657163, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt550to650": [ - 0.3590976681426935, - 0.12078395448687503 + 0.340899879194179, + 0.0 ], "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1000_MET_pt650toinf": [ - 0.00015562141652973192, - 0.00016817624167366198 + 0.0006985842188242104, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt250to350": [ - 0.01904862265347274, - 0.007201435773005491 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt250to350": [ + 3.447238308856408, + 3.7940738438979467 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt350to450": [ - 0.3720833844923286, - 0.05288280698300417 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt350to450": [ + 0.3659359626412818, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt450to550": [ - 0.12546128970514264, - 0.020875699526543116 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt450to550": [ + 0.2931975687728353, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt550to650": [ - 0.13529145888899835, - 0.03502482201693031 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt550to650": [ + 0.17605805014414372, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1000to1300_MET_pt650toinf": [ - 0.0018873024324913437, - 0.0010304160324635576 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt650toinf": [ + 0.12707985351647522, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt250to350": [ + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt250to350": [ + 0.7716487130052507, + 0.1016933556433121 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt350to450": [ + 1.1271390669159087, + 0.8020125203510611 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt450to550": [ + 0.12364311563724383, + 0.0 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt550to650": [ + 0.03978134797875592, + 0.0 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt650toinf": [ + 0.08932339126044035, + 0.0 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350": [ + 1.8023813168783611, + 0.9887427366049396 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450": [ + 0.35191921754765254, + 0.0 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550": [ + 0.09689619559840144, + 0.0 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650": [ + 0.0037678639691856235, + 0.0 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf": [ + 0.06848436862052007, + 0.0 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350": [ + 91.9984102813358, + 4.201918236754409 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450": [ + 13.86814949387266, + 0.0 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550": [ + 4.745703621877447, + 0.0 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650": [ + 0.5688017865031423, + 0.0 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf": [ + 0.3116074873905993, + 0.0 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt350to450": [ - 0.02057865067584289, - 0.007879599903900835 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt350to450": [ + 0.0, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt450to550": [ + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt550to650": [ + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_ht1300to1500_MET_pt650toinf": [ + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt650toinf": [ + 0.008724375906438266, + 0.0 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt250to350": [ - 0.23844887048845012, - 0.016074343649203245 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt350to450": [ + 0.0, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt350to450": [ - 1.1301318279539863, - 0.0781238813908537 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt450to550": [ + 0.0, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt450to550": [ + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt550to650": [ + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1500_MET_pt650toinf": [ - 0.013872207888511214, - 0.002941216091477016 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt250to350": [ + 0.02448182267830629, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350": [ - 94.58603475467177, - 4.927375536455438 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt350to450": [ + 0.0, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450": [ - 15.224849760913797, - 1.4059079633525975 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt450to550": [ + 0.0, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550": [ - 5.565864257224795, - 0.6554149313680137 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt550to650": [ + 0.0, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650": [ - 0.5325517608421184, - 0.15490536184468534 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt650toinf": [ + 0.0, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf": [ - 0.5243782833507384, - 0.06158592429819717 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt250to350": [ + 0.0, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt250to350": [ - 4.304308602449056, - 0.25149735560068454 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt350to450": [ + 0.0, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt350to450": [ - 0.3686902217794698, - 0.08708038234148284 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt450to550": [ + 0.0, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt450to550": [ - 0.3065657648359803, - 0.050403605337719926 + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt550to650": [ + 0.0, + 0.0 + ], + "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt650toinf": [ + 0.0, + 0.0 + ], + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt250to350": [ + 0.5395172136093357, + 0.7073437365059402 + ], + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt350to450": [ + 0.12224011981854935, + 0.0 + ], + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt450to550": [ + 0.0, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt550to650": [ - 0.27376437786011876, - 0.04569634270369437 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt550to650": [ + 0.0, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1300_MET_pt650toinf": [ - 0.07059739220664119, - 0.010257819914776286 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ + 0.02067154181194909, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt250to350": [ - 0.6881148042436427, - 0.04461982930972394 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt250to350": [ + 0.5564647307670448, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt350to450": [ - 0.19025116836117262, - 0.02232404317591848 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt350to450": [ + 0.0, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt450to550": [ - 0.13160943487607668, - 0.028457378764347546 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt450to550": [ + 0.0, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt550to650": [ - 0.04313320260123436, - 0.011964553389305027 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt550to650": [ + 0.0026255755995058835, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1300to1500_MET_pt650toinf": [ - 0.11124964522045774, - 0.017915092398786563 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ + 0.0, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350": [ - 1.3330585843788698, - 0.06665486860134301 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to350": [ + 2.7361013056582912, + 0.8486492360528518 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450": [ - 0.8551825714031066, - 0.06683595887607001 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt350to450": [ + 0.03928171220005902, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550": [ - 0.07561336947814104, - 0.014051178067586897 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt450to550": [ + 0.0007096605094032054, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650": [ - 0.0014941191316860192, - 0.0005230701047153813 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650": [ + 0.002390095656841402, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf": [ - 0.03532950603111238, - 0.006593813393305046 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf": [ + 0.0023223187757621614, + 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt250to350": [ - 0.0, + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to350": [ + 2.858728062891287, 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt350to450": [ - 0.0, + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt350to450": [ + 4.050383246978723, 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt450to550": [ - 0.0, + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt450to550": [ + 0.15486208107851016, 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt550to650": [ + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt650toinf": [ - 0.0, + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf": [ + 0.04753145218109089, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1000to1300_MET_pt250to350": [ @@ -5608,8 +6164,8 @@ 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt550to650": [ - 0.028726552583860095, - 0.00786172962183417 + 0.025752208269830282, + 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_ht1300to1500_MET_pt650toinf": [ 0.0, @@ -5624,44 +6180,44 @@ 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt450to550": [ - 0.030395474953490702, - 0.0062369843897137865 + 0.027535888460209088, + 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt550to650": [ - 0.006676520959172581, - 0.0030996269953923604 + 0.006580153638434954, + 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htgt1500_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt250to350": [ + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt350to450": [ - 0.17701751227667756, - 0.04622441260444765 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt350to450": [ + 0.0, + 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt450to550": [ - 0.17095121724695975, - 0.04179700045256873 + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt450to550": [ + 0.0, + 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt550to650": [ + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt650toinf": [ + "bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_htlt1000_MET_pt650toinf": [ 0.0, 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt250to350": [ - 0.36478912247350026, - 0.04481973590145681 + 0.3833331784184103, + 0.549693217843496 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt350to450": [ - 0.03142188421174409, - 0.010787145163423916 + 0.0882872737224049, + 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1000to1300_MET_pt450to550": [ 0.0, @@ -5676,8 +6232,8 @@ 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt250to350": [ - 0.06694567525128642, - 0.010515663070831346 + 0.00966860464377221, + 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_ht1300to1500_MET_pt350to450": [ 0.0, @@ -5696,8 +6252,8 @@ 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt250to350": [ - 0.27621651268302394, - 0.026266822056940396 + 0.07811306876909006, + 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt350to450": [ 0.0, @@ -5712,726 +6268,750 @@ 0.0 ], "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htgt1500_MET_pt650toinf": [ - 0.003250452603287385, - 0.0007763774969865105 + 0.003101272105919063, + 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt250to350": [ + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt350to450": [ + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt450to550": [ + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt550to650": [ + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htlt1000_MET_pt650toinf": [ + "bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_htlt1000_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt250to350": [ - 0.0, + "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ + 13.418855886499575, + 6.4640545795536 + ], + "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ + 5.851304555610466, + 4.741402933567531 + ], + "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ + 1.7807266676668365, + 0.7602612113345186 + ], + "bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 0.23626616851319382, + 0.36338417039926735 + ], + "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300": [ + 16.243864868639655, + 10.682136776448266 + ], + "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400": [ + 8.400811906589476, + 0.3438332548974449 + ], + "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500": [ + 4.5007844420836935, + 2.9531331654727198 + ], + "bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf": [ + 0.14204821076187274, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt350to450": [ + "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt450to550": [ + "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt550to650": [ + "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1000to1300_MET_pt650toinf": [ - 0.009230448419504165, - 0.003275081734490386 - ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt250to350": [ + "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt550toinf": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt350to450": [ + "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt450to550": [ + "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt550to650": [ + "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_ht1300to1500_MET_pt650toinf": [ + "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt550toinf": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt250to350": [ - 0.02702532058289286, - 0.004794716656650006 - ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt350to450": [ + "bin_hm_nb3_highmtb_nrtntnwgeq3_htlt1000_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt450to550": [ + "bin_hm_nb3_highmtb_nrtntnwgeq3_htlt1000_MET_pt350to550": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt550to650": [ + "bin_hm_nb3_highmtb_nrtntnwgeq3_htlt1000_MET_pt550toinf": [ 0.0, 0.0 ], - "bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_htgt1500_MET_pt650toinf": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt250to350": [ + 2.9054821290961685, + 3.863259352864255 + ], + "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt350to450": [ + 0.174715014855707, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt250to350": [ - 6.377804026029475, - 0.38828035861030974 + "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt450to550": [ + 0.013980292641881196, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt350to450": [ - 1.2855830454694455, - 0.09309808541055925 + "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ + 0.009915254177825437, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt450to550": [ - 0.3202151801874123, - 0.05452262380769764 + "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt250to350": [ + 2.4212306020754193, + 0.3901798059783243 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt550to650": [ - 0.26845612910321615, - 0.03670944817673867 + "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt350to450": [ + 0.16245481204681242, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ - 0.11604705475146118, - 0.017338496713204175 + "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ + 0.1054991392578451, + 0.11087830229213896 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt250to350": [ - 12.239271352494706, - 0.6731912022318967 + "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt550toinf": [ + 0.0002628984738915045, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt350to450": [ - 0.3461324089976857, - 0.04166714063932414 + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt250to350": [ + 0.0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt450to550": [ - 0.07515909796162479, - 0.011192137164183302 + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt350to450": [ + 0.0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt550to650": [ - 0.031825255787352125, - 0.015585655048369965 + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt450to550": [ + 0.0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ - 0.08331297986169674, - 0.01686014991614358 + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt550toinf": [ + 0.00044076384181979724, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt250to350": [ - 9.776503746742959, - 0.1917638599047877 + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt250to350": [ + 0.2862913701973956, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt350to450": [ - 1.3874787060345246, - 0.10679521942177977 + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt350to450": [ + 0.09071898927185952, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ - 0.5295210150499285, - 0.03281336472580525 + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt450to550": [ + 0.0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt550to650": [ - 0.14792342798626112, - 0.01365338521391151 + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt550toinf": [ + 0.0719246356738436, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 0.16412810124842236, - 0.01098613008717325 + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt250to350": [ + 0.0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350": [ - 0.029972779167504973, - 0.008359227803981118 + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt350to550": [ + 0.0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to450": [ - 0.020318564251956196, - 0.008639790382251492 + "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt550toinf": [ + 0.0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt450to550": [ - 0.0005814622496703217, - 0.0004687634014683893 + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt250to350": [ + 0.0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650": [ + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf": [ + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt250to350": [ - 0.3046870802183995, - 0.07259788978663803 + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt550toinf": [ + 0.0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt350to450": [ + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt450to550": [ + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt550to650": [ + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt550toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt250to350": [ - 0.0014853160334449358, - 0.0004443699003688788 + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt250to350": [ + 0.0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt350to450": [ + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt350to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt450to550": [ + "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt550toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt550to650": [ + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350": [ + 0.030371600076458553, + 0.0 + ], + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ - 0.02469077614954752, - 0.008562401932292327 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550": [ + 0.0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350": [ - 0.6306266342530684, - 0.05094693391958717 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf": [ + 0.10012933588856693, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to450": [ - 0.20634161217698804, - 0.018568592502139956 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350": [ + -0.007541737016487075, + 0.14553679107281042 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt450to550": [ - 0.07647228957099748, - 0.010726451853183236 + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450": [ + 0.008568456187886646, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650": [ + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550": [ + 0.0061371844106790285, + 0.0 + ], + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf": [ + 0.006022255151987635, + 0.0 + ], + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350": [ + 4.846112662333365, + 0.0 + ], + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550": [ + 0.045626492630882365, + 0.0 + ], + "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf": [ + 0.0, + 0.0 + ], + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt250to350": [ + 0.0, + 0.0 + ], + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf": [ - 0.025625658662353674, - 0.007752881100070027 - ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt250to350": [ + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt350to450": [ + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt550toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt450to550": [ + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt550to650": [ + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt650toinf": [ + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt250to350": [ + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt550toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt350to450": [ - 0.0, + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt250to350": [ + 0.02878986956397556, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt450to550": [ + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt350to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt550to650": [ + "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt550toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt650toinf": [ + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt250to350": [ + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt350to450": [ + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt450to550": [ + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt550toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt550to650": [ + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt650toinf": [ + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt250to350": [ - 0.1403959814594415, - 0.01877747565684488 - ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt350to450": [ + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt450to550": [ + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt550toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt550to650": [ + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt650toinf": [ + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt350to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350": [ - 11.838543338309597, - 1.1349874501053268 - ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450": [ - 14.370652907921414, - 1.8376746164582272 - ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550": [ - 2.526290393677437, - 0.28992910802739197 - ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650": [ - 1.0070686872175332, - 0.13160680465426408 - ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf": [ - 0.014759061236727572, - 0.0038313044056172284 - ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt250to350": [ - 0.1789263567088012, - 0.035859057908598835 - ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt350to450": [ - 0.09150599238930567, - 0.023380574881538503 - ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt450to550": [ - 0.059536685783143056, - 0.01376980607240139 - ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt550to650": [ - 0.047498693250630025, - 0.015865865558560958 - ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt650toinf": [ - 0.09041816882820693, - 0.024985992659665297 - ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt250to350": [ - 1.250623204960735, - 0.10911222944542148 - ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt350to450": [ - 4.391853516517465, - 0.6954477917299606 - ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt450to550": [ + "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt550toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt550to650": [ - 0.02506317387194379, - 0.004601088844977419 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350": [ + 0.0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt650toinf": [ - 0.0042772772855959856, - 0.0013132246481902489 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to450": [ + 0.0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350": [ - 6.3797186644225645, - 0.4917178580469579 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt450to550": [ + 0.0, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450": [ - 0.1693644990597275, - 0.014710581415182661 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ + 0.0028066287275533884, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550": [ - 0.01763904943634465, - 0.002974408150004214 + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350": [ + 0.014938300910048852, + 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650": [ + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf": [ - 0.0017356056534339665, - 0.0011871235790871617 - ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt250to350": [ + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt350to450": [ + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt450to550": [ + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt550to650": [ + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt650toinf": [ + "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt250to350": [ + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt350to450": [ + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt450to550": [ + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt550to650": [ + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt550toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt650toinf": [ + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt250to350": [ + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt350to450": [ + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt450to550": [ + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt550toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt550to650": [ + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt650toinf": [ + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt350to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt250to350": [ + "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt550toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt350to450": [ + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt450to550": [ + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt550to650": [ + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt650toinf": [ + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt550toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt250to350": [ - 0.04985638199618154, - 0.01304480953090711 - ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt350to450": [ + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt450to550": [ - 0.7031815438487578, - 0.389525277612459 - ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt550to650": [ + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt650toinf": [ + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt250to350": [ + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt550toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt350to450": [ + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt450to550": [ + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt350to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt550to650": [ + "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt550toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt650toinf": [ + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt250to350": [ + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt350to450": [ + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt450to550": [ + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt550to650": [ + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt650toinf": [ - 4.750168278587829e-05, - 3.630257463615653e-05 - ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt250to350": [ + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt350to450": [ + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt450to550": [ + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt550toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt550to650": [ + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt650toinf": [ + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt350to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt250to350": [ + "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt550toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt550to650": [ + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt650toinf": [ + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt550to650": [ + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt650toinf": [ + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt550to650": [ + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt650toinf": [ + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt550to650": [ + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt650toinf": [ + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt250to350": [ + 7.370765099495776, + 3.2127225394906755 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt350to450": [ + 1.1164768219753138, + 0.46406985046886273 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt450to550": [ + 0.332867686561732, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt550to650": [ + 0.23528666189408362, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt550to650": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ + 0.11607901739605633, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt650toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt250to350": [ + 11.367325869691975, + 4.626687268778719 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt350to450": [ + 0.3688713792203473, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt450to550": [ + 0.07088674189857261, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt550to650": [ + 0.03019202152900534, + 0.0 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ + 0.08784593829438984, + 0.0 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt250to350": [ + 8.744038734947551, + 1.2461077532291598 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt350to450": [ + 1.1273412629342987, + 0.6489866814563424 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ + 0.40557812882758787, + 0.15125805820215887 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt550to650": [ + 0.08346968523399949, + 0.0 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt650toinf": [ + 0.10728371531612185, + 0.036815989362951794 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt550to650": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1000to1300_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt550to650": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_ht1300to1500_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt250to350": [ + 0.15027134160444494, + 0.297850340309137 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt550to650": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt650toinf": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt550to650": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt650toinf": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt650toinf": [ 0.0, 0.0 ], @@ -6495,637 +7075,797 @@ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt450to550": [ - 0.005387322861283502, - 0.0029815363746612407 - ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt550to650": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt650toinf": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt250to350": [ + 0.5510050998203043, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt350to450": [ + 0.06584854204858843, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt550to650": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt450to550": [ + 0.027853435951089314, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt650toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt550to650": [ + 0.04221947816192283, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1300_MET_pt650toinf": [ + 0.08471771043472322, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt250to350": [ + 1.807134438264582, + 0.7189065186843709 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt350to450": [ + 3.7908878937748955, + 0.3889017319495848 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt550to650": [ + 0.017249763355564496, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt550to650": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1300to1500_MET_pt650toinf": [ + 0.0003954778043929929, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt650toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350": [ + 0.6959683993220334, + 0.3447101743790308 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450": [ + 0.09337734887584483, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550": [ + 0.009037364787150559, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650": [ + 0.003933841290614108, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf": [ + 0.0015722584942704852, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt550to650": [ + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350": [ + 9.215678106688037, + 1.9124216948182111 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450": [ + 10.709816850519488, + 0.0 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550": [ + 1.4986096991434557, + 0.0 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650": [ + 0.9841908009385487, + 0.0 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf": [ + 0.001440464367032831, + 0.0 + ], + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt650toinf": [ + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1000to1300_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt550to650": [ + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htlt1000_MET_pt650toinf": [ + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_ht1300to1500_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt550to650": [ + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1000to1300_MET_pt650toinf": [ + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt550to650": [ + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_ht1300to1500_MET_pt650toinf": [ + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt550to650": [ + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nbeq2_highmtb_nrtntnwgeq3_htgt1500_MET_pt650toinf": [ + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt250to350": [ - 3.0710686674598167, - 0.28653874017162206 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt450to550": [ + 0.0, + 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt350to450": [ - 0.15217349138203723, - 0.029810749884332015 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt550to650": [ + 0.0, + 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt450to550": [ - 0.03435119680618549, - 0.012488910483286143 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1000to1300_MET_pt650toinf": [ + 0.0, + 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ - 0.005749486981513808, - 0.0014616885292217492 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt250to350": [ + 0.0, + 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt250to350": [ - 2.569250811481462, - 0.17438687536728267 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt350to450": [ + 0.0, + 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt350to450": [ - 0.16265281675418103, - 0.022534183108310468 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt450to550": [ + 0.0, + 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt450to550": [ - 0.09748885114187449, - 0.008979884085074613 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt550to650": [ + 0.0, + 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw0_htgt1500_MET_pt550toinf": [ - 0.0002915963096939278, - 0.0001504193758304421 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_ht1300to1500_MET_pt650toinf": [ + 0.0, + 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550": [ + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf": [ + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ - 0.003176544918183959, - 0.002427562382638314 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt350to450": [ + 0.0, + 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350": [ - 0.005490801237199502, - 0.0016700585310071051 + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt450to550": [ + 0.004759956115531281, + 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt250to350": [ + 0.2761412426360759, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt350to550": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htlt1000_MET_pt550toinf": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt350to450": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt250to350": [ + 0.0015208404081466231, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_ht1000to1500_MET_pt550toinf": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt250to350": [ - 0.3240248375254351, - 0.07588669466461569 - ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt350to450": [ - 0.10267583747866586, - 0.03346301150778554 - ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw1_htgt1500_MET_pt550toinf": [ - 0.07198381237030471, - 0.022467154894494034 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ + 0.02088313135138149, + 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350": [ - 7.676869026542259, - 1.1678452998201767 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350": [ + 0.6081261081809415, + 0.39210487439124114 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550": [ - 0.09350044538956272, - 0.05822139314289803 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to450": [ + 0.18760851438082884, + 0.23008896281086788 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt450to550": [ + 0.07601317370859516, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350": [ - 0.10211494746461826, - 0.036574563818255315 - ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf": [ + 0.024114114183575643, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf": [ - 0.10058697170403211, - 0.013182315796789447 - ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350": [ - 0.18447978206734947, - 0.014650446962318908 - ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450": [ - 0.009503241349945159, - 0.0025866957831818895 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350": [ + 0.032729747847800486, + 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550": [ - 0.010937367946235212, - 0.002506457890014828 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to450": [ + 0.01925009475130863, + 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf": [ - 0.0035271187002148662, - 0.0009135133039949909 + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt450to550": [ + 0.0006130613113620062, + 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt350to550": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt550toinf": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_ht1000to1500_MET_pt550toinf": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1000to1300_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt550toinf": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_ht1300to1500_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt350to550": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt550toinf": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htgt1500_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_ht1000to1500_MET_pt550toinf": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt550toinf": [ + "bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_htlt1000_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt250to350": [ - 0.031780944773999856, - 0.015378406980147655 - ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt350to550": [ + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htlt1000_MET_pt550toinf": [ + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1000to1300_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_ht1000to1500_MET_pt550toinf": [ + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt1_nw1_htgt1500_MET_pt550toinf": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_ht1300to1500_MET_pt650toinf": [ + 4.196999574757069e-05, 0.0 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt350to550": [ + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt550toinf": [ + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1500_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt450to550": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt250to350": [ + 0.05236814596191155, 0.0 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_ht1000to1500_MET_pt550toinf": [ + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt250to350": [ - 0.0, + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt450to550": [ + 0.6812207979799485, 0.0 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1000_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt550toinf": [ + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt350to550": [ + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htlt1000_MET_pt550toinf": [ + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1000to1300_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_ht1000to1500_MET_pt550toinf": [ + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_ht1300to1500_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt0_nw2_htgt1500_MET_pt550toinf": [ + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt350to550": [ + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htlt1000_MET_pt550toinf": [ + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htgt1500_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt250to350": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt350to450": [ + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt350to450": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt450to550": [ + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt450to550": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_ht1000to1500_MET_pt550toinf": [ + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt550to650": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt250to350": [ + "bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_htlt1000_MET_pt650toinf": [ 0.0, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt350to450": [ - 0.0, + "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550": [ + 690.8268998079253, + 21.266224078854208 + ], + "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650": [ + 203.36440319560154, + 5.091563608958597 + ], + "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750": [ + 83.25038025968578, + 7.190297072984232 + ], + "bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf": [ + 41.73165456880075, + 1.145310655692416 + ], + "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550": [ + 50.670899841922434, + 5.826327386853987 + ], + "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650": [ + 20.328523984152074, + 1.8701584454539255 + ], + "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750": [ + 5.698289148414008, + 0.6316138234714871 + ], + "bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf": [ + 6.173996076801264, + 1.011446866549971 + ], + "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550": [ + 20.424766294008172, + 6.283591665012431 + ], + "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650": [ + 8.751109506903667, + 0.4200602879957655 + ], + "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750": [ + 4.56082929674977, + 6.535102260563106 + ], + "bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf": [ + 0.7575728033028764, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt450to550": [ - 0.0, + "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550": [ + 1.7110267181906087, + 0.29673342013456677 + ], + "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650": [ + 0.680776380670397, 0.0 ], - "bin_hm_nb3_highmtb_nt0_nrt2_nw0_htgt1500_MET_pt550toinf": [ - 0.0, + "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750": [ + 0.094357925578163, + 0.04926052799196813 + ], + "bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf": [ + 0.0864287866355988, 0.0 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_htlt1000_MET_pt250to350": [ - 0.0, + "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550": [ + 19.568327021196534, + 3.6647816127125874 + ], + "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650": [ + 4.565181101078398, + 0.8752472673942866 + ], + "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750": [ + 1.6524539427087765, + 0.4147552574551963 + ], + "bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf": [ + 0.4417295565821551, 0.0 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_htlt1000_MET_pt350to550": [ - 0.0, + "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550": [ + 8.54155944248272, + 0.7592137597397997 + ], + "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650": [ + 1.0923865650232565, + 0.2728514956484974 + ], + "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750": [ + 0.1617384257303069, 0.0 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_htlt1000_MET_pt550toinf": [ - 0.0, + "bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf": [ + 0.37509296231652817, + 0.6140518572861154 + ], + "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400": [ + 191.3076709071226, + 14.571194939600042 + ], + "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500": [ + 24.140871478535885, + 0.2733862168892872 + ], + "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600": [ + 6.7882598317514615, 0.0 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt250to350": [ - 0.0, + "bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf": [ + 0.2715490153513565, 0.0 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt350to450": [ - 0.0, + "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400": [ + 80.6684581729957, + 14.426627953795553 + ], + "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500": [ + 3.526660659311753, + 0.4536353619878721 + ], + "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600": [ + 1.2114233429595023, 0.0 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt450to550": [ - 0.0, + "bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf": [ + 0.06977801708024087, 0.0 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_ht1000to1500_MET_pt550toinf": [ - 0.0, + "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400": [ + 40.02651581573113, + 8.71697505874692 + ], + "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500": [ + 9.528088334365794, + 7.976422631877426 + ], + "bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf": [ + 2.2758886293464804, 0.0 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt250to350": [ - 0.0, + "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550": [ + 2.4581423355272993, + 0.6165486443796423 + ], + "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650": [ + 0.2821279193340214, + 0.14412033505745073 + ], + "bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf": [ + 0.19999015964768452, + 0.12466690266216265 + ], + "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550": [ + 2.6396223336044575, 0.0 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt350to450": [ - 0.0, + "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650": [ + 0.4489376434069113, 0.0 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt450to550": [ - 0.0, + "bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf": [ + 0.14936002895907974, 0.0 ], - "bin_hm_nb3_highmtb_nrtntnwgeq3_htgt1500_MET_pt550toinf": [ + "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550": [ + 0.644530475272209, + 0.0 + ], + "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650": [ + 1.0311435776143394, + 0.0 + ], + "bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf": [ + 0.2294963347076473, + 0.0 + ], + "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400": [ + 3.3073439244900813, + 1.2838247991224276 + ], + "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500": [ + 0.06571997578180971, + 0.0 + ], + "bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf": [ + 0.02204851017374174, + 0.0 + ], + "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400": [ + 11.514600190721051, + 0.0 + ], + "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500": [ + 1.0133058037324614, + 0.0 + ], + "bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf": [ 0.0, 0.0 + ], + "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400": [ + 30.877670680122204, + 29.271052071003833 + ], + "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500": [ + 3.144051939537269, + 0.0 + ], + "bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf": [ + 0.4662443288936433, + 0.0 ] } } diff --git a/Datacards/setup/SUSYNano19/values_unc_diboson.conf b/Datacards/setup/SUSYNano19/values_unc_diboson.conf index a90da61..3595c7f 100644 --- a/Datacards/setup/SUSYNano19/values_unc_diboson.conf +++ b/Datacards/setup/SUSYNano19/values_unc_diboson.conf @@ -1,5124 +1,5124 @@ -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 b_up diboson 1.06868011804 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 b_down diboson 1.06756497796 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 b_up diboson 1.02264394572 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 b_down diboson 1.02309951548 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_up diboson 1.04874926277 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_down diboson 1.04964908649 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf b_up diboson 1.00807922501 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf b_down diboson 1.00897905172 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 b_up diboson 1.27334322262 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 b_down diboson 1.23881642178 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_up diboson 1.05460230298 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_down diboson 1.05285575762 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_up diboson 1.00077503054 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_down diboson 1.00101542542 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 b_up diboson 1.01184345601 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 b_down diboson 1.01248524457 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_up diboson 1.00805929865 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_down diboson 1.0079939425 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_up diboson 1.04739390827 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_down diboson 1.05015792958 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 b_up diboson 1.04787544588 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 b_down diboson 1.04876941214 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_up diboson 1.02854941668 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_down diboson 1.02970268105 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf b_up diboson 1.06257993034 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf b_down diboson 1.05999074243 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 b_up diboson 1.00161276601 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 b_down diboson 1.00252014006 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf b_up diboson 1.00734321235 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf b_down diboson 1.00789942862 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_up diboson 1.06658868947 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_down diboson 1.06872106788 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_up diboson 1.04931744021 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_down diboson 1.04998017309 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 b_up diboson 1.01633040081 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 b_down diboson 1.01744280416 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 b_up diboson 1.0011321871 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 b_down diboson 1.00152538488 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 b_up diboson 1.00957476882 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 b_down diboson 1.01005172376 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf b_up diboson 1.03532969664 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf b_down diboson 1.03636774385 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_up diboson 1.04655766529 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_down diboson 1.04527040062 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf b_up diboson 1.01916963806 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf b_down diboson 1.01905277008 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 b_up diboson 1.0030950562 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 b_down diboson 1.00911686465 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 b_up diboson 1.02428817961 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 b_down diboson 1.02444394553 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf b_up diboson 1.11040979031 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf b_down diboson 1.10911383035 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_up diboson 1.01985723721 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_down diboson 1.02003975921 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 b_up diboson 1.05293636149 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 b_down diboson 1.05353615814 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf b_up diboson 1.145244982 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf b_down diboson 1.13559597534 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf b_up diboson 1.04240774229 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf b_down diboson 1.0420619622 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf b_up diboson 1.04461012758 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf b_down diboson 1.04637207154 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_up diboson 1.083377181 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_down diboson 1.08048126592 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_up diboson 1.07333864008 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_down diboson 1.07459229781 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 b_up diboson 1.0145467901 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 b_down diboson 1.01427826847 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 b_up diboson 1.00206279281 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 b_down diboson 1.00290020461 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_up diboson 1.05214944147 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_down diboson 1.05324781224 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf b_up diboson 1.07408457397 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf b_down diboson 1.07006352985 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_up diboson 1.06075164443 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_down diboson 1.06353607979 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 b_up diboson 1.04809657712 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 b_down diboson 1.04792455454 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_up diboson 1.01468806097 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_down diboson 1.01443742962 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf b_up diboson 1.10596686572 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf b_down diboson 1.1086516779 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 b_up diboson 1.02316726027 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 b_down diboson 1.02332450382 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf b_up diboson 1.11991668369 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf b_down diboson 1.11431876348 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 b_up diboson 1.05118333336 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 b_down diboson 1.04957279912 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 b_up diboson 1.0302840305 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 b_down diboson 1.03064525511 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf b_up diboson 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf b_down diboson 0.001 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_up diboson 1.01166586552 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_down diboson 1.01156708082 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 b_up diboson 1.06972713921 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 b_down diboson 1.0701696729 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf b_up diboson 1.04955742074 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf b_down diboson 1.04955830295 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 b_up diboson 1.04935554401 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 b_down diboson 1.05013818972 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 b_up diboson 1.02146444034 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 b_down diboson 1.02117564617 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_up diboson 1.00075336053 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_down diboson 1.00316602921 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 b_up diboson 1.25797579988 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 b_down diboson 1.22513799346 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 b_up diboson 1.04525187172 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 b_down diboson 1.02544837031 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf b_up diboson 1.0881410318 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf b_down diboson 1.09052564449 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 b_up diboson 1.00829854605 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 b_down diboson 1.00944863289 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 b_up diboson 1.025631061 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 b_down diboson 1.02537495008 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf b_up diboson 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf b_down diboson 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 b_up diboson 1.05265789899 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 b_down diboson 1.05521184792 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 b_up diboson 1.03382324784 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 b_down diboson 1.03357470595 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf b_up diboson 1.05098924369 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf b_down diboson 1.05037794989 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 b_up diboson 1.07442448624 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 b_down diboson 1.07177233381 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_up diboson 1.06407164292 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_down diboson 1.06219955928 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 b_up diboson 1.0383406159 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 b_down diboson 1.04186301131 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_up diboson 1.09551568654 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_down diboson 1.09015765735 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_up diboson 1.01888779852 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_down diboson 1.01590418857 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 b_up diboson 1.03882550373 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 b_down diboson 1.0385940996 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 b_up diboson 1.05277674952 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 b_down diboson 1.0512697306 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 b_up diboson 1.0045921198 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 b_down diboson 1.00455919997 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 b_up diboson 1.05431895835 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 b_down diboson 1.05467417341 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 b_up diboson 1.08407325664 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 b_down diboson 1.0850331689 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_up diboson 1.02426499355 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_down diboson 1.02512838863 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_up diboson 0.999118545863 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_down diboson 0.997826052598 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_up diboson 1.01224420058 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_down diboson 1.01206147927 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf b_up diboson 1.02487595685 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf b_down diboson 1.02907801436 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf b_up diboson 1.1636844548 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf b_down diboson 1.15292430775 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 b_up diboson 1.06383697213 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 b_down diboson 1.06767111952 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 b_up diboson 1.03701335983 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 b_down diboson 1.0363978909 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_up diboson 1.06355512969 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_down diboson 1.06082050452 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_up diboson 1.10738309646 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_down diboson 1.10196615292 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_up diboson 1.01252477218 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_down diboson 1.0127343918 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf b_up diboson 1.08729145714 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf b_down diboson 1.0805291303 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf b_up diboson 1.06194900694 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf b_down diboson 1.05953793361 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf b_up diboson 1.06681403623 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf b_down diboson 1.06219660385 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_up diboson 1.03254383353 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_down diboson 1.03255552036 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 b_up diboson 1.04134223718 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 b_down diboson 1.04336409257 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf b_up diboson 1.06608512941 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf b_down diboson 1.06384675548 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf b_up diboson 1.04543267092 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf b_down diboson 1.04490137907 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf b_up diboson 1.06575379203 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf b_down diboson 1.06543148782 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 b_up diboson 1.04383450201 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 b_down diboson 1.04425756799 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf b_up diboson 1.05279877844 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf b_down diboson 1.0503833478 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 b_up diboson 1.02277571238 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 b_down diboson 1.02295135613 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 b_up diboson 1.04301713745 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 b_down diboson 1.04296292635 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 b_up diboson 1.07418325019 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 b_down diboson 1.07256422529 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf b_up diboson 1.02006799594 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf b_down diboson 1.02044474923 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 b_up diboson 1.01381944554 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 b_down diboson 1.01448237997 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf b_up diboson 1.03602200063 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf b_down diboson 1.03721636698 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf b_up diboson 1.05172696784 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf b_down diboson 1.05074652548 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf b_up diboson 1.02285614827 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf b_down diboson 1.0160974398 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf b_up diboson 1.08878243605 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf b_down diboson 1.08564759086 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 b_up diboson 1.04194834733 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 b_down diboson 1.04157350786 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 b_up diboson 1.05603365661 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 b_down diboson 1.0542950359 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf b_up diboson 1.21568426799 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf b_down diboson 1.19404944904 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 b_up diboson 1.05997639617 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 b_down diboson 1.05835060986 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf b_up diboson 1.03132481313 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf b_down diboson 1.03182208202 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf b_up diboson 1.00943741506 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf b_down diboson 1.01170423236 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_up diboson 1.03542817755 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_down diboson 1.03822241573 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 b_up diboson 1.02609289778 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 b_down diboson 1.02606539561 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 b_up diboson 1.01212951282 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 b_down diboson 1.01254697141 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 b_up diboson 1.05696291144 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 b_down diboson 1.05659282428 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 b_up diboson 1.06998294271 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 b_down diboson 1.06695410197 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_up diboson 1.03452774264 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_down diboson 1.03545747218 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 b_up diboson 1.03380772493 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 b_down diboson 1.03458363158 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_up diboson 1.00825144869 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_down diboson 1.00815985354 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf b_up diboson 1.07080508011 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf b_down diboson 1.07378930887 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_up diboson 1.007618736 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_down diboson 1.0075468491 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 b_up diboson 1.18722236652 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 b_down diboson 1.16991985328 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 b_up diboson 1.03458220287 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 b_down diboson 1.03372747987 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf b_up diboson 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf b_down diboson 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_up diboson 1.03674938853 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_down diboson 1.0368405574 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf b_up diboson 1.00687374675 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf b_down diboson 1.00868663592 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf b_up diboson 1.01637926738 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf b_down diboson 1.01223875705 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 b_up diboson 1.06755366216 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 b_down diboson 1.06499536493 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf b_up diboson 1.09135414636 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf b_down diboson 1.08707503273 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_up diboson 1.01052732188 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_down diboson 1.01160073378 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 b_up diboson 1.03349184681 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 b_down diboson 1.03204437087 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf b_up diboson 1.00565064069 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf b_down diboson 1.00653043417 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_up diboson 1.00707156152 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_down diboson 1.00700119194 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_up diboson 1.03791115143 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_down diboson 1.03954640647 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf b_up diboson 1.03288650634 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf b_down diboson 1.03370344955 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 b_up diboson 1.00596730585 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 b_down diboson 1.00671626048 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 b_up diboson 1.02544430235 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 b_down diboson 1.02482775517 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_up diboson 1.02602796998 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_down diboson 1.02619501115 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf b_up diboson 1.01295055723 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf b_down diboson 1.01277374004 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf b_up diboson 1.10864056396 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf b_down diboson 1.10083340276 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_up diboson 1.11649122664 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_down diboson 1.11906828006 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 b_up diboson 1.00497739236 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 b_down diboson 1.00578606593 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 b_up diboson 1.05314883898 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 b_down diboson 1.05400245599 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf b_up diboson 1.00062735763 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf b_down diboson 1.00090485803 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_up diboson 1.0140186548 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_down diboson 1.01453017129 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_up diboson 1.03517753065 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_down diboson 1.0352824858 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 b_up diboson 1.01717799036 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 b_down diboson 1.01779135565 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_up diboson 1.04808679849 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_down diboson 1.04695922818 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 b_up diboson 1.06298001024 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 b_down diboson 1.06123223683 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 b_up diboson 1.03869101049 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 b_down diboson 1.0387739297 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 b_up diboson 1.04551421742 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 b_down diboson 1.04456810527 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_up diboson 1.02369889207 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_down diboson 1.02310289643 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_up diboson 1.07158968985 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_down diboson 1.06873151985 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 b_up diboson 1.02115220584 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 b_down diboson 1.02255779858 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_up diboson 1.00666595142 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_down diboson 1.00647520181 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_up diboson 1.00327274569 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_down diboson 1.00472716877 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 b_up diboson 1.02778395126 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 b_down diboson 1.02776220813 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_up diboson 1.03612154037 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_down diboson 1.03563047008 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 b_up diboson 0.999751013263 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 b_down diboson 0.999253942509 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 b_up diboson 1.01988854496 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 b_down diboson 1.01990714869 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 b_up diboson 1.01375893157 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 b_down diboson 1.01181660648 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 b_up diboson 1.02175980863 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 b_down diboson 1.02212892877 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf b_up diboson 1.02514205094 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf b_down diboson 1.02644483484 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 b_up diboson 1.02496441522 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 b_down diboson 1.02519072192 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_up diboson 1.01355282397 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_down diboson 1.01330752864 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 b_up diboson 1.03912039745 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 b_down diboson 1.04215318835 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 b_up diboson 1.00600255227 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 b_down diboson 1.00825050961 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_up diboson 1.04377342553 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_down diboson 1.04334342271 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_up diboson 1.01267375547 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_down diboson 1.01607808829 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf b_up diboson 0.998996481871 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf b_down diboson 0.997299852333 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 b_up diboson 1.01684816421 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 b_down diboson 1.01775663961 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 b_up diboson 1.00103409124 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 b_down diboson 1.00306000812 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_up diboson 1.00850846058 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_down diboson 1.00840273258 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 b_up diboson 1.03513322578 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 b_down diboson 1.03444137345 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 b_up diboson 1.02658123096 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 b_down diboson 1.03202809897 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 b_up diboson 1.08681389334 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 b_down diboson 1.07871243664 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 b_up diboson 1.00105384442 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 b_down diboson 1.00198739137 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 b_up diboson 1.01740600932 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 b_down diboson 1.020394565 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf b_up diboson 1.00198427265 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf b_down diboson 1.00197059652 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf b_up diboson 1.07428157963 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf b_down diboson 1.06999903706 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 b_up diboson 1.09378561731 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 b_down diboson 1.09584624225 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf b_up diboson 1.04442808478 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf b_down diboson 1.04345345707 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 b_up diboson 1.08420930104 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 b_down diboson 1.08069778084 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 b_up diboson 1.00606571282 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 b_down diboson 1.00665451019 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf b_up diboson 1.06106167784 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf b_down diboson 1.0603736022 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 b_up diboson 1.00390843044 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 b_down diboson 1.00357325605 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_up diboson 1.01219980644 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_down diboson 1.0117674769 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf b_up diboson 1.03341187765 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf b_down diboson 1.03339106676 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 trigger_err_up diboson 1.00180864413 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 trigger_err_down diboson 1.0019674343 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 trigger_err_up diboson 1.00147167997 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 trigger_err_down diboson 1.00168464045 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_up diboson 1.00102519696 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_down diboson 1.00182718184 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf trigger_err_up diboson 1.00122410836 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf trigger_err_down diboson 1.00199354529 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 trigger_err_up diboson 1.00175288737 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 trigger_err_down diboson 1.0019651642 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_up diboson 1.00180513374 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_down diboson 1.00195815513 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_up diboson 1.00220290284 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_down diboson 1.00239439034 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 trigger_err_up diboson 1.00146613694 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 trigger_err_down diboson 1.00166914663 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_up diboson 1.00153790579 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_down diboson 1.00226141321 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_up diboson 1.00116849259 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_down diboson 1.00168010585 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 trigger_err_up diboson 1.00321768891 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 trigger_err_down diboson 1.00390290485 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_up diboson 1.00057254983 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_down diboson 1.00139131651 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf trigger_err_up diboson 1.00130045848 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf trigger_err_down diboson 1.00207991672 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_up diboson 1.00303483125 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_down diboson 1.00369749325 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf trigger_err_up diboson 1.00225278761 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf trigger_err_down diboson 1.00288962376 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_up diboson 1.00226286649 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_down diboson 1.00290217599 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_up diboson 1.00127965358 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_down diboson 1.00140382212 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 trigger_err_up diboson 1.00159213052 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 trigger_err_down diboson 1.00169816371 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 trigger_err_up diboson 1.00174250229 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 trigger_err_down diboson 1.00190165186 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 trigger_err_up diboson 1.00112679879 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 trigger_err_down diboson 1.00188818387 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf trigger_err_up diboson 1.00180465277 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf trigger_err_down diboson 1.00251055206 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_up diboson 1.00125850788 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_down diboson 1.00137387041 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf trigger_err_up diboson 1.00113315288 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf trigger_err_down diboson 1.00169697808 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 trigger_err_up diboson 1.00288867048 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 trigger_err_down diboson 1.00360682565 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 trigger_err_up diboson 1.00137473555 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 trigger_err_down diboson 1.00168057991 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf trigger_err_up diboson 1.00342102179 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf trigger_err_down diboson 1.00410141236 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_up diboson 1.00184020827 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_down diboson 1.00200013375 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 trigger_err_up diboson 1.00134072191 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 trigger_err_down diboson 1.0020560471 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf trigger_err_up diboson 1.00221331633 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf trigger_err_down diboson 1.00296564055 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf trigger_err_up diboson 1.00138464392 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf trigger_err_down diboson 1.00203414082 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf trigger_err_up diboson 1.00174915574 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf trigger_err_down diboson 1.00201372511 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_up diboson 1.00137823703 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_down diboson 1.00209806776 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_up diboson 1.00131325537 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_down diboson 1.00144079599 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 trigger_err_up diboson 1.00039571941 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 trigger_err_down diboson 1.00122136482 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 trigger_err_up diboson 1.00129797195 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 trigger_err_down diboson 1.00196101833 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_up diboson 1.0006093925 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_down diboson 1.00142524632 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf trigger_err_up diboson 1.0018223997 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf trigger_err_down diboson 1.00253251307 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_up diboson 1.00147180643 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_down diboson 1.00169979472 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 trigger_err_up diboson 1.00154542511 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 trigger_err_down diboson 1.00182835217 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_up diboson 1.00130509783 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_down diboson 1.00207576576 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf trigger_err_up diboson 1.00066028633 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf trigger_err_down diboson 1.00146695763 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 trigger_err_up diboson 1.00108721179 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 trigger_err_down diboson 1.00181438916 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf trigger_err_up diboson 1.00152142333 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf trigger_err_down diboson 1.00171679582 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 trigger_err_up diboson 1.00137366427 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 trigger_err_down diboson 1.00160581499 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 trigger_err_up diboson 1.00179372625 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 trigger_err_down diboson 1.00195784123 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf trigger_err_up diboson 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf trigger_err_down diboson 0.001 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_up diboson 1.00085818008 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_down diboson 1.00162083632 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_up diboson 1.00144459943 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_down diboson 1.00165624597 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf trigger_err_up diboson 1.00363804258 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf trigger_err_down diboson 1.004318037 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 trigger_err_up diboson 1.00105722596 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 trigger_err_down diboson 1.0013066585 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 trigger_err_up diboson 1.00192972416 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 trigger_err_down diboson 1.00269660071 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_up diboson 1.00187457342 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_down diboson 1.00202498748 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 trigger_err_up diboson 1.00036343284 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 trigger_err_down diboson 1.00113137656 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 trigger_err_up diboson 1.0014330178 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 trigger_err_down diboson 1.00151681643 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf trigger_err_up diboson 1.0015228207 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf trigger_err_down diboson 1.00217600711 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_up diboson 1.00254652086 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_down diboson 1.00325692477 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 trigger_err_up diboson 1.00191156442 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 trigger_err_down diboson 1.00211360634 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf trigger_err_up diboson 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf trigger_err_down diboson 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 trigger_err_up diboson 1.00191916214 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 trigger_err_down diboson 1.00208794191 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 trigger_err_up diboson 1.00218197035 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 trigger_err_down diboson 1.0026761301 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf trigger_err_up diboson 1.00143566354 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf trigger_err_down diboson 1.00219602914 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 trigger_err_up diboson 1.00155412836 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 trigger_err_down diboson 1.00231975478 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_up diboson 1.0018558841 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_down diboson 1.00200777098 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 trigger_err_up diboson 1.00141339258 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 trigger_err_down diboson 1.00162800903 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_up diboson 1.00157568756 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_down diboson 1.00180776223 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_up diboson 1.00148622778 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_down diboson 1.00159841284 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 trigger_err_up diboson 1.00157387853 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 trigger_err_down diboson 1.00206621896 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 trigger_err_up diboson 1.00177710172 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 trigger_err_down diboson 1.0019194208 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 trigger_err_up diboson 1.00111878156 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 trigger_err_down diboson 1.00181995433 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 trigger_err_up diboson 1.00146749324 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 trigger_err_down diboson 1.0018501253 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 trigger_err_up diboson 1.00176078065 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 trigger_err_down diboson 1.00201216555 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_up diboson 1.00183187352 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_down diboson 1.00256500173 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_up diboson 1.0013825182 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_down diboson 1.00217736472 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_up diboson 1.00100548747 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_down diboson 1.00176654876 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf trigger_err_up diboson 1.00296886186 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf trigger_err_down diboson 1.00368275512 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf trigger_err_up diboson 1.00020067513 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf trigger_err_down diboson 1.00103460394 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 trigger_err_up diboson 1.00024621769 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 trigger_err_down diboson 1.00008305996 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_up diboson 1.0013931475 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_down diboson 1.0016354581 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_up diboson 1.00212987666 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_down diboson 1.00231196406 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_up diboson 1.0013765776 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_down diboson 1.00178993349 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_up diboson 1.0030496471 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_down diboson 1.00375870505 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf trigger_err_up diboson 1.00259571754 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf trigger_err_down diboson 1.00327690847 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf trigger_err_up diboson 1.00188505968 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf trigger_err_down diboson 1.00227038342 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_up diboson 1.00208364719 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_down diboson 1.00228628379 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_up diboson 1.00221380216 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_down diboson 1.00240011056 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 trigger_err_up diboson 1.00122884573 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 trigger_err_down diboson 1.00148583961 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf trigger_err_up diboson 1.00211825129 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf trigger_err_down diboson 1.0024751681 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf trigger_err_up diboson 1.00200882264 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf trigger_err_down diboson 1.00260203838 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf trigger_err_up diboson 1.00157606042 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf trigger_err_down diboson 1.00232116459 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 trigger_err_up diboson 1.00154316932 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 trigger_err_down diboson 1.00182792968 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf trigger_err_up diboson 1.00198481459 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf trigger_err_down diboson 1.00264651356 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 trigger_err_up diboson 1.00079522816 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 trigger_err_down diboson 1.00160409125 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 trigger_err_up diboson 1.00131562021 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 trigger_err_down diboson 1.0015219154 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 trigger_err_up diboson 1.00137025805 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 trigger_err_down diboson 1.00151204475 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf trigger_err_up diboson 1.00187991753 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf trigger_err_down diboson 1.0025575456 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 trigger_err_up diboson 1.00133872559 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 trigger_err_down diboson 1.00156527498 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf trigger_err_up diboson 1.00167955563 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf trigger_err_down diboson 1.00223372629 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf trigger_err_up diboson 1.00174574311 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf trigger_err_down diboson 1.00237052703 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf trigger_err_up diboson 1.00312544451 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf trigger_err_down diboson 1.00379582695 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf trigger_err_up diboson 1.00067736763 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf trigger_err_down diboson 1.00143673125 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 trigger_err_up diboson 1.0012556426 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 trigger_err_down diboson 1.00151327948 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 trigger_err_up diboson 1.00190400762 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 trigger_err_down diboson 1.00204501395 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf trigger_err_up diboson 1.00047490931 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf trigger_err_down diboson 1.00129046797 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 trigger_err_up diboson 1.00159048721 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 trigger_err_down diboson 1.00191861861 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf trigger_err_up diboson 1.00199314064 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf trigger_err_down diboson 1.00260946951 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf trigger_err_up diboson 1.0036379101 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf trigger_err_down diboson 1.00431809163 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_up diboson 1.00164319621 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_down diboson 1.00242221694 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 trigger_err_up diboson 1.001498829 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 trigger_err_down diboson 1.00176515342 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 trigger_err_up diboson 1.00256639493 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 trigger_err_down diboson 1.00300199541 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 trigger_err_up diboson 1.00042621046 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 trigger_err_down diboson 1.00124536994 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 trigger_err_up diboson 1.00159774863 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 trigger_err_down diboson 1.00172181438 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_up diboson 1.0014666472 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_down diboson 1.00197006109 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 trigger_err_up diboson 1.00184848848 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 trigger_err_down diboson 1.00200361886 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_up diboson 1.00140146637 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_down diboson 1.00212706976 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_up diboson 1.00116017151 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_down diboson 1.0012358288 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_up diboson 1.00147356551 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_down diboson 1.00220611621 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 trigger_err_up diboson 1.00129739994 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 trigger_err_down diboson 1.0014958287 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 trigger_err_up diboson 1.00196318597 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 trigger_err_down diboson 1.00266099459 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf trigger_err_up diboson 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf trigger_err_down diboson 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_up diboson 1.00186504066 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_down diboson 1.00208315974 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_up diboson 1.00286245181 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_down diboson 1.00354825794 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf trigger_err_up diboson 1.00257385305 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf trigger_err_down diboson 1.00328572244 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 trigger_err_up diboson 1.00204093617 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 trigger_err_down diboson 1.0022265397 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf trigger_err_up diboson 1.00202686269 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf trigger_err_down diboson 1.00230247966 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_up diboson 1.00243138712 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_down diboson 1.00313866814 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 trigger_err_up diboson 1.0019191254 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 trigger_err_down diboson 1.00204213306 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf trigger_err_up diboson 1.00076971868 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf trigger_err_down diboson 1.00156539651 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_up diboson 1.00143477923 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_down diboson 1.00191642684 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_up diboson 1.00180458789 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_down diboson 1.00197140517 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf trigger_err_up diboson 1.00170493087 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf trigger_err_down diboson 1.00243878472 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 trigger_err_up diboson 1.00181675082 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 trigger_err_down diboson 1.00238373453 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 trigger_err_up diboson 1.00190519679 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 trigger_err_down diboson 1.00208063822 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_up diboson 1.00139530932 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_down diboson 1.00165762582 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf trigger_err_up diboson 1.00168660841 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf trigger_err_down diboson 1.00245056663 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf trigger_err_up diboson 1.00123106229 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf trigger_err_down diboson 1.00196769645 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_up diboson 1.00074508971 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_down diboson 1.00125868987 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 trigger_err_up diboson 1.00189153006 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 trigger_err_down diboson 1.00205969242 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 trigger_err_up diboson 1.00160689273 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 trigger_err_down diboson 1.00185053155 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf trigger_err_up diboson 1.00058237599 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf trigger_err_down diboson 1.0013566055 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_up diboson 1.00130075086 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_down diboson 1.00144123071 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_up diboson 1.00195358472 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_down diboson 1.00223616329 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_up diboson 1.00144753171 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_down diboson 1.00166645175 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_up diboson 1.00131613018 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_down diboson 1.00143536064 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 trigger_err_up diboson 1.00133511558 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 trigger_err_down diboson 1.00207718259 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 trigger_err_up diboson 1.00123019048 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 trigger_err_down diboson 1.00141753636 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 trigger_err_up diboson 1.00132960293 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 trigger_err_down diboson 1.00155616525 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_up diboson 1.00187578047 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_down diboson 1.00209131326 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_up diboson 1.00204980432 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_down diboson 1.00222500286 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 trigger_err_up diboson 1.00163613009 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 trigger_err_down diboson 1.00185041162 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_up diboson 1.00119865928 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_down diboson 1.00179014584 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_up diboson 1.00139861027 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_down diboson 1.00166051923 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_up diboson 1.00083530533 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_down diboson 1.00164621983 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_up diboson 1.00133400137 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_down diboson 1.001478348 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 trigger_err_up diboson 1.00164483888 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 trigger_err_down diboson 1.00232787007 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 trigger_err_up diboson 1.00124173224 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 trigger_err_down diboson 1.00132246709 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 trigger_err_up diboson 1.00147915814 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 trigger_err_down diboson 1.00189852591 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_up diboson 1.00177368731 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_down diboson 1.00198220596 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_up diboson 1.00001300493 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_down diboson 1.00087616041 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 trigger_err_up diboson 1.00137344751 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 trigger_err_down diboson 1.00155070251 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_up diboson 1.00144923888 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_down diboson 1.00219657492 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_up diboson 1.00028187331 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_down diboson 1.00113239067 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 trigger_err_up diboson 1.00094459784 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 trigger_err_down diboson 1.00119002389 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_up diboson 1.00154672656 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_down diboson 1.00197980648 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_up diboson 1.00226090241 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_down diboson 1.00244689572 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_up diboson 1.00363806725 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_down diboson 1.00431805895 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 trigger_err_up diboson 1.00151382561 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 trigger_err_down diboson 1.00173083654 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 trigger_err_up diboson 1.00203125454 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 trigger_err_down diboson 1.00219944551 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_up diboson 1.00133695086 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_down diboson 1.0017806018 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 trigger_err_up diboson 1.00186522246 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 trigger_err_down diboson 1.00201174271 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 trigger_err_up diboson 1.00178298775 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 trigger_err_down diboson 1.00192217392 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 trigger_err_up diboson 1.00095791788 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 trigger_err_down diboson 1.00119583716 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 trigger_err_up diboson 1.001729304 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 trigger_err_down diboson 1.00191052848 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 trigger_err_up diboson 1.0008920456 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 trigger_err_down diboson 1.00110779239 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf trigger_err_up diboson 1.0002096056 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf trigger_err_down diboson 1.00104175976 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_up diboson 1.00339008681 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_down diboson 1.00407639815 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 trigger_err_up diboson 1.00202360347 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 trigger_err_down diboson 1.00276697422 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf trigger_err_up diboson 1.00228245469 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf trigger_err_down diboson 1.00292987306 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 trigger_err_up diboson 1.00116076887 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 trigger_err_down diboson 1.0014146328 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 trigger_err_up diboson 1.00186380282 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 trigger_err_down diboson 1.00201129381 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf trigger_err_up diboson 1.0019756999 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf trigger_err_down diboson 1.00254509473 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 trigger_err_up diboson 1.00100885984 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 trigger_err_down diboson 1.00145532849 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_up diboson 1.00133801094 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_down diboson 1.00146119181 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf trigger_err_up diboson 1.00123153453 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf trigger_err_down diboson 1.0019280279 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PU_Weight_up diboson 1.03139558397 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PU_Weight_down diboson 1.02618510098 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PU_Weight_up diboson 1.01844387899 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PU_Weight_down diboson 1.0194792648 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_up diboson 1.02203674788 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_down diboson 1.02140590451 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PU_Weight_up diboson 1.04538698816 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PU_Weight_down diboson 1.04828987633 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PU_Weight_up diboson 1.11567498941 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PU_Weight_down diboson 1.10505524288 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_up diboson 1.00404931452 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_down diboson 1.00295176341 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_up diboson 0.999246396307 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_down diboson 0.996884902947 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_up diboson 1.00144062423 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_down diboson 1.00621805265 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_up diboson 1.00919091029 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_down diboson 1.00772146361 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_up diboson 1.02673236936 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_down diboson 1.03305185842 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PU_Weight_up diboson 1.03705264384 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PU_Weight_down diboson 1.04074629501 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_up diboson 1.05150945594 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_down diboson 1.04649671071 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PU_Weight_up diboson 1.02153034787 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PU_Weight_down diboson 1.02554712879 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_up diboson 1.01997150152 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_down diboson 1.02662331135 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PU_Weight_up diboson 1.00149725542 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PU_Weight_down diboson 1.00962331324 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_up diboson 1.00220649211 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_down diboson 1.00045396214 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_up diboson 1.00329347034 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_down diboson 1.00207081078 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PU_Weight_up diboson 1.10699196115 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PU_Weight_down diboson 1.09607715848 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PU_Weight_up diboson 1.0351373052 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PU_Weight_down diboson 1.03913241074 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PU_Weight_up diboson 1.02272199406 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PU_Weight_down diboson 1.02210224311 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PU_Weight_up diboson 1.00226984108 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PU_Weight_down diboson 1.00535914146 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_up diboson 1.00044543684 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_down diboson 1.00071187732 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PU_Weight_up diboson 1.03539526766 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PU_Weight_down diboson 1.03481092777 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PU_Weight_up diboson 1.01403773043 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PU_Weight_down diboson 1.01637837352 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_up diboson 1.00148329537 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_down diboson 1.04178038669 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_up diboson 1.00614827827 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_down diboson 1.01141594204 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_up diboson 1.01795532601 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_down diboson 1.01687008474 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PU_Weight_up diboson 1.01637674581 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PU_Weight_down diboson 1.01924321582 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PU_Weight_up diboson 1.00374810558 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PU_Weight_down diboson 1.00673850466 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PU_Weight_up diboson 1.0225586402 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PU_Weight_down diboson 1.00656200526 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PU_Weight_up diboson 0.999863312813 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PU_Weight_down diboson 0.997020030648 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_up diboson 1.04404375264 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_down diboson 1.04156599302 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_up diboson 1.00699618904 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_down diboson 1.00671792625 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PU_Weight_up diboson 1.01074618606 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PU_Weight_down diboson 1.01674906017 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PU_Weight_up diboson 1.02210574245 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PU_Weight_down diboson 1.02679104679 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_up diboson 1.00038157014 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_down diboson 1.00254170506 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PU_Weight_up diboson 1.01853148051 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PU_Weight_down diboson 1.01858847691 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_up diboson 1.00357209678 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_down diboson 1.0026591829 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PU_Weight_up diboson 1.01855065751 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PU_Weight_down diboson 1.02296651291 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_up diboson 1.04997368006 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_down diboson 1.04198998163 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PU_Weight_up diboson 1.21579545078 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PU_Weight_down diboson 1.1754103713 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PU_Weight_up diboson 1.03225026381 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PU_Weight_down diboson 1.03722163482 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PU_Weight_up diboson 1.07499896814 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PU_Weight_down diboson 1.06002269818 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PU_Weight_up diboson 1.00425730649 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PU_Weight_down diboson 1.00119415133 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PU_Weight_up diboson 1.01025485026 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PU_Weight_down diboson 1.00580705761 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PU_Weight_up diboson 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PU_Weight_down diboson 0.001 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_up diboson 1.08673334922 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_down diboson 1.07385962496 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_up diboson 1.01233205536 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_down diboson 1.01280655953 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PU_Weight_up diboson 1.07719382796 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PU_Weight_down diboson 1.0792346304 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PU_Weight_up diboson 1.00877297182 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PU_Weight_down diboson 1.01115331473 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PU_Weight_up diboson 1.02155757187 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PU_Weight_down diboson 1.01170648184 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_up diboson 1.01255179863 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_down diboson 1.01085459836 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PU_Weight_up diboson 1.03710215043 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PU_Weight_down diboson 1.0293600186 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PU_Weight_up diboson 1.01915741467 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PU_Weight_down diboson 1.01627871737 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PU_Weight_up diboson 1.12450780651 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PU_Weight_down diboson 1.15350484424 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_up diboson 1.01714432521 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_down diboson 1.01522522279 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PU_Weight_up diboson 1.02195416423 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PU_Weight_down diboson 1.01832252977 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PU_Weight_up diboson 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PU_Weight_down diboson 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PU_Weight_up diboson 1.08644464957 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PU_Weight_down diboson 1.05668954018 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PU_Weight_up diboson 0.999667094657 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PU_Weight_down diboson 0.996247071646 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PU_Weight_up diboson 1.01646795851 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PU_Weight_down diboson 1.01420982366 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PU_Weight_up diboson 1.02112118073 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PU_Weight_down diboson 1.02035216771 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_up diboson 1.0111275936 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_down diboson 1.00129466723 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PU_Weight_up diboson 1.03310893983 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PU_Weight_down diboson 1.02885588041 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_up diboson 1.04510502891 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_down diboson 1.05087858843 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_up diboson 1.00904333446 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_down diboson 1.01201867478 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PU_Weight_up diboson 1.00547408625 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PU_Weight_down diboson 1.00700851972 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PU_Weight_up diboson 1.01671233935 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PU_Weight_down diboson 1.01501340531 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PU_Weight_up diboson 1.00731086446 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PU_Weight_down diboson 1.00845063981 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PU_Weight_up diboson 0.994110167802 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PU_Weight_down diboson 0.991883681784 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PU_Weight_up diboson 1.02376173926 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PU_Weight_down diboson 1.02981746458 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_up diboson 1.01131525979 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_down diboson 1.01183829146 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_up diboson 1.01750242843 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_down diboson 1.02161847965 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_up diboson 1.01909500093 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_down diboson 1.02015449315 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PU_Weight_up diboson 1.03321827234 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PU_Weight_down diboson 1.03578844959 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PU_Weight_up diboson 1.05013238767 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PU_Weight_down diboson 1.06551072367 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PU_Weight_up diboson 1.0701997681 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PU_Weight_down diboson 1.06145821065 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_up diboson 1.00871958163 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_down diboson 1.01186110396 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_up diboson 1.02273548297 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_down diboson 1.02284650949 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_up diboson 1.00210934486 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_down diboson 1.00591023768 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_up diboson 1.1132863636 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_down diboson 1.11804406775 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PU_Weight_up diboson 1.04970123102 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PU_Weight_down diboson 1.05072371318 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PU_Weight_up diboson 1.03086625554 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PU_Weight_down diboson 1.03225510561 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_up diboson 1.00561579837 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_down diboson 1.00438027803 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_up diboson 1.00062893267 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_down diboson 1.00086232876 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PU_Weight_up diboson 1.02890667081 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PU_Weight_down diboson 1.02504639937 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PU_Weight_up diboson 1.01789815175 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PU_Weight_down diboson 1.01406010031 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PU_Weight_up diboson 1.04099428505 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PU_Weight_down diboson 1.0366073758 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PU_Weight_up diboson 1.00570722517 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PU_Weight_down diboson 1.00042287174 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PU_Weight_up diboson 1.027519145 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PU_Weight_down diboson 1.02325588869 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PU_Weight_up diboson 1.0607256145 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PU_Weight_down diboson 1.05753978981 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_up diboson 1.0250311671 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_down diboson 1.0260298457 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PU_Weight_up diboson 1.06895533856 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PU_Weight_down diboson 1.07960991846 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PU_Weight_up diboson 1.01454273869 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PU_Weight_down diboson 1.01398399347 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PU_Weight_up diboson 1.01136110208 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PU_Weight_down diboson 1.01590798422 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PU_Weight_up diboson 1.0033089204 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PU_Weight_down diboson 1.00580698614 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PU_Weight_up diboson 1.01453449967 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PU_Weight_down diboson 1.01442699359 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PU_Weight_up diboson 1.03335290249 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PU_Weight_down diboson 1.0345936384 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PU_Weight_up diboson 1.08261637545 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PU_Weight_down diboson 1.08203031306 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PU_Weight_up diboson 1.01192271851 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PU_Weight_down diboson 1.01377106743 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PU_Weight_up diboson 1.04020945069 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PU_Weight_down diboson 1.03442676013 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PU_Weight_up diboson 1.01759138392 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PU_Weight_down diboson 1.01653351982 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PU_Weight_up diboson 1.01758516027 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PU_Weight_down diboson 1.0164709473 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PU_Weight_up diboson 1.00813493989 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PU_Weight_down diboson 1.00940788543 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PU_Weight_up diboson 1.02499626325 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PU_Weight_down diboson 1.02703849757 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PU_Weight_up diboson 1.2866789108 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PU_Weight_down diboson 1.25334450252 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_up diboson 1.15736755139 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_down diboson 1.11227419742 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PU_Weight_up diboson 1.00171712257 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PU_Weight_down diboson 1.00969071422 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PU_Weight_up diboson 1.00514127559 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PU_Weight_down diboson 1.01029279258 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PU_Weight_up diboson 1.10983655744 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PU_Weight_down diboson 1.08829535327 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PU_Weight_up diboson 1.01192359956 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PU_Weight_down diboson 1.00822631439 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_up diboson 1.042239281 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_down diboson 1.04003146188 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PU_Weight_up diboson 1.0331897507 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PU_Weight_down diboson 1.03439869782 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_up diboson 1.00389637253 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_down diboson 1.00487989814 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_up diboson 1.04097098175 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_down diboson 1.03877515221 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_up diboson 1.00571663181 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_down diboson 1.00654970823 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PU_Weight_up diboson 1.08549750159 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PU_Weight_down diboson 1.07547488448 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PU_Weight_up diboson 1.008721611 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PU_Weight_down diboson 1.01164982519 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PU_Weight_up diboson 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PU_Weight_down diboson 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_up diboson 1.01591024277 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_down diboson 1.00833999128 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_up diboson 1.25871365472 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_down diboson 1.19995201896 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PU_Weight_up diboson 1.08746792998 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PU_Weight_down diboson 1.09330110021 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PU_Weight_up diboson 1.00150550662 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PU_Weight_down diboson 1.0032587523 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PU_Weight_up diboson 1.22195148699 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PU_Weight_down diboson 1.20066628216 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_up diboson 1.03640520512 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_down diboson 1.05091424109 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PU_Weight_up diboson 1.01890818193 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PU_Weight_down diboson 1.01573993689 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_up diboson 1.0340634224 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_down diboson 1.03626109502 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_up diboson 1.00313505429 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_down diboson 1.00318121736 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_up diboson 1.00270673808 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_down diboson 1.00164984526 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PU_Weight_up diboson 1.00501639194 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PU_Weight_down diboson 1.0074506173 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PU_Weight_up diboson 1.06100578117 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PU_Weight_down diboson 1.12297503014 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_up diboson 1.0283682779 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_down diboson 1.02508587673 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_up diboson 1.0246170564 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_down diboson 1.02416900112 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PU_Weight_up diboson 1.00743442025 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PU_Weight_down diboson 1.00950300777 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PU_Weight_up diboson 1.01868378317 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PU_Weight_down diboson 1.02089778313 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_up diboson 1.03411949259 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_down diboson 1.033987336 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PU_Weight_up diboson 1.02751885689 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PU_Weight_down diboson 1.02891289676 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PU_Weight_up diboson 1.04003695115 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PU_Weight_down diboson 1.05237860107 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PU_Weight_up diboson 1.04703728285 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PU_Weight_down diboson 1.05068187516 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PU_Weight_up diboson 1.08724964675 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PU_Weight_down diboson 1.07549032487 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_up diboson 1.00429743164 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_down diboson 1.00347725347 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_up diboson 1.03028037073 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_down diboson 1.02770853058 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_up diboson 1.00509337382 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_down diboson 1.00698840458 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PU_Weight_up diboson 1.01807739323 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PU_Weight_down diboson 1.01842517762 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PU_Weight_up diboson 1.03316946198 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PU_Weight_down diboson 1.04430258811 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PU_Weight_up diboson 1.01842740519 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PU_Weight_down diboson 1.01823179125 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_up diboson 1.00247279107 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_down diboson 1.0057254295 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_up diboson 1.00472069953 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_down diboson 1.0060842012 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_up diboson 1.00543207014 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_down diboson 1.01324138887 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_up diboson 1.03576088967 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_down diboson 1.02757537865 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_up diboson 1.03323658721 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_down diboson 1.02261593819 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_up diboson 1.0562407361 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_down diboson 1.06102799601 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_up diboson 1.0548087851 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_down diboson 1.03651919125 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_up diboson 1.005253177 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_down diboson 1.0068687185 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PU_Weight_up diboson 1.03288507541 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PU_Weight_down diboson 1.03148374274 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PU_Weight_up diboson 1.03912361588 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PU_Weight_down diboson 1.03428081188 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_up diboson 1.06941903259 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_down diboson 1.07333620435 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_up diboson 1.00394643754 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_down diboson 1.00228366492 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PU_Weight_up diboson 1.03622579299 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PU_Weight_down diboson 1.0322309782 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_up diboson 1.0214969577 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_down diboson 1.02385361315 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_up diboson 1.06608976958 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_down diboson 1.0655497618 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PU_Weight_up diboson 1.00914902705 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PU_Weight_down diboson 1.00845419104 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_up diboson 1.00795931616 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_down diboson 1.01125234123 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_up diboson 1.12257463129 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_down diboson 1.12166003817 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_up diboson 1.12495135938 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_down diboson 1.11262032215 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PU_Weight_up diboson 1.00425395424 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PU_Weight_down diboson 1.00483395026 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PU_Weight_up diboson 1.0101739197 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PU_Weight_down diboson 1.01179853118 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_up diboson 1.00717649114 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_down diboson 1.01122079035 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PU_Weight_up diboson 1.00348770899 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PU_Weight_down diboson 1.00456859783 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PU_Weight_up diboson 1.01559932523 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PU_Weight_down diboson 1.01489741782 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PU_Weight_up diboson 1.08529374828 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PU_Weight_down diboson 1.07587879201 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PU_Weight_up diboson 1.029048023 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PU_Weight_down diboson 1.02610440383 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PU_Weight_up diboson 1.03841266857 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PU_Weight_down diboson 1.03494813879 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PU_Weight_up diboson 1.03093900173 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PU_Weight_down diboson 1.0364644408 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_up diboson 1.04594108848 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_down diboson 1.04403277144 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PU_Weight_up diboson 1.01037037187 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PU_Weight_down diboson 1.01453097606 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PU_Weight_up diboson 1.0074773178 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PU_Weight_down diboson 1.01434972413 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PU_Weight_up diboson 1.10092129282 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PU_Weight_down diboson 1.081555619 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PU_Weight_up diboson 1.00470337937 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PU_Weight_down diboson 1.00438589876 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PU_Weight_up diboson 1.02168490801 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PU_Weight_down diboson 1.02413055208 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_up diboson 1.01379801233 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_down diboson 1.00836924206 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_up diboson 1.01466023331 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_down diboson 1.01480722991 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PU_Weight_up diboson 1.01167255749 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PU_Weight_down diboson 1.01877499964 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 Prefire_Weight_up diboson 1.00114208629 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 Prefire_Weight_down diboson 1.00114208629 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_up diboson 1.00326461984 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_down diboson 1.00329542983 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 Prefire_Weight_up diboson 1.00030153212 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 Prefire_Weight_down diboson 1.00030697781 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_up diboson 1.00023744664 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_down diboson 1.00030168077 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 Prefire_Weight_up diboson 1.00001181013 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 Prefire_Weight_down diboson 1.0000116065 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_up diboson 1.0035671741 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_down diboson 1.00373396143 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_up diboson 1.00279194198 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_down diboson 1.00267620514 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_up diboson 1.00623512731 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_down diboson 1.00627245329 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_up diboson 1.00397916154 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_down diboson 1.00400049441 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_up diboson 1.00235045112 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_down diboson 1.00238706739 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 Prefire_Weight_up diboson 1.00072591614 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 Prefire_Weight_down diboson 1.00073166882 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_up diboson 1.00072972038 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_down diboson 1.00049772798 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf Prefire_Weight_up diboson 1.00207939311 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf Prefire_Weight_down diboson 1.00206923491 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_up diboson 1.00738872768 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_down diboson 1.00738872768 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_up diboson 1.00112908452 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_down diboson 1.00112908452 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_up diboson 1.00450881435 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_down diboson 1.00449296892 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 Prefire_Weight_up diboson 1.00196016059 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 Prefire_Weight_down diboson 1.00204377408 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 Prefire_Weight_up diboson 1.00063963622 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 Prefire_Weight_down diboson 1.00063972215 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 Prefire_Weight_up diboson 1.0017890217 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 Prefire_Weight_down diboson 1.00235878358 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_up diboson 1.00198148346 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_down diboson 1.00199228902 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf Prefire_Weight_up diboson 1.00352187038 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf Prefire_Weight_down diboson 1.00351145065 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 Prefire_Weight_up diboson 1.0013727805 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 Prefire_Weight_down diboson 1.00148277732 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf Prefire_Weight_up diboson 1.00035873804 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf Prefire_Weight_down diboson 1.00131898134 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_down diboson 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_up diboson 1.00394213612 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_down diboson 1.00394213612 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_up diboson 1.00021578366 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_down diboson 1.00027961166 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_up diboson 1.00320687883 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_down diboson 1.00343505036 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 Prefire_Weight_up diboson 1.00046178598 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 Prefire_Weight_down diboson 1.00046195008 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_up diboson 1.00199838364 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_down diboson 1.00199503466 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf Prefire_Weight_up diboson 1.02145803939 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf Prefire_Weight_down diboson 1.02145803939 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf Prefire_Weight_up diboson 1.00463530989 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf Prefire_Weight_down diboson 1.00462818203 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_up diboson 1.0007027358 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_down diboson 1.00071647879 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 Prefire_Weight_up diboson 1.00222500644 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 Prefire_Weight_down diboson 1.00224237152 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 Prefire_Weight_up diboson 1.00475199028 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 Prefire_Weight_down diboson 1.0046000244 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_up diboson 1.00059298958 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_down diboson 1.00059298958 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 Prefire_Weight_up diboson 1.00135909601 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 Prefire_Weight_down diboson 1.00135306668 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf Prefire_Weight_up diboson 1.00079075356 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf Prefire_Weight_down diboson 1.00078938291 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_up diboson 1.00398334034 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_down diboson 1.00400645741 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_up diboson 1.00265088767 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_down diboson 1.00280163589 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf Prefire_Weight_up diboson 1.00204364156 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf Prefire_Weight_down diboson 1.0021513828 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf Prefire_Weight_up diboson 1.00038165762 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf Prefire_Weight_down diboson 1.00044863418 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 Prefire_Weight_up diboson 1.00057842458 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 Prefire_Weight_down diboson 1.00060764858 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf Prefire_Weight_up diboson 1.0008134566 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf Prefire_Weight_down diboson 1.0008134566 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 Prefire_Weight_up diboson 1.00222784821 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 Prefire_Weight_down diboson 1.00234346979 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 Prefire_Weight_up diboson 1.00244866043 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 Prefire_Weight_down diboson 1.00244141305 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf Prefire_Weight_up diboson 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf Prefire_Weight_down diboson 0.001 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_up diboson 1.00352990657 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_down diboson 1.00361098036 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_up diboson 1.00083852068 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_down diboson 1.00091081868 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf Prefire_Weight_up diboson 1.00549534546 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf Prefire_Weight_down diboson 1.00549446325 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 Prefire_Weight_up diboson 1.00092412712 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 Prefire_Weight_down diboson 1.00092545606 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 Prefire_Weight_up diboson 1.00013645606 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 Prefire_Weight_down diboson 1.0001365641 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_up diboson 1.00497731328 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_down diboson 1.00494648349 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 Prefire_Weight_up diboson 1.00012408309 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 Prefire_Weight_down diboson 1.0001213402 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 Prefire_Weight_up diboson 1.0009429558 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 Prefire_Weight_down diboson 1.00096705386 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf Prefire_Weight_up diboson 1.00143012454 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf Prefire_Weight_down diboson 1.00143012454 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_up diboson 1.00124261818 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_down diboson 1.00134991379 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 Prefire_Weight_up diboson 1.01380940678 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 Prefire_Weight_down diboson 1.01366849969 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf Prefire_Weight_up diboson 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf Prefire_Weight_down diboson 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 Prefire_Weight_up diboson 1.00444052733 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 Prefire_Weight_down diboson 1.00441310931 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_up diboson 1.00180574616 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_down diboson 1.00214937292 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf Prefire_Weight_up diboson 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf Prefire_Weight_down diboson 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 Prefire_Weight_up diboson 1.00239592126 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 Prefire_Weight_down diboson 1.00239592126 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_up diboson 1.00378408294 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_down diboson 1.00382872887 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_up diboson 1.00711786503 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_down diboson 1.00711786503 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_up diboson 1.00317082273 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_down diboson 1.00319307942 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_up diboson 1.00350062285 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_down diboson 1.00402808499 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 Prefire_Weight_up diboson 1.00122537833 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 Prefire_Weight_down diboson 1.00123756293 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 Prefire_Weight_up diboson 1.00289570815 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 Prefire_Weight_down diboson 1.00289094621 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_up diboson 1.00145872321 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_down diboson 1.00144738854 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_up diboson 1.00591789242 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_down diboson 1.00594683706 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 Prefire_Weight_up diboson 1.003431393 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 Prefire_Weight_down diboson 1.00341553207 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_up diboson 1.00545816094 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_down diboson 1.00551210559 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_up diboson 1.00152604551 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_down diboson 1.00152625909 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 Prefire_Weight_up diboson 1.00136926519 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 Prefire_Weight_down diboson 1.00139361416 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf Prefire_Weight_up diboson 1.00213497191 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf Prefire_Weight_down diboson 1.00213472347 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_up diboson 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_down diboson 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 Prefire_Weight_up diboson 1.00135858135 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 Prefire_Weight_down diboson 1.00139365374 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_up diboson 1.00095594994 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_down diboson 1.00167976632 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_up diboson 1.00225191811 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_down diboson 1.00169298388 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_up diboson 1.00539972608 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_down diboson 1.00541776343 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_up diboson 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_down diboson 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf Prefire_Weight_up diboson 1.00000007324 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf Prefire_Weight_down diboson 1.00056291081 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf Prefire_Weight_up diboson 1.00265154201 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf Prefire_Weight_down diboson 1.00276853677 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_up diboson 1.00635855088 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_down diboson 1.00632891694 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_up diboson 1.00493876104 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_down diboson 1.00505120417 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 Prefire_Weight_up diboson 1.00705976535 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 Prefire_Weight_down diboson 1.00699010564 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf Prefire_Weight_up diboson 1.00290268117 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf Prefire_Weight_down diboson 1.00288354873 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf Prefire_Weight_up diboson 1.00110969144 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf Prefire_Weight_down diboson 1.00160432282 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf Prefire_Weight_up diboson 1.00047189931 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf Prefire_Weight_down diboson 1.00047175574 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_up diboson 1.00431605347 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_down diboson 1.00430733046 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf Prefire_Weight_up diboson 1.0008939112 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf Prefire_Weight_down diboson 1.0013427372 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_up diboson 1.0006969922 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_down diboson 1.00069570386 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 Prefire_Weight_up diboson 1.0021266377 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 Prefire_Weight_down diboson 1.0021283959 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 Prefire_Weight_up diboson 1.00270330909 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 Prefire_Weight_down diboson 1.00273451496 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf Prefire_Weight_up diboson 1.00081299973 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf Prefire_Weight_down diboson 1.00080893088 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 Prefire_Weight_up diboson 1.0013561837 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 Prefire_Weight_down diboson 1.00178126832 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf Prefire_Weight_up diboson 1.00258750804 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf Prefire_Weight_down diboson 1.00264650528 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf Prefire_Weight_up diboson 1.00574848835 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf Prefire_Weight_down diboson 1.00570363411 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf Prefire_Weight_up diboson 1.00153219421 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf Prefire_Weight_down diboson 1.00153219421 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf Prefire_Weight_up diboson 1.00080762224 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf Prefire_Weight_down diboson 1.00080751306 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 Prefire_Weight_up diboson 1.00331682462 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 Prefire_Weight_down diboson 1.00340609697 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 Prefire_Weight_up diboson 1.00156922313 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 Prefire_Weight_down diboson 1.00161524017 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf Prefire_Weight_up diboson 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf Prefire_Weight_down diboson 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 Prefire_Weight_up diboson 1.00231915071 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 Prefire_Weight_down diboson 1.00236083368 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf Prefire_Weight_up diboson 1.00677414533 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf Prefire_Weight_down diboson 1.00680088106 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf Prefire_Weight_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf Prefire_Weight_down diboson 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_up diboson 1.00060658794 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_down diboson 1.00065352363 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 Prefire_Weight_up diboson 1.00653094229 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 Prefire_Weight_down diboson 1.00712110278 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_up diboson 1.00195015583 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_down diboson 1.00195035091 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 Prefire_Weight_up diboson 1.00000498492 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 Prefire_Weight_down diboson 1.00000567249 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_up diboson 1.00196057451 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_down diboson 1.00186014699 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 Prefire_Weight_up diboson 1.00252617086 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 Prefire_Weight_down diboson 1.00252953443 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 Prefire_Weight_up diboson 1.00306949281 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 Prefire_Weight_down diboson 1.00306134146 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_up diboson 1.0029013217 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_down diboson 1.00302082 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_up diboson 1.0 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_down diboson 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_up diboson 1.00188958195 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_down diboson 1.00195207718 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 Prefire_Weight_up diboson 1.00066183851 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 Prefire_Weight_down diboson 1.00066216595 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_up diboson 1.00258267978 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_down diboson 1.00257356679 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf Prefire_Weight_up diboson 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf Prefire_Weight_down diboson 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_up diboson 1.00026164486 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_down diboson 1.00026242911 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_up diboson 1.0120773144 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_down diboson 1.01200759138 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf Prefire_Weight_up diboson 1.00197090536 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf Prefire_Weight_down diboson 1.00195646498 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 Prefire_Weight_up diboson 1.00236175222 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 Prefire_Weight_down diboson 1.00235833929 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf Prefire_Weight_up diboson 1.0 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf Prefire_Weight_down diboson 1.0 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_up diboson 1.00095024595 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_down diboson 1.00135221878 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 Prefire_Weight_up diboson 1.00042471097 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 Prefire_Weight_down diboson 1.00042491684 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_up diboson 1.00129332862 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_down diboson 1.0012776324 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_up diboson 1.00324553531 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_down diboson 1.00328161233 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_up diboson 1.00196170232 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_down diboson 1.00202581305 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_up diboson 1.00160026959 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_down diboson 1.00160013349 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_up diboson 1.08786551009 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_down diboson 1.08791073113 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_up diboson 1.00527890873 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_down diboson 1.00572704954 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_up diboson 1.00997311393 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_down diboson 1.00989296167 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_up diboson 1.00868457752 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_down diboson 1.00880904371 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf Prefire_Weight_up diboson 1.00134328746 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf Prefire_Weight_down diboson 1.00133816562 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 Prefire_Weight_up diboson 1.00166230322 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 Prefire_Weight_down diboson 1.00201671196 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 Prefire_Weight_up diboson 1.00556418175 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 Prefire_Weight_down diboson 1.00573139538 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 Prefire_Weight_up diboson 1.00467649953 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 Prefire_Weight_down diboson 1.0049819292 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf Prefire_Weight_up diboson 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf Prefire_Weight_down diboson 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 Prefire_Weight_up diboson 1.00222760917 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 Prefire_Weight_down diboson 1.00222066236 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_down diboson 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_up diboson 1.0014466236 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_down diboson 1.0014363749 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_up diboson 1.00106936585 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_down diboson 1.00118214706 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 Prefire_Weight_up diboson 1.00122564865 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 Prefire_Weight_down diboson 1.00138486309 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 Prefire_Weight_up diboson 1.00029799369 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 Prefire_Weight_down diboson 1.00031390209 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_up diboson 1.0057396629 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_down diboson 1.00571737671 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_up diboson 1.00798363024 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_down diboson 1.00796137374 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_up diboson 1.00077232272 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_down diboson 1.00077232272 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_up diboson 1.00349299031 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_down diboson 1.00331867666 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_up diboson 1.00655829406 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_down diboson 1.00656791293 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_up diboson 1.00807241236 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_down diboson 1.00855240253 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_up diboson 1.00018164742 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_down diboson 1.00019167654 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 Prefire_Weight_up diboson 1.00416284025 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 Prefire_Weight_down diboson 1.00421104036 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_up diboson 1.00211548455 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_down diboson 1.00210054862 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 Prefire_Weight_up diboson 1.00027567346 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 Prefire_Weight_down diboson 1.00027558445 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 Prefire_Weight_up diboson 1.01682786886 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 Prefire_Weight_down diboson 1.01679473871 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_up diboson 1.00308324761 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_down diboson 1.00316351074 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_up diboson 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_down diboson 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_up diboson 1.00224612179 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_down diboson 1.00222036965 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 Prefire_Weight_up diboson 1.00203443926 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 Prefire_Weight_down diboson 1.00207678977 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_down diboson 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 Prefire_Weight_up diboson 1.00039475881 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 Prefire_Weight_down diboson 1.00048984376 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 Prefire_Weight_up diboson 1.00705192317 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 Prefire_Weight_down diboson 1.00707495747 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_up diboson 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_down diboson 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_up diboson 1.00401537518 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_down diboson 1.00401537518 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 Prefire_Weight_up diboson 1.02732432354 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 Prefire_Weight_down diboson 1.02615412982 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_up diboson 1.0006176443 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_down diboson 1.0006176443 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 Prefire_Weight_up diboson 1.0022177464 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 Prefire_Weight_down diboson 1.00223513053 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 Prefire_Weight_up diboson 1.00369013539 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 Prefire_Weight_down diboson 1.00374604154 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 Prefire_Weight_up diboson 1.00133930489 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 Prefire_Weight_down diboson 1.00145199701 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 Prefire_Weight_up diboson 1.01034258203 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 Prefire_Weight_down diboson 1.01025415992 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 Prefire_Weight_up diboson 1.0058584055 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 Prefire_Weight_down diboson 1.00587108009 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 Prefire_Weight_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 Prefire_Weight_down diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf Prefire_Weight_up diboson 1.00004625189 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf Prefire_Weight_down diboson 1.00004625189 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_down diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 Prefire_Weight_up diboson 1.00319490179 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 Prefire_Weight_down diboson 1.0032105218 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_up diboson 1.00000036084 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_down diboson 1.00000036084 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 Prefire_Weight_up diboson 1.00230674221 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 Prefire_Weight_down diboson 1.0025155402 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_up diboson 1.00399942237 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_down diboson 1.00406958475 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf Prefire_Weight_up diboson 1.00275730922 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf Prefire_Weight_down diboson 1.00248217 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_up diboson 1.0005173999 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_down diboson 1.00051750753 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_up diboson 1.00574916249 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_down diboson 1.00584488121 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf Prefire_Weight_up diboson 1.00003983159 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf Prefire_Weight_down diboson 1.00003994347 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PDF_Weight_up diboson 1.04806867242 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PDF_Weight_down diboson 1.04806867242 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PDF_Weight_up diboson 1.02353549999 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PDF_Weight_down diboson 1.0235355774 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PDF_Weight_up diboson 1.03156854034 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PDF_Weight_down diboson 1.03156854034 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PDF_Weight_up diboson 1.04373602485 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PDF_Weight_down diboson 1.04373611635 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PDF_Weight_up diboson 1.02329241871 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PDF_Weight_down diboson 1.02329211328 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PDF_Weight_up diboson 1.01905571901 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PDF_Weight_down diboson 1.01905585201 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PDF_Weight_up diboson 1.02410862726 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PDF_Weight_down diboson 1.02410862726 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PDF_Weight_up diboson 1.01861246404 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PDF_Weight_down diboson 1.01861246404 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PDF_Weight_up diboson 1.09621627338 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PDF_Weight_down diboson 1.09621640267 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PDF_Weight_up diboson 1.0338525281 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PDF_Weight_down diboson 1.03385243587 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PDF_Weight_up diboson 1.12640598164 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PDF_Weight_down diboson 1.12640605354 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PDF_Weight_up diboson 1.02505811292 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PDF_Weight_down diboson 1.01476612143 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PDF_Weight_up diboson 1.02546753881 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PDF_Weight_down diboson 1.02546774825 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PDF_Weight_up diboson 1.08166575115 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PDF_Weight_down diboson 1.08166575115 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PDF_Weight_up diboson 1.10007770579 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PDF_Weight_down diboson 1.10007760425 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_up diboson 1.0909000003 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_down diboson 1.0909000003 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PDF_Weight_up diboson 1.02713599926 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PDF_Weight_down diboson 1.02713583237 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PDF_Weight_up diboson 1.04987031556 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PDF_Weight_down diboson 1.04987031556 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PDF_Weight_up diboson 1.01899741096 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PDF_Weight_down diboson 1.01899741096 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PDF_Weight_up diboson 1.02961384775 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PDF_Weight_down diboson 1.02961373156 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PDF_Weight_up diboson 1.04441895217 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PDF_Weight_down diboson 1.04441895217 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PDF_Weight_up diboson 1.04031039897 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PDF_Weight_down diboson 1.04031039897 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PDF_Weight_up diboson 1.02906525773 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PDF_Weight_down diboson 1.02906525773 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PDF_Weight_up diboson 1.07991701383 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PDF_Weight_down diboson 1.07991686792 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PDF_Weight_up diboson 1.01329008193 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PDF_Weight_down diboson 1.01329029521 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_up diboson 1.05166386481 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_down diboson 1.05166386481 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PDF_Weight_up diboson 1.02499197139 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PDF_Weight_down diboson 1.02499189531 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PDF_Weight_up diboson 1.02998802704 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PDF_Weight_down diboson 1.02998819114 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PDF_Weight_up diboson 1.03665397762 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PDF_Weight_down diboson 1.03665391782 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PDF_Weight_up diboson 1.38127806151 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PDF_Weight_down diboson 1.25615760153 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PDF_Weight_up diboson 1.04986943963 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PDF_Weight_down diboson 1.04986954445 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PDF_Weight_up diboson 1.06852629364 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PDF_Weight_down diboson 1.06852637744 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PDF_Weight_up diboson 1.0217044131 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PDF_Weight_down diboson 1.02170416021 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PDF_Weight_up diboson 1.00511115934 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PDF_Weight_down diboson 1.00511109599 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PDF_Weight_up diboson 1.04567826351 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PDF_Weight_down diboson 1.04567834525 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PDF_Weight_up diboson 1.04110750778 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PDF_Weight_down diboson 1.04110750778 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PDF_Weight_up diboson 1.04923654531 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PDF_Weight_down diboson 1.04923631687 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PDF_Weight_up diboson 1.06879217964 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PDF_Weight_down diboson 1.06287228981 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PDF_Weight_up diboson 1.02537110051 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PDF_Weight_down diboson 1.0253709543 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PDF_Weight_up diboson 1.06349504844 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PDF_Weight_down diboson 1.06348691309 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PDF_Weight_up diboson 1.05955785835 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PDF_Weight_down diboson 1.05955801375 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PDF_Weight_up diboson 1.01144060367 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PDF_Weight_down diboson 1.01104798844 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PDF_Weight_up diboson 1.03007156857 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PDF_Weight_down diboson 1.03007166259 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PDF_Weight_up diboson 1.04540316175 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PDF_Weight_down diboson 1.01048489913 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PDF_Weight_up diboson 1.02036360862 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PDF_Weight_down diboson 1.02036351326 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PDF_Weight_up diboson 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PDF_Weight_down diboson 0.001 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PDF_Weight_up diboson 1.07988466039 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PDF_Weight_down diboson 1.07988453252 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PDF_Weight_up diboson 1.09946649134 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PDF_Weight_down diboson 1.09946649134 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PDF_Weight_up diboson 1.10992379727 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PDF_Weight_down diboson 1.10992386029 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PDF_Weight_up diboson 1.03268424989 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PDF_Weight_down diboson 1.03268424989 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PDF_Weight_up diboson 1.02927301119 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PDF_Weight_down diboson 1.02927301119 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PDF_Weight_up diboson 1.04581741281 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PDF_Weight_down diboson 1.04581741281 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PDF_Weight_up diboson 1.01173336242 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PDF_Weight_down diboson 1.01173329711 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PDF_Weight_up diboson 1.01496476033 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PDF_Weight_down diboson 1.01496489648 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PDF_Weight_up diboson 1.00502182634 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PDF_Weight_down diboson 1.00502198318 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PDF_Weight_up diboson 1.07354751898 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PDF_Weight_down diboson 1.07354764625 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PDF_Weight_up diboson 1.03904129929 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PDF_Weight_down diboson 1.03904109449 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PDF_Weight_up diboson 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PDF_Weight_down diboson 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PDF_Weight_up diboson 1.04268946151 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PDF_Weight_down diboson 1.04161241011 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PDF_Weight_up diboson 1.02359317711 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PDF_Weight_down diboson 1.02359296051 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PDF_Weight_up diboson 1.07737549386 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PDF_Weight_down diboson 1.07737558426 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PDF_Weight_up diboson 1.03370321784 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PDF_Weight_down diboson 1.03370328174 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PDF_Weight_up diboson 1.07378248955 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PDF_Weight_down diboson 1.07134556036 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PDF_Weight_up diboson 1.04596664334 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PDF_Weight_down diboson 1.04596664334 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PDF_Weight_up diboson 1.05952855566 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PDF_Weight_down diboson 1.05952844762 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_up diboson 1.04572721053 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_down diboson 1.04572714643 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PDF_Weight_up diboson 1.06989705872 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PDF_Weight_down diboson 1.06989726524 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PDF_Weight_up diboson 1.0158802579 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PDF_Weight_down diboson 1.01588016805 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PDF_Weight_up diboson 1.04911353489 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PDF_Weight_down diboson 1.04879330572 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PDF_Weight_up diboson 1.03156991867 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PDF_Weight_down diboson 1.03156991867 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PDF_Weight_up diboson 1.19277386831 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PDF_Weight_down diboson 1.19277375968 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PDF_Weight_up diboson 1.04707839183 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PDF_Weight_down diboson 1.04707846198 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_up diboson 1.04781851314 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_down diboson 1.04781872672 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PDF_Weight_up diboson 1.00553741292 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PDF_Weight_down diboson 1.00534189279 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PDF_Weight_up diboson 1.05445625544 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PDF_Weight_down diboson 1.05445619333 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PDF_Weight_up diboson 1.01274858396 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PDF_Weight_down diboson 1.01274866223 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PDF_Weight_up diboson 1.00450727669 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PDF_Weight_down diboson 1.00450739518 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PDF_Weight_up diboson 1.02222175145 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PDF_Weight_down diboson 1.02222182068 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_up diboson 1.01496499107 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_down diboson 1.0149652835 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PDF_Weight_up diboson 1.04127443975 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PDF_Weight_down diboson 1.04127443975 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_up diboson 1.05510602228 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_down diboson 1.04500589525 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PDF_Weight_up diboson 1.03234466782 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PDF_Weight_down diboson 1.03234459458 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PDF_Weight_up diboson 1.05012772237 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PDF_Weight_down diboson 1.05012781493 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PDF_Weight_up diboson 1.03234056854 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PDF_Weight_down diboson 1.03234089965 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PDF_Weight_up diboson 1.02138439167 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PDF_Weight_down diboson 1.02138439167 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PDF_Weight_up diboson 1.0397400001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PDF_Weight_down diboson 1.0397400001 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PDF_Weight_up diboson 1.03235064863 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PDF_Weight_down diboson 1.03235064863 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PDF_Weight_up diboson 1.0318818796 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PDF_Weight_down diboson 1.03188159467 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PDF_Weight_up diboson 1.08128361493 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PDF_Weight_down diboson 1.08128354315 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PDF_Weight_up diboson 1.05032786466 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PDF_Weight_down diboson 1.05032780727 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PDF_Weight_up diboson 1.02952017331 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PDF_Weight_down diboson 1.02952010273 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_up diboson 1.15884744202 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_down diboson 1.01099824056 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PDF_Weight_up diboson 1.04824845911 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PDF_Weight_down diboson 1.03805384324 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PDF_Weight_up diboson 1.07021722331 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PDF_Weight_down diboson 1.07021706328 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PDF_Weight_up diboson 1.04939756863 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PDF_Weight_down diboson 1.04939756863 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PDF_Weight_up diboson 1.02745659596 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PDF_Weight_down diboson 1.0274565283 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PDF_Weight_up diboson 1.0047029373 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PDF_Weight_down diboson 1.00470323985 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PDF_Weight_up diboson 1.02719516876 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PDF_Weight_down diboson 1.02719546647 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PDF_Weight_up diboson 1.03387387428 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PDF_Weight_down diboson 1.02954525471 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PDF_Weight_up diboson 1.06240167442 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PDF_Weight_down diboson 1.06240145606 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PDF_Weight_up diboson 1.03532052777 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PDF_Weight_down diboson 1.03532052777 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PDF_Weight_up diboson 1.03108967918 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PDF_Weight_down diboson 1.03108946809 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PDF_Weight_up diboson 1.02218447803 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PDF_Weight_down diboson 1.02218454699 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PDF_Weight_up diboson 1.03303289545 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PDF_Weight_down diboson 1.03303297056 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PDF_Weight_up diboson 1.00648826067 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PDF_Weight_down diboson 1.00648833885 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PDF_Weight_up diboson 1.0465643956 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PDF_Weight_down diboson 1.04656451416 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_up diboson 1.02212839057 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_down diboson 1.02025677399 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PDF_Weight_up diboson 1.02371384268 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PDF_Weight_down diboson 1.02371384268 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PDF_Weight_up diboson 1.03211924412 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PDF_Weight_down diboson 1.03211934166 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PDF_Weight_up diboson 1.0296565641 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PDF_Weight_down diboson 1.0296565641 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_up diboson 1.0156508871 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_down diboson 1.0156508871 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PDF_Weight_up diboson 1.0234732142 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PDF_Weight_down diboson 1.02347341206 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PDF_Weight_up diboson 1.03832968645 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PDF_Weight_down diboson 1.03832960154 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PDF_Weight_up diboson 1.05263445227 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PDF_Weight_down diboson 1.05263433095 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PDF_Weight_up diboson 1.01480267918 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PDF_Weight_down diboson 1.01480267918 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PDF_Weight_up diboson 1.05944988666 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PDF_Weight_down diboson 1.05906598742 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PDF_Weight_up diboson 1.01294444789 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PDF_Weight_down diboson 1.01125739411 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PDF_Weight_up diboson 1.11132520321 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PDF_Weight_down diboson 1.11132539307 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PDF_Weight_up diboson 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PDF_Weight_down diboson 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PDF_Weight_up diboson 1.04802050809 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PDF_Weight_down diboson 1.04802060613 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PDF_Weight_up diboson 1.00201090617 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PDF_Weight_down diboson 1.0020110875 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PDF_Weight_up diboson 1.04484042804 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PDF_Weight_down diboson 1.04484026301 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PDF_Weight_up diboson 1.01774717065 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PDF_Weight_down diboson 1.01774737141 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PDF_Weight_up diboson 1.05780264637 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PDF_Weight_down diboson 1.05780241329 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PDF_Weight_up diboson 1.05562278635 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PDF_Weight_down diboson 1.05562289496 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PDF_Weight_up diboson 1.03809984764 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PDF_Weight_down diboson 1.03809995057 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_up diboson 1.0445136867 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_down diboson 1.0445136867 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PDF_Weight_up diboson 1.04828874278 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PDF_Weight_down diboson 1.04828874278 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PDF_Weight_up diboson 1.04375737507 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PDF_Weight_down diboson 1.04375759069 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PDF_Weight_up diboson 1.02577001575 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PDF_Weight_down diboson 1.02576974355 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PDF_Weight_up diboson 1.01335161817 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PDF_Weight_down diboson 1.01335167855 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_up diboson 1.026829122 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_down diboson 1.02682919453 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PDF_Weight_up diboson 1.02311753539 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PDF_Weight_down diboson 1.02311746665 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PDF_Weight_up diboson 1.06087302762 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PDF_Weight_down diboson 1.06087312403 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PDF_Weight_up diboson 1.07518596826 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PDF_Weight_down diboson 1.07518596826 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PDF_Weight_up diboson 1.02874208669 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PDF_Weight_down diboson 1.02874208669 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PDF_Weight_up diboson 1.04203264413 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PDF_Weight_down diboson 1.04203276272 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PDF_Weight_up diboson 1.02767525501 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PDF_Weight_down diboson 1.02430165041 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PDF_Weight_up diboson 1.01064860919 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PDF_Weight_down diboson 1.01064860919 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PDF_Weight_up diboson 1.04031077232 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PDF_Weight_down diboson 1.04031077232 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PDF_Weight_up diboson 1.01492009402 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PDF_Weight_down diboson 1.01492000307 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PDF_Weight_up diboson 1.03237720305 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PDF_Weight_down diboson 1.03237720305 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PDF_Weight_up diboson 1.02561495993 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PDF_Weight_down diboson 1.0256147987 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PDF_Weight_up diboson 1.05306770703 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PDF_Weight_down diboson 1.05306793112 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PDF_Weight_up diboson 1.01607406241 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PDF_Weight_down diboson 1.01607397353 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PDF_Weight_up diboson 1.02784487932 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PDF_Weight_down diboson 1.02784479522 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PDF_Weight_up diboson 1.09076692482 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PDF_Weight_down diboson 1.00754517 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PDF_Weight_up diboson 1.03783814665 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PDF_Weight_down diboson 1.03783814665 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PDF_Weight_up diboson 1.04244063831 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PDF_Weight_down diboson 1.04244050396 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PDF_Weight_up diboson 1.04876390112 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PDF_Weight_down diboson 1.04876131142 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PDF_Weight_up diboson 1.02624259584 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PDF_Weight_down diboson 1.02624247834 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PDF_Weight_up diboson 1.05623223141 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PDF_Weight_down diboson 1.05623231164 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PDF_Weight_up diboson 1.0210336386 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PDF_Weight_down diboson 1.02103338492 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_up diboson 1.02371684841 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_down diboson 1.02371676634 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PDF_Weight_up diboson 1.01568321176 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PDF_Weight_down diboson 1.01568303374 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PDF_Weight_up diboson 1.03775498515 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PDF_Weight_down diboson 1.03775489156 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PDF_Weight_up diboson 1.05969733954 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PDF_Weight_down diboson 1.05969726432 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PDF_Weight_up diboson 1.03731416581 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PDF_Weight_down diboson 1.03731416581 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PDF_Weight_up diboson 1.02345964294 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PDF_Weight_down diboson 1.02345964294 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PDF_Weight_up diboson 1.03146980566 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PDF_Weight_down diboson 1.03146980566 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PDF_Weight_up diboson 1.01247248606 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PDF_Weight_down diboson 1.0124726221 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PDF_Weight_up diboson 1.02274214092 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PDF_Weight_down diboson 1.02274214092 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PDF_Weight_up diboson 1.04048409297 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PDF_Weight_down diboson 1.04048391714 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PDF_Weight_up diboson 1.02748416579 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PDF_Weight_down diboson 1.02748424979 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PDF_Weight_up diboson 1.03259642753 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PDF_Weight_down diboson 1.03259642753 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PDF_Weight_up diboson 1.02134358343 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PDF_Weight_down diboson 1.02134358343 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PDF_Weight_up diboson 1.05061578701 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PDF_Weight_down diboson 1.05061578701 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PDF_Weight_up diboson 1.02722048618 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PDF_Weight_down diboson 1.02713488717 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PDF_Weight_up diboson 1.03146868201 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PDF_Weight_down diboson 1.03146868201 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PDF_Weight_up diboson 1.02334063932 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PDF_Weight_down diboson 1.02334070094 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PDF_Weight_up diboson 1.02020420669 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PDF_Weight_down diboson 1.02020427681 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PDF_Weight_up diboson 1.06933203771 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PDF_Weight_down diboson 1.06933196359 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PDF_Weight_up diboson 1.00798790714 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PDF_Weight_down diboson 1.00798790714 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PDF_Weight_up diboson 1.0044727574 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PDF_Weight_down diboson 1.00447266243 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PDF_Weight_up diboson 1.03304325509 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PDF_Weight_down diboson 1.03304315467 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PDF_Weight_up diboson 1.03581882607 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PDF_Weight_down diboson 1.03581862322 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PDF_Weight_up diboson 1.03059371174 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PDF_Weight_down diboson 1.03059363957 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PDF_Weight_up diboson 1.06847200182 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PDF_Weight_down diboson 1.04158673186 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PDF_Weight_up diboson 1.02662712353 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PDF_Weight_down diboson 1.02662695687 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PDF_Weight_up diboson 1.27620849045 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PDF_Weight_down diboson 1.2761957462 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PDF_Weight_up diboson 1.0198661326 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PDF_Weight_down diboson 1.0198664555 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PDF_Weight_up diboson 1.02559757823 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PDF_Weight_down diboson 1.02559757823 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PDF_Weight_up diboson 1.04533729859 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PDF_Weight_down diboson 1.04533729859 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 JES_up diboson 6.30867726944 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 JES_down diboson 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 JES_up diboson 1.17143511827 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 JES_down diboson 1.01011480977 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_up diboson 0.991054567584 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_down diboson 0.975070611932 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf JES_up diboson 0.723332660187 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf JES_down diboson 0.589836908468 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 JES_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 JES_down diboson 1.03955088942 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_up diboson 1.09274253642 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_down diboson 1.02654884618 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_up diboson 1.08977227325 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_down diboson 1.36389476025 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 JES_up diboson 1.71546857365 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 JES_down diboson 1.01664371681 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_up diboson 1.00775275181 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_down diboson 1.01158426405 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_up diboson 1.22280918937 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_down diboson 1.02926055236 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 JES_up diboson 1.74192534246 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 JES_down diboson 1.06219335975 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_up diboson 1.01421736405 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_down diboson 1.0089963551 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf JES_up diboson 1.59663062078 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf JES_down diboson 1.16034062419 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 JES_up diboson 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 JES_down diboson 1.35320877616 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf JES_up diboson 1.12931073959 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf JES_down diboson 1.24972958324 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_up diboson 1.10621552514 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_down diboson 1.15871364894 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_up diboson 1.06756270511 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_down diboson 1.0057351178 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 JES_up diboson 0.958650233527 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 JES_down diboson 0.891650315586 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 JES_up diboson 1.1007590886 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 JES_down diboson 1.05485298539 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 JES_up diboson 1.04947422834 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 JES_down diboson 1.02671795859 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf JES_up diboson 0.831196293534 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf JES_down diboson 0.76932783423 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_up diboson 1.03084530632 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_down diboson 1.01947916336 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf JES_up diboson 1.37866355545 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf JES_down diboson 1.08528856432 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 JES_up diboson 0.82175525762 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 JES_down diboson 0.82175525762 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 JES_up diboson 1.15895361133 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 JES_down diboson 1.00249225472 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf JES_up diboson 1.03100332449 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf JES_down diboson 1.01551212368 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_up diboson 1.05648496712 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_down diboson 1.08692323067 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 JES_up diboson 1.00064533524 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 JES_down diboson 1.13253167353 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf JES_up diboson 1.03652874973 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf JES_down diboson 1.12711797508 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf JES_up diboson 0.873291866219 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf JES_down diboson 0.779597119824 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf JES_up diboson 1.0399397025 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf JES_down diboson 1.03593457925 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_up diboson 1.06283485432 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_down diboson 1.24719590734 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_up diboson 0.998391201063 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_down diboson 0.95770591088 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 JES_up diboson 1.42302652441 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 JES_down diboson 1.10133495599 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 JES_up diboson 1.00921152986 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 JES_down diboson 1.06919503341 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_up diboson 1.03011794307 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_down diboson 1.02823937764 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf JES_up diboson 1.19763756234 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf JES_down diboson 1.18896868511 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_up diboson 0.996831100845 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_down diboson 0.97576857333 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 JES_up diboson 1.1230489273 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 JES_down diboson 1.13227768641 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_up diboson 1.10720200605 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_down diboson 1.14612662964 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf JES_up diboson 0.964242907672 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf JES_down diboson 0.919038390623 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 JES_up diboson 0.965565176366 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 JES_down diboson 0.830360603099 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf JES_up diboson 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf JES_down diboson 1.05467327147 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 JES_up diboson 1.21098624666 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 JES_down diboson 1.07974014004 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 JES_up diboson 0.999066041739 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 JES_down diboson 0.729629143999 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf JES_up diboson 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf JES_down diboson 0.001 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_up diboson 1.60424944281 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_down diboson 1.02763983086 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 JES_up diboson 1.22914149436 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 JES_down diboson 1.0659108935 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf JES_up diboson 1.28955827018 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf JES_down diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 JES_up diboson 1.0583348088 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 JES_down diboson 1.21507065279 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 JES_up diboson 1.2576868354 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 JES_down diboson 1.1763974348 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_up diboson 1.03075339381 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_down diboson 1.03286991995 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 JES_up diboson 1.46693747257 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 JES_down diboson 1.13627562642 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 JES_up diboson 1.1046890608 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 JES_down diboson 1.10016992537 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf JES_up diboson 1.03037469718 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf JES_down diboson 1.01597879501 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 JES_up diboson 2.70398678953 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 JES_down diboson 1.79393590111 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 JES_up diboson 1.01637696743 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 JES_down diboson 1.01397980605 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf JES_up diboson 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf JES_down diboson 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 JES_up diboson 1.2282055541 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 JES_down diboson 1.13924887735 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 JES_up diboson 1.10694286331 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 JES_down diboson 1.09017316276 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf JES_up diboson 0.95722444047 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf JES_down diboson 0.878082956601 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 JES_up diboson 0.987875217333 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 JES_down diboson 0.913400251631 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_up diboson 1.07430359636 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_down diboson 1.11730857992 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 JES_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 JES_down diboson 1.17389982916 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_up diboson 1.00811224116 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_down diboson 1.05243752946 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_up diboson 1.06400388891 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_down diboson 1.03739327033 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 JES_up diboson 1.00568318637 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 JES_down diboson 1.01176701889 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 JES_up diboson 1.06873283905 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 JES_down diboson 1.07276656077 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 JES_up diboson 1.00007333041 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 JES_down diboson 1.07173429081 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 JES_up diboson 1.10699297674 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 JES_down diboson 1.35301726966 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 JES_up diboson 1.05791695129 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 JES_down diboson 1.23684634495 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_up diboson 1.02032549041 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_down diboson 1.0901016748 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_down diboson 1.13156226266 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_up diboson 1.16925903388 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_down diboson 1.18171842105 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf JES_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf JES_down diboson 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf JES_up diboson 1.0594538412 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf JES_down diboson 1.01112439901 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 JES_up diboson 2.42729385904 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 JES_down diboson 2.42571346849 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 JES_up diboson 0.945964528082 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 JES_down diboson 0.931272613204 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_up diboson 1.36651268519 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_down diboson 1.05130945987 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_up diboson 1.04645846921 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_down diboson 1.0189906628 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_up diboson 0.994822199526 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_down diboson 0.168554222761 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf JES_up diboson 1.26618972804 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf JES_down diboson 1.01588930387 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf JES_up diboson 0.961287690318 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf JES_down diboson 0.916273398259 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf JES_up diboson 1.06826850011 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf JES_down diboson 1.40173375141 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_up diboson 1.16081716543 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_down diboson 1.09355728087 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 JES_up diboson 1.33876925922 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 JES_down diboson 1.08530051235 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf JES_up diboson 1.10207808528 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf JES_down diboson 1.06651355067 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf JES_up diboson 1.24083362483 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf JES_down diboson 1.14204639297 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf JES_up diboson 1.23313089183 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf JES_down diboson 1.03234347895 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 JES_up diboson 1.19458039396 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 JES_down diboson 1.07141539673 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf JES_up diboson 0.818845807835 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf JES_down diboson 0.707634502756 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 JES_up diboson 1.15598238753 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 JES_down diboson 1.60393944456 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 JES_up diboson 1.06958946183 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 JES_down diboson 1.00937285384 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 JES_up diboson 1.05953369138 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 JES_down diboson 1.04287567435 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf JES_up diboson 1.44693848914 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf JES_down diboson 1.04360462942 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 JES_up diboson 0.9577090199 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 JES_down diboson 0.663484960382 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf JES_up diboson 1.18932063215 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf JES_down diboson 1.15205273083 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf JES_up diboson 1.1489713691 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf JES_down diboson 1.0054480046 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf JES_up diboson 1.1377633079 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf JES_down diboson 1.02859086179 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf JES_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf JES_down diboson 1.0 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 JES_up diboson 1.02030545762 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 JES_down diboson 1.07736728351 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 JES_up diboson 0.996333518809 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 JES_down diboson 0.968143440588 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf JES_up diboson 1.34484760286 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf JES_down diboson 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 JES_up diboson 1.0252031801 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 JES_down diboson 1.02431071377 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf JES_up diboson 0.977283231102 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf JES_down diboson 0.957646855753 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf JES_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf JES_down diboson 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_up diboson 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_down diboson 1.02605333191 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 JES_up diboson 1.10602657916 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 JES_down diboson 1.34541924353 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 JES_up diboson 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 JES_down diboson 1.37112219501 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 JES_up diboson 0.980495134677 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 JES_down diboson 0.53411020123 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 JES_up diboson 0.989325310322 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 JES_down diboson 0.976931673622 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_up diboson 0.924581898706 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_down diboson 0.92451113189 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 JES_up diboson 1.03120846314 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 JES_down diboson 1.07816924071 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_up diboson 1.0413294277 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_down diboson 1.03216894269 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf JES_up diboson 1.0 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf JES_down diboson 1.95794668511 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_up diboson 1.04276354578 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_down diboson 1.02981636723 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 JES_up diboson 1.00955151252 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 JES_down diboson 1.76034684431 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 JES_up diboson 1.19425725625 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 JES_down diboson 1.0161832555 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf JES_up diboson 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf JES_down diboson 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_up diboson 1.01653901391 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_down diboson 1.04208629673 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf JES_up diboson 1.01893138638 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf JES_down diboson 1.02465166597 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf JES_up diboson 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf JES_down diboson 1.23535588849 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 JES_up diboson 1.09607507256 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 JES_down diboson 1.05853015857 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf JES_up diboson 1.0393929481 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf JES_down diboson 1.0 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_up diboson 1.25700400452 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_down diboson 1.21167589325 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 JES_up diboson 1.09148836389 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 JES_down diboson 1.00867888536 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf JES_up diboson 1.34356670131 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf JES_down diboson 1.12145013793 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_up diboson 0.999866553817 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_down diboson 0.959646417269 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_up diboson 1.02768045771 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_down diboson 1.02158763772 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf JES_up diboson 0.99836325548 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf JES_down diboson 0.838544598498 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 JES_up diboson 1.04479636222 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 JES_down diboson 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 JES_up diboson 1.09672211723 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 JES_down diboson 1.09431793861 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_up diboson 1.10780672058 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_down diboson 1.04304307215 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf JES_up diboson 1.14183514834 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf JES_down diboson 1.39755772469 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf JES_up diboson 1.04825852945 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf JES_down diboson 1.31674153656 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_up diboson 1.06422372817 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_down diboson 1.0340584025 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 JES_up diboson 1.01555430666 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 JES_down diboson 1.0070584312 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 JES_up diboson 1.04873932882 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 JES_down diboson 1.01170138208 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf JES_up diboson 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf JES_down diboson 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_up diboson 1.10947703363 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_down diboson 1.18060522736 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_up diboson 1.0705198609 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_down diboson 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 JES_up diboson 1.03479926946 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 JES_down diboson 1.01078370908 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_up diboson 1.11326015265 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_down diboson 1.21254123891 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 JES_up diboson 3.21898158782 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 JES_down diboson 1.03315044028 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 JES_up diboson 1.01076474442 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 JES_down diboson 1.00547746713 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 JES_up diboson 1.05184467479 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 JES_down diboson 1.01615101733 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_up diboson 1.2460826934 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_down diboson 1.11580236666 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_up diboson 1.35442664281 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_down diboson 1.22812503193 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 JES_up diboson 1.05711952704 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 JES_down diboson 1.03678239705 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_up diboson 1.11447758433 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_down diboson 1.17939119947 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_up diboson 1.96025798913 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_down diboson 1.09106006857 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 JES_up diboson 1.66725691379 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 JES_down diboson 1.18135536894 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_up diboson 0.979997970522 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_down diboson 0.871008333545 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 JES_up diboson 0.685191189645 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 JES_down diboson 0.666105256558 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 JES_up diboson 1.03403975288 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 JES_down diboson 1.01085220573 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 JES_up diboson 5.16449735951 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 JES_down diboson 1.13351318449 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 JES_up diboson 0.972894004901 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 JES_down diboson 0.588657322694 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf JES_up diboson 1.01573831315 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf JES_down diboson 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 JES_up diboson 1.35108662886 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 JES_down diboson 1.08655785068 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_up diboson 1.03894235875 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_down diboson 1.08168349225 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 JES_up diboson 1.01947891528 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 JES_down diboson 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 JES_up diboson 2.73189231746 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 JES_down diboson 1.68765321482 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_up diboson 0.977922155335 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_down diboson 0.669741305521 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_up diboson 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_down diboson 1.26055100392 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf JES_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf JES_down diboson 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 JES_up diboson 0.873094665822 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 JES_down diboson 0.708675621249 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 JES_up diboson 1.1530236085 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 JES_down diboson 1.5390222658 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_up diboson 1.1268304922 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_down diboson 1.13477076645 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 JES_up diboson 1.14645511077 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 JES_down diboson 1.07893794571 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 JES_up diboson 1.0007259985 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 JES_down diboson 1.00876946796 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 JES_up diboson 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 JES_down diboson 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 JES_up diboson 1.09737098503 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 JES_down diboson 1.14940420137 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 JES_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 JES_down diboson 1.45152446453 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf JES_up diboson 3.26407864379 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf JES_down diboson 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf JES_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf JES_down diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 JES_up diboson 0.931661924031 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 JES_down diboson 0.877582589565 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf JES_up diboson 0.901453555652 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf JES_down diboson 0.778857586216 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 JES_up diboson 1.05157853847 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 JES_down diboson 1.02023272144 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 JES_up diboson 1.1036250869 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 JES_down diboson 1.11755440272 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf JES_up diboson 1.11678658777 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf JES_down diboson 1.03463101645 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 JES_up diboson 1.19906904614 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 JES_down diboson 1.17096918355 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_up diboson 0.993585592419 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_down diboson 0.968151305769 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf JES_up diboson 1.05080854768 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf JES_down diboson 1.01024399086 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 metres_up diboson 1.11248419166 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 metres_down diboson 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 metres_up diboson 1.12289197384 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 metres_down diboson 1.11855481042 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 metres_up diboson 0.995764599603 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 metres_down diboson 0.994883376886 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf metres_up diboson 1.01419427674 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf metres_down diboson 1.01009912277 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 metres_up diboson 1.01126645273 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 metres_down diboson 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_up diboson 1.02262043253 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_down diboson 1.0012194495 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_up diboson 0.979214206652 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_down diboson 0.800028500095 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 metres_up diboson 1.06766317785 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 metres_down diboson 1.02777460386 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf metres_up diboson 1.00045051137 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf metres_down diboson 1.012243385 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_up diboson 1.00392264503 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_down diboson 1.00145791794 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 metres_up diboson 1.01893724295 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 metres_down diboson 1.03298909544 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_up diboson 1.00383881395 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_down diboson 1.0 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf metres_up diboson 1.15219060964 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf metres_down diboson 1.09616292489 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 metres_up diboson 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 metres_down diboson 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf metres_up diboson 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf metres_down diboson 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_up diboson 1.10621552514 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_down diboson 1.05780848972 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 metres_up diboson 1.03066879444 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 metres_down diboson 1.01479633356 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 metres_up diboson 1.09491869858 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 metres_down diboson 1.14724504881 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 metres_up diboson 1.01388301798 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 metres_down diboson 1.0101760586 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 metres_up diboson 1.03043530243 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 metres_down diboson 1.00896942527 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf metres_up diboson 5.66156202849 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf metres_down diboson 1.05893137766 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 metres_up diboson 1.01457063888 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 metres_down diboson 1.00667342018 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf metres_up diboson 1.30905557575 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf metres_down diboson 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 metres_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 metres_down diboson 1.17824474238 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 metres_up diboson 1.00566274169 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 metres_down diboson 1.02710639815 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf metres_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf metres_down diboson 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_up diboson 0.999097356809 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_down diboson 0.974490134796 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 metres_up diboson 1.01127404356 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 metres_down diboson 1.01124827938 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf metres_up diboson 1.03652874973 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf metres_down diboson 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf metres_up diboson 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf metres_down diboson 1.0 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf metres_up diboson 1.02882296714 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf metres_down diboson 1.02109007822 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_up diboson 1.00329529962 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_down diboson 1.01661468215 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 metres_up diboson 0.993797125438 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 metres_down diboson 0.989746593725 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 metres_up diboson 1.25343259828 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 metres_down diboson 1.01727533469 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 metres_up diboson 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 metres_down diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 metres_up diboson 1.00302801319 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 metres_down diboson 1.01441766668 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf metres_up diboson 1.08358309709 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf metres_down diboson 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_up diboson 1.02756778944 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_down diboson 1.00996135307 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 metres_up diboson 1.05568552898 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 metres_down diboson 1.02206070767 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf metres_up diboson 1.00401834125 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf metres_down diboson 1.00930308527 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf metres_up diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf metres_down diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 metres_up diboson 0.967207907435 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 metres_down diboson 0.944348749739 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf metres_up diboson 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf metres_down diboson 1.05467327147 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 metres_up diboson 1.07141502304 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 metres_down diboson 1.01821103462 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 metres_up diboson 0.99955619341 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 metres_down diboson 0.727341499349 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf metres_up diboson 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf metres_down diboson 0.001 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 metres_up diboson 1.1085900233 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 metres_down diboson 1.04144686272 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 metres_up diboson 1.02253715038 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 metres_down diboson 1.03652690933 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf metres_up diboson 1.28955827018 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf metres_down diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 metres_up diboson 1.01909242539 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 metres_down diboson 1.0083864536 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 metres_up diboson 1.07006245971 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 metres_down diboson 1.03253121014 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_up diboson 0.976310770251 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_down diboson 0.899738401769 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 metres_up diboson 1.02546296054 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 metres_down diboson 1.03122792627 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 metres_up diboson 0.999498365484 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 metres_down diboson 0.978321342619 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf metres_up diboson 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf metres_down diboson 1.02332712248 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 metres_up diboson 1.03509642223 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 metres_down diboson 1.00412979944 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 metres_up diboson 1.00163292474 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 metres_down diboson 1.0 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf metres_up diboson 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf metres_down diboson 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 metres_up diboson 0.990710555898 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 metres_down diboson 0.922171463562 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 metres_up diboson 1.00061047086 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 metres_down diboson 1.00025872182 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf metres_up diboson 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf metres_down diboson 1.01591641999 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 metres_up diboson 1.0179120929 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 metres_down diboson 1.01777701242 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_up diboson 1.04986211924 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_down diboson 1.02420528783 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 metres_up diboson 1.0561301258 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 metres_down diboson 1.0 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_up diboson 0.991078198573 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_down diboson 0.960609323481 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_up diboson 0.978734326784 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_down diboson 0.975138570996 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 metres_up diboson 1.01997809663 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 metres_down diboson 1.0046629843 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 metres_up diboson 1.07305254665 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 metres_down diboson 1.05736555159 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 metres_up diboson 1.01242664618 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 metres_down diboson 1.00503683325 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 metres_up diboson 0.982191006322 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 metres_down diboson 0.745691027548 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 metres_up diboson 1.00851753741 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 metres_down diboson 1.02887786735 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_up diboson 0.999857106289 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_down diboson 0.994178536888 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_down diboson 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 metres_up diboson 1.00390228614 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 metres_down diboson 1.00756191505 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf metres_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf metres_down diboson 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf metres_up diboson 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf metres_down diboson 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 metres_up diboson 2.46614957002 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 metres_down diboson 1.02582939697 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 metres_up diboson 0.996636382688 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 metres_down diboson 0.943212779655 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_up diboson 0.994222624261 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_down diboson 0.990797568139 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_up diboson 1.07626081404 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_down diboson 1.00703203775 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_up diboson 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_down diboson 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf metres_up diboson 1.17295599511 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf metres_down diboson 1.03670740971 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf metres_up diboson 1.01410120158 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf metres_down diboson 1.07236450312 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf metres_up diboson 1.0 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf metres_down diboson 1.40173375141 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_up diboson 1.01394714651 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_down diboson 1.02574856944 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 metres_up diboson 1.13362302236 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 metres_down diboson 1.05967250872 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf metres_up diboson 1.00228838466 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf metres_down diboson 1.03507132948 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf metres_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf metres_down diboson 1.00996746811 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf metres_up diboson 1.0 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf metres_down diboson 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 metres_up diboson 1.06711059135 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 metres_down diboson 1.07916223295 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf metres_up diboson 1.0 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf metres_down diboson 1.0151396019 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 metres_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 metres_down diboson 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 metres_up diboson 0.995773585952 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 metres_down diboson 0.98198912125 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 metres_up diboson 1.01360496209 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 metres_down diboson 1.02719664167 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf metres_up diboson 1.27837009445 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf metres_down diboson 1.11672203965 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 metres_up diboson 1.02958986845 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 metres_down diboson 1.2409554484 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf metres_up diboson 0.997375681721 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf metres_down diboson 0.905892140135 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf metres_up diboson 1.00892867421 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf metres_down diboson 1.02296517524 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf metres_up diboson 1.02859086179 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf metres_down diboson 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf metres_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf metres_down diboson 1.0 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 metres_up diboson 1.03201310024 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 metres_down diboson 1.01057990485 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 metres_up diboson 1.02494967678 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 metres_down diboson 1.18337334845 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf metres_up diboson 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf metres_down diboson 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 metres_up diboson 1.00291953578 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 metres_down diboson 1.01228754074 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf metres_up diboson 1.05902388642 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf metres_down diboson 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf metres_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf metres_down diboson 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_up diboson 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_down diboson 1.0 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 metres_up diboson 0.994806399621 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 metres_down diboson 0.858516935773 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 metres_up diboson 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 metres_down diboson 1.0 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 metres_up diboson 0.99833821755 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 metres_down diboson 0.984996343391 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 metres_up diboson 1.01715674036 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 metres_down diboson 1.03202854491 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 metres_up diboson 0.998580310838 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 metres_down diboson 0.937798277511 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 metres_up diboson 0.974698463725 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 metres_down diboson 0.958472946433 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 metres_up diboson 1.01762035814 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 metres_down diboson 1.00572293743 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf metres_up diboson 1.0 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf metres_down diboson 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 metres_up diboson 1.0118500917 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 metres_down diboson 1.00515602994 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 metres_up diboson 0.995563430856 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 metres_down diboson 0.246861731253 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 metres_up diboson 1.0465397815 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 metres_down diboson 1.03916148294 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf metres_up diboson 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf metres_down diboson 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_up diboson 0.983916340305 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_down diboson 0.983661263522 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf metres_up diboson 1.04999040742 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf metres_down diboson 1.06064071193 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf metres_up diboson 0.923553379395 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf metres_down diboson 0.841090732116 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 metres_up diboson 1.01641963864 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 metres_down diboson 1.13155877353 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf metres_up diboson 1.0 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf metres_down diboson 1.0 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_up diboson 1.28670872121 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_down diboson 1.01653073881 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 metres_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 metres_down diboson 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf metres_up diboson 1.12381423076 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf metres_down diboson 1.01639530981 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 metres_up diboson 1.00123817886 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 metres_down diboson 1.01535554369 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_up diboson 1.00841776856 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_down diboson 1.01902529255 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf metres_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf metres_down diboson 1.07344554184 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 metres_up diboson 1.02758652584 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 metres_down diboson 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 metres_up diboson 1.01823372469 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 metres_down diboson 1.08282264452 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_up diboson 1.05792121596 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_down diboson 1.09966129825 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf metres_up diboson 1.00944043724 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf metres_down diboson 1.02985385587 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf metres_up diboson 1.01226646125 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf metres_down diboson 1.02790627901 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 metres_up diboson 1.01164880859 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 metres_down diboson 1.04995254125 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 metres_up diboson 1.0795718667 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 metres_down diboson 1.0565541398 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 metres_up diboson 1.07765855165 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 metres_down diboson 1.0167365109 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf metres_up diboson 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf metres_down diboson 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 metres_up diboson 1.07360635105 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 metres_down diboson 1.06014266887 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_down diboson 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 metres_up diboson 1.04001287444 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 metres_down diboson 1.00897150524 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_up diboson 0.96270601718 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_down diboson 0.943596332571 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 metres_up diboson 1.0946343278 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 metres_down diboson 1.10462354917 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 metres_up diboson 1.01266219904 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 metres_down diboson 1.00524061858 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 metres_up diboson 1.021620807 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 metres_down diboson 1.02593583526 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_up diboson 1.18860967578 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_down diboson 1.04181263582 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_up diboson 1.15612874399 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_down diboson 1.07614169344 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 metres_up diboson 1.02904481896 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 metres_down diboson 1.0203854273 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 metres_up diboson 1.07269920311 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 metres_down diboson 1.00471997987 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_up diboson 1.16561529041 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_down diboson 1.00471577121 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 metres_up diboson 0.992927865917 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 metres_down diboson 0.852894315704 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 metres_up diboson 0.932794845125 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 metres_down diboson 0.926601258276 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 metres_up diboson 1.10736071761 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 metres_down diboson 1.38539683759 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 metres_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 metres_down diboson 1.01085220573 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 metres_up diboson 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 metres_down diboson 1.36090583626 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 metres_up diboson 1.02619647166 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 metres_down diboson 1.001346871 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf metres_up diboson 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf metres_down diboson 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 metres_up diboson 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 metres_down diboson 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 metres_up diboson 1.09562018653 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 metres_down diboson 1.03005572432 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 metres_up diboson 1.01947891528 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 metres_down diboson 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 metres_up diboson 1.02493282546 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 metres_down diboson 1.00648231279 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 metres_up diboson 1.01278930899 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 metres_down diboson 1.3053303118 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_up diboson 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_down diboson 1.73944901708 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf metres_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf metres_down diboson 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 metres_up diboson 1.09819215571 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 metres_down diboson 1.03235293103 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 metres_up diboson 1.07074053373 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 metres_down diboson 1.16555470722 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 metres_up diboson 0.989854788695 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 metres_down diboson 0.948166747691 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 metres_up diboson 1.07284692127 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 metres_down diboson 1.01264324715 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 metres_up diboson 1.01099047009 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 metres_down diboson 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 metres_up diboson 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 metres_down diboson 1.55701606302 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 metres_up diboson 0.997142434656 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 metres_down diboson 0.995737704067 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 metres_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 metres_down diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf metres_up diboson 1.02873315688 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf metres_down diboson 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf metres_up diboson 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf metres_down diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 metres_up diboson 1.00831704981 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 metres_down diboson 1.24579393041 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf metres_up diboson 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf metres_down diboson 1.02598701714 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 metres_up diboson 1.08481138808 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 metres_down diboson 1.01383048895 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 metres_up diboson 1.00758695323 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 metres_down diboson 1.00542275209 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf metres_up diboson 1.03635831729 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf metres_down diboson 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 metres_up diboson 1.1603012953 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 metres_down diboson 1.05076890985 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_up diboson 1.19379416806 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_down diboson 1.04834490371 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf metres_up diboson 1.01477371518 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf metres_down diboson 1.01976978237 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ivfunc_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ivfunc_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_up diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_down diboson 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ivfunc_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_down diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_up diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ivfunc_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_up diboson 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_down diboson 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ivfunc_up diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ivfunc_down diboson 1.0 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_up diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ivfunc_up diboson 1.00255798026 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ivfunc_down diboson 1.0025581897 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_up diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_down diboson 1.0 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ivfunc_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ivfunc_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ivfunc_up diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ivfunc_down diboson 1.0 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_up diboson 1.00061931901 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_down diboson 1.00061931901 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ivfunc_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ivfunc_up diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ivfunc_down diboson 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ivfunc_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ivfunc_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ivfunc_down diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_up diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_down diboson 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ivfunc_up diboson 1.04975948342 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ivfunc_down diboson 1.04975948342 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ivfunc_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_up diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_down diboson 1.0 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ivfunc_up diboson 1.0043873516 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ivfunc_down diboson 1.00438723738 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ivfunc_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_up diboson 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_down diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ivfunc_up diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ivfunc_down diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ivfunc_up diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ivfunc_down diboson 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ivfunc_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ivfunc_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_up diboson 1.05117693177 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_down diboson 1.05117686783 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ivfunc_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ivfunc_up diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ivfunc_down diboson 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ivfunc_up diboson 1.03840832816 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ivfunc_down diboson 1.0384084362 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ivfunc_up diboson 1.00010971558 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ivfunc_down diboson 1.00010971558 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ivfunc_down diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ivfunc_up diboson 1.05402947158 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ivfunc_down diboson 1.05402947158 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ivfunc_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ivfunc_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ivfunc_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ivfunc_up diboson 1.00498264209 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ivfunc_down diboson 1.00498270599 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ivfunc_down diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ivfunc_up diboson 1.00088575843 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ivfunc_down diboson 1.00088586169 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ivfunc_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ivfunc_up diboson 1.05351020549 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ivfunc_down diboson 1.05351010693 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ivfunc_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ivfunc_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_up diboson 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_down diboson 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ivfunc_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_down diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ivfunc_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ivfunc_down diboson 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_down diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_up diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ivfunc_up diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ivfunc_down diboson 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ivfunc_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ivfunc_up diboson 1.00370226326 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ivfunc_down diboson 1.00370226326 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ivfunc_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ivfunc_up diboson 1.0033673596 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ivfunc_down diboson 1.00336743018 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ivfunc_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ivfunc_up diboson 1.00143795079 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ivfunc_down diboson 1.00143787078 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ivfunc_up diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ivfunc_down diboson 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ivfunc_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ivfunc_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ivfunc_up diboson 1.00186145119 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ivfunc_down diboson 1.00186145119 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ivfunc_up diboson 1.03432785424 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ivfunc_down diboson 1.03432785424 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ivfunc_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ivfunc_up diboson 1.00081702474 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ivfunc_down diboson 1.00081711175 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ivfunc_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ivfunc_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ivfunc_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ivfunc_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ivfunc_up diboson 1.00778946032 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ivfunc_down diboson 1.00778946032 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ivfunc_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ivfunc_up diboson 1.00056355353 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ivfunc_down diboson 1.00056355353 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ivfunc_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_up diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_down diboson 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ivfunc_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_up diboson 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_down diboson 1.0 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_up diboson 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_down diboson 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ivfunc_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ivfunc_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ivfunc_down diboson 1 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ivfunc_down diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_up diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ivfunc_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ivfunc_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_up diboson 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_down diboson 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ivfunc_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ivfunc_down diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_up diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ivfunc_up diboson 1.04155705174 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ivfunc_down diboson 1.04155714815 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ivfunc_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_up diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_down diboson 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ivfunc_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ivfunc_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ivfunc_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ivfunc_down diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_up diboson 1.05225055679 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_down diboson 1.05225063397 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_down diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_up diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ivfunc_up diboson 1.0 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ivfunc_down diboson 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ivfunc_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ivfunc_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_up diboson 1.05212399464 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_down diboson 1.05212406863 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_up diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_up diboson 1.00727174713 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_down diboson 1.00727162028 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ivfunc_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ivfunc_up diboson 1.04771096885 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ivfunc_down diboson 1.04771096885 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ivfunc_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_up diboson 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_down diboson 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_down diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ivfunc_up diboson 1.04940141859 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ivfunc_down diboson 1.04940141859 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_up diboson 1.00213550777 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_down diboson 1.00213533194 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ivfunc_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ivfunc_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_up diboson 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_down diboson 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ivfunc_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ivfunc_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ivfunc_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ivfunc_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ivfunc_up diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ivfunc_down diboson 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ivfunc_up diboson 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ivfunc_down diboson 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ivfunc_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ivfunc_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ivfunc_up diboson 1.00670689941 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ivfunc_down diboson 1.00670720136 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ivfunc_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ivfunc_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ivfunc_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ivfunc_down diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_up diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ivfunc_up diboson 1.01613996104 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ivfunc_down diboson 1.01613996104 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_e_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_e_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_down diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_up diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_e_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_e_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_e_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_e_down diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_up diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_e_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_e_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_e_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_e_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_e_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_e_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_e_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_e_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_e_down diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_e_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_e_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_e_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_e_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_e_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_e_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_e_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_e_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_e_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_e_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_e_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_e_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_e_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_e_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_e_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_e_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_e_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_e_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_e_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_e_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_e_down diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_e_up diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_e_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_e_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_e_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_e_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_e_down diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_e_down diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_e_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_e_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_e_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_e_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_down diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_e_down diboson 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_up diboson 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_down diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_up diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_e_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_e_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_e_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_e_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_e_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_e_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_e_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_e_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_e_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_e_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_e_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_e_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_e_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_e_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_e_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_e_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_e_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_e_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_e_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_e_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_e_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_e_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_e_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_e_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_e_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_e_down diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_up diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_e_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_e_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_e_down diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_up diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_e_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_e_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_e_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_e_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_e_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_e_down diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_e_up diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_down diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_up diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_e_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_e_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_e_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_e_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_e_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_e_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_e_down diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_up diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_e_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_e_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_e_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_e_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_e_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_e_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_down diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_e_up diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_e_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_e_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_e_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_e_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_e_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_e_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_e_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_e_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_e_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_e_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_e_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_e_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_e_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_e_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_e_down diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_up diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_e_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_e_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 err_mu_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 err_mu_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_down diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_up diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 err_mu_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf err_mu_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 err_mu_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 err_mu_down diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_up diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf err_mu_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf err_mu_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 err_mu_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 err_mu_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf err_mu_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf err_mu_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 err_mu_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 err_mu_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf err_mu_down diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 err_mu_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 err_mu_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 err_mu_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 err_mu_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 err_mu_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 err_mu_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf err_mu_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 err_mu_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf err_mu_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf err_mu_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf err_mu_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf err_mu_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 err_mu_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf err_mu_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 err_mu_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf err_mu_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 err_mu_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 err_mu_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 err_mu_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 err_mu_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 err_mu_down diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf err_mu_up diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf err_mu_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 err_mu_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf err_mu_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 err_mu_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 err_mu_down diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 err_mu_down diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 err_mu_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 err_mu_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 err_mu_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 err_mu_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_down diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf err_mu_down diboson 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_up diboson 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_down diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_up diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 err_mu_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf err_mu_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf err_mu_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 err_mu_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf err_mu_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 err_mu_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 err_mu_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 err_mu_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf err_mu_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf err_mu_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf err_mu_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf err_mu_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf err_mu_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf err_mu_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 err_mu_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf err_mu_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 err_mu_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 err_mu_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 err_mu_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 err_mu_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 err_mu_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 err_mu_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 err_mu_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 err_mu_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf err_mu_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf err_mu_down diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_up diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf err_mu_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 err_mu_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 err_mu_down diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_up diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf err_mu_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf err_mu_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 err_mu_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 err_mu_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf err_mu_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf err_mu_down diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 err_mu_up diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_down diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_up diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 err_mu_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 err_mu_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 err_mu_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 err_mu_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 err_mu_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 err_mu_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 err_mu_down diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_up diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 err_mu_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 err_mu_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 err_mu_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 err_mu_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 err_mu_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 err_mu_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_down diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 err_mu_up diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 err_mu_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 err_mu_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 err_mu_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 err_mu_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 err_mu_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf err_mu_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 err_mu_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 err_mu_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf err_mu_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf err_mu_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 err_mu_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 err_mu_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 err_mu_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 err_mu_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 err_mu_down diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_up diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf err_mu_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf err_mu_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_tau_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_tau_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_down diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_up diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_tau_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_tau_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_tau_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_tau_down diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_up diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_tau_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_tau_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_tau_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_tau_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_tau_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_tau_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_tau_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_tau_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_tau_down diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_tau_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_tau_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_tau_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_tau_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_tau_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_tau_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_tau_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_tau_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_tau_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_tau_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_tau_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_tau_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_tau_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_tau_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_tau_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_tau_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_tau_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_tau_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_tau_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_tau_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_tau_down diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_tau_up diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_tau_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_tau_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_tau_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_tau_down diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_tau_down diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_tau_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_tau_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_tau_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_tau_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_down diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_down diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_up diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_tau_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_tau_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_tau_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_tau_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_tau_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_tau_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_tau_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_tau_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_tau_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_tau_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_tau_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_tau_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_tau_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_tau_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_tau_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_tau_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_tau_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_tau_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_tau_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_tau_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_tau_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_tau_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_tau_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_tau_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_tau_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_tau_down diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_up diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_tau_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_tau_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_tau_down diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_up diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_tau_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_tau_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_tau_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_tau_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_tau_down diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_tau_up diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_down diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_up diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_tau_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_tau_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_tau_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_tau_down diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_up diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_tau_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_tau_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_tau_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_tau_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_tau_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_down diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_tau_up diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_tau_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_tau_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_tau_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_tau_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_tau_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_tau_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_tau_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_tau_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_tau_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_tau_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_tau_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_tau_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_tau_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_tau_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_tau_down diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_up diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_tau_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_tau_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_wtag_up diboson 1.07574255157 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_wtag_down diboson 1.07574255157 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_wtag_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_wtag_up diboson 1.00560247931 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_wtag_down diboson 1.00560227569 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_down diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_up diboson 1.00235599725 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_down diboson 1.00235607691 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_wtag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_wtag_down diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_up diboson 1.0 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_down diboson 1.0 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_wtag_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_wtag_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_wtag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_wtag_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_wtag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_wtag_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_wtag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_wtag_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_wtag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_wtag_down diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_wtag_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_wtag_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_wtag_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_wtag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_wtag_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_wtag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_wtag_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_wtag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_wtag_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_wtag_up diboson 1.08252438184 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_wtag_down diboson 1.08252438184 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_wtag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_wtag_up diboson 1.09762696025 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_wtag_down diboson 1.09762686489 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_wtag_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_wtag_up diboson 1.00143604788 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_wtag_down diboson 1.00143604788 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_wtag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_wtag_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_wtag_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_wtag_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_wtag_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_wtag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_wtag_down diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_wtag_up diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_wtag_up diboson 1.09252291276 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_wtag_down diboson 1.09252281036 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_wtag_up diboson 1.04012289631 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_wtag_down diboson 1.04012309499 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_wtag_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_wtag_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_wtag_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_wtag_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_wtag_down diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_wtag_down diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_wtag_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_wtag_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_wtag_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_wtag_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_wtag_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_wtag_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_wtag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_wtag_up diboson 1.08287633771 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_wtag_down diboson 1.08287621349 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_wtag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_down diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_wtag_up diboson 1.08791515588 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_wtag_down diboson 1.08791515588 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_wtag_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_wtag_down diboson 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_up diboson 1.0 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_down diboson 1.0 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_up diboson 1.00028082417 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_down diboson 1.00028082417 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_wtag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_wtag_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_wtag_up diboson 1.09823101254 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_wtag_down diboson 1.0982308309 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_wtag_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_wtag_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_wtag_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_wtag_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_wtag_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_wtag_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_wtag_up diboson 1.06036380821 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_wtag_down diboson 1.06036390588 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_wtag_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_wtag_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_wtag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_wtag_up diboson 1.08120944948 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_wtag_down diboson 1.08120975203 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_wtag_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_wtag_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_wtag_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_wtag_up diboson 1.0378488446 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_wtag_down diboson 1.0378488446 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_wtag_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_wtag_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_wtag_up diboson 1.08978176949 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_wtag_down diboson 1.0897815584 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_wtag_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_wtag_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_wtag_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_wtag_up diboson 1.0831855572 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_wtag_down diboson 1.0831855572 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_wtag_up diboson 1.16685266832 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_wtag_down diboson 1.16685266832 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_wtag_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_wtag_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_wtag_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_wtag_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_wtag_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_wtag_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_wtag_up diboson 1.08220645162 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_wtag_down diboson 1.08220636671 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_up diboson 1.04185653498 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_down diboson 1.04185653498 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_wtag_up diboson 1.06248565914 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_wtag_down diboson 1.06248549542 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_wtag_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_wtag_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_wtag_down diboson 1 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_wtag_up diboson 1 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_wtag_down diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_up diboson 1.00298595973 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_down diboson 1.00298595973 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_down diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_up diboson 1.01562467348 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_down diboson 1.01562460474 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_wtag_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_wtag_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_wtag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_wtag_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_wtag_up diboson 1.09253010212 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_wtag_down diboson 1.09252977168 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_wtag_up diboson 1.03233691797 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_wtag_down diboson 1.03233691797 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_up diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_up diboson 1.1881734092 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_down diboson 1.18817313635 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_down diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_up diboson 1.00081977997 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_down diboson 1.00081986059 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_wtag_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_down diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_up diboson 1.00027318902 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_down diboson 1.00027307152 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_wtag_up diboson 1.0493200025 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_wtag_down diboson 1.0493200025 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_wtag_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_wtag_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_down diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_wtag_up diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_wtag_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_up diboson 1.19164636338 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_down diboson 1.19164653139 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_wtag_up diboson 1.06183453671 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_wtag_down diboson 1.06183453671 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_wtag_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_wtag_up diboson 1.11813101238 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_wtag_down diboson 1.11813101238 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_wtag_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_wtag_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_wtag_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_wtag_up diboson 1.10823667101 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_wtag_down diboson 1.10823659689 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_wtag_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_wtag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_wtag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_wtag_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_wtag_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_wtag_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_wtag_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_wtag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_wtag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_wtag_up diboson 1.07537267255 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_wtag_down diboson 1.0753722174 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_down diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_up diboson 1.00218307048 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_down diboson 1.00218307048 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_wtag_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_wtag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_toptag_up diboson 1.07798847015 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_toptag_down diboson 1.07798847015 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_toptag_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_toptag_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_down diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_up diboson 1.00000390303 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_down diboson 1.00000398269 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_toptag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_toptag_down diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_up diboson 1.00027887565 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_down diboson 1.00027874808 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_toptag_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_toptag_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_up diboson 1.07553535494 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_down diboson 1.0755352004 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_up diboson 1.07538725982 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_down diboson 1.07538725982 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_toptag_up diboson 1.09764497182 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_toptag_down diboson 1.09764514368 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_toptag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_toptag_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_toptag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_toptag_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_toptag_up diboson 1.06922597572 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_toptag_down diboson 1.06922597572 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_toptag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_toptag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_toptag_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_toptag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_toptag_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_toptag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_toptag_down diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_toptag_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_toptag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_toptag_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_toptag_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_toptag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_toptag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_toptag_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_toptag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_toptag_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_toptag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_toptag_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_toptag_up diboson 1.06577180173 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_toptag_down diboson 1.06577180173 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_toptag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_toptag_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_up diboson 1.06617598614 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_down diboson 1.06617608332 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_toptag_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_toptag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_toptag_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_toptag_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_toptag_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_toptag_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_toptag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_toptag_down diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_toptag_up diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_toptag_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_up diboson 1.06798736585 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_down diboson 1.06798749312 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_toptag_up diboson 1.08245460969 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_toptag_down diboson 1.08245460969 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_toptag_up diboson 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_toptag_down diboson 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_toptag_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_toptag_up diboson 1.06385552276 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_toptag_down diboson 1.06385561316 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_toptag_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_toptag_down diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_toptag_down diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_toptag_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_toptag_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_toptag_up diboson 1.07819211639 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_toptag_down diboson 1.07819202654 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_toptag_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_toptag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_toptag_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_toptag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_toptag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_up diboson 1.05026285573 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_down diboson 1.05026296252 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_toptag_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_toptag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_up diboson 1.07824036256 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_down diboson 1.07824043179 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_down diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_up diboson 1.04815943384 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_down diboson 1.04815955628 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_toptag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_toptag_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_toptag_up diboson 1.07131349396 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_toptag_down diboson 1.07131358652 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_up diboson 1.0 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_down diboson 1.0 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_up diboson 1.00310075268 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_down diboson 1.00310063921 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_toptag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_toptag_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_toptag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_toptag_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_toptag_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_toptag_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_toptag_up diboson 1.06579020312 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_toptag_down diboson 1.06579008834 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_toptag_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_toptag_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_toptag_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_toptag_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_toptag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_toptag_up diboson 1.07650981843 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_toptag_down diboson 1.07650968309 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_toptag_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_toptag_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_toptag_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_toptag_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_toptag_up diboson 1.06252166588 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_toptag_down diboson 1.06252144752 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_toptag_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_toptag_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_toptag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_toptag_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_toptag_up diboson 1.05528773284 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_toptag_down diboson 1.05528766389 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_toptag_up diboson 1.07955019637 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_toptag_down diboson 1.07955027147 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_toptag_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_up diboson 1.05279147791 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_down diboson 1.05271526329 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_toptag_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_toptag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_toptag_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_toptag_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_toptag_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_toptag_up diboson 1.07027688202 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_toptag_down diboson 1.07027688202 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_toptag_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_up diboson 1.05348691236 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_down diboson 1.05348691236 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_toptag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_toptag_up diboson 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_toptag_down diboson 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_up diboson 1.07625168491 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_down diboson 1.07625178294 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_up diboson 1.07141867576 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_down diboson 1.07141876643 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_toptag_up diboson 1.05864708012 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_toptag_down diboson 1.05864691509 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_toptag_up diboson 1.07693994085 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_toptag_down diboson 1.07694014161 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_toptag_up diboson 1.0847560044 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_toptag_down diboson 1.08475582959 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_up diboson 1.01127924241 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_down diboson 1.01127935102 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_toptag_up diboson 1.07065189532 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_toptag_down diboson 1.07065210119 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_toptag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_down diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_up diboson 1.0028922869 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_down diboson 1.00289221816 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_toptag_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_toptag_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_toptag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_toptag_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_toptag_up diboson 1.07656213996 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_toptag_down diboson 1.07656219926 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_toptag_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_toptag_up diboson 1.04318930764 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_toptag_down diboson 1.04318930764 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_up diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_up diboson 1.07412029173 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_down diboson 1.07412029173 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_up diboson 1.00452858097 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_down diboson 1.00452841974 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_toptag_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_toptag_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_toptag_up diboson 1.06762643802 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_toptag_down diboson 1.06762643802 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_toptag_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_up diboson 1.06351728775 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_down diboson 1.06351721526 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_down diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_up diboson 1.00690093085 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_down diboson 1.00690081335 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_up diboson 1.07550089837 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_down diboson 1.07550105883 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_toptag_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_toptag_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_toptag_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_up diboson 1.06025128303 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_down diboson 1.06025098213 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_up diboson 1.04997755721 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_down diboson 1.04997755721 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_toptag_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_up diboson 1.05097342881 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_down diboson 1.05097363287 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_toptag_up diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_toptag_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_up diboson 1.04717019053 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_down diboson 1.04717000444 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_toptag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_toptag_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_toptag_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_toptag_up diboson 1.05504655836 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_toptag_down diboson 1.05504661997 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_toptag_up diboson 1.06229264016 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_toptag_down diboson 1.06229264016 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_toptag_up diboson 1.05466056082 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_toptag_down diboson 1.05466064199 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_toptag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_up diboson 1.06211042293 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_down diboson 1.06211012169 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_toptag_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_toptag_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_toptag_up diboson 1.08561532494 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_toptag_down diboson 1.08561518061 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_toptag_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_toptag_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_toptag_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_down diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_up diboson 1.00109620723 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_down diboson 1.00109609327 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_toptag_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_toptag_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_restop_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_restop_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_restop_up diboson 1.09357828562 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_restop_down diboson 1.09046740605 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restop_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restop_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_restop_up diboson 1.06890536914 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_restop_down diboson 1.06923111483 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_restop_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_restop_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restop_up diboson 1.07785982589 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restop_down diboson 1.07801610588 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restop_up diboson 1.11602071761 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restop_down diboson 1.1162044787 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_restop_up diboson 1.06811684741 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_restop_down diboson 1.06819100303 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restop_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restop_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restop_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restop_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_restop_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_restop_down diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restop_up diboson 1.30462942516 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restop_down diboson 1.30480713503 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_restop_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_restop_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restop_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restop_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_restop_up diboson 1.11127676207 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_restop_down diboson 1.1114501862 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restop_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restop_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restop_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restop_down diboson 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_restop_up diboson 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_restop_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_restop_up diboson 1.16600589498 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_restop_down diboson 1.16649132534 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_restop_up diboson 1.08544453188 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_restop_down diboson 1.08577090617 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_restop_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_restop_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restop_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restop_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_restop_up diboson 1.07406852064 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_restop_down diboson 1.07417755356 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_restop_up diboson 1.10333847316 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_restop_down diboson 1.1035474852 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_restop_up diboson 1.14971863314 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_restop_down diboson 1.14982555781 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_restop_up diboson 1.09146240935 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_restop_down diboson 1.0915960906 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restop_up diboson 1.05796325077 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restop_down diboson 1.05823166995 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_restop_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_restop_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_restop_up diboson 1.14507789187 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_restop_down diboson 1.14521932643 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_restop_up diboson 1.07697488789 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_restop_down diboson 1.07697707385 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_restop_up diboson 1.21933639419 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_restop_down diboson 1.21955300774 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restop_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restop_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restop_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restop_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_restop_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_restop_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_restop_up diboson 1.07492922791 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_restop_down diboson 1.0753898698 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restop_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restop_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_restop_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_restop_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restop_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restop_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_restop_up diboson 1.12190968895 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_restop_down diboson 1.12201693805 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restop_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restop_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_restop_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_restop_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_restop_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_restop_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_restop_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_restop_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_restop_up diboson 1.08520439427 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_restop_down diboson 1.08413366944 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_restop_up diboson 1.05898326904 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_restop_down diboson 1.05913393824 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_restop_up diboson 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_restop_down diboson 0.001 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restop_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restop_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restop_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restop_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_restop_up diboson 1.0684420585 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_restop_down diboson 1.06853399733 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_restop_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_restop_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_restop_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_restop_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restop_up diboson 1.11701942216 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restop_down diboson 1.11715340272 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_restop_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_restop_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_restop_up diboson 1.23008393886 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_restop_down diboson 1.22366806812 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_restop_up diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_restop_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restop_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restop_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_restop_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_restop_down diboson 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_restop_up diboson 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_restop_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_restop_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_restop_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_restop_up diboson 1.08037942112 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_restop_down diboson 1.08061594203 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_restop_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_restop_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_restop_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_restop_down diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restop_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restop_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_restop_up diboson 1.06237008542 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_restop_down diboson 1.06241302432 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restop_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restop_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restop_up diboson 1.12087101256 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restop_down diboson 1.11818908428 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_restop_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_restop_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_restop_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_restop_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_restop_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_restop_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_restop_up diboson 1.05467610305 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_restop_down diboson 1.0544430987 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_restop_up diboson 1.14453273696 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_restop_down diboson 1.14460943434 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restop_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restop_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restop_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restop_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restop_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restop_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_restop_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_restop_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_restop_up diboson 1.29534980007 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_restop_down diboson 1.29552120355 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_restop_up diboson 1.01522141938 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_restop_down diboson 1.0153106407 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restop_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restop_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restop_up diboson 1.20952459398 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restop_down diboson 1.20614759412 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restop_up diboson 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restop_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restop_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restop_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_restop_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_restop_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_restop_up diboson 1.15647143041 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_restop_down diboson 1.15673661238 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restop_up diboson 1.41653325872 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restop_down diboson 1.41659339577 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restop_up diboson 1.1231506452 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restop_down diboson 1.12319540687 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_restop_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_restop_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_restop_up diboson 1.14449324292 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_restop_down diboson 1.14466331575 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_restop_up diboson 1.13955576062 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_restop_down diboson 1.13980440596 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_restop_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_restop_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_restop_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_restop_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_restop_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_restop_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_restop_up diboson 1.34674438509 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_restop_down diboson 1.34692389386 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_restop_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_restop_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_restop_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_restop_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_restop_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_restop_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_restop_up diboson 1.08912133886 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_restop_down diboson 1.08936236901 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_restop_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_restop_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_restop_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_restop_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_restop_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_restop_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_restop_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_restop_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_restop_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_restop_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_restop_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_restop_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_restop_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_restop_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_restop_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_restop_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_restop_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_restop_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_restop_up diboson 1.22140223152 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_restop_down diboson 1.22144858867 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restop_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restop_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_restop_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_restop_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_restop_up diboson 1.04576214185 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_restop_down diboson 1.04577404137 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_restop_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_restop_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_restop_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_restop_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restop_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restop_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_restop_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_restop_down diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restop_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restop_down diboson 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restop_up diboson 1.17131462684 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restop_down diboson 1.1715567674 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restop_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restop_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_restop_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_restop_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_restop_up diboson 1.06988537656 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_restop_down diboson 1.07033476113 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_restop_up diboson 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_restop_down diboson 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restop_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restop_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restop_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restop_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_restop_up diboson 1.06168797626 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_restop_down diboson 1.06171743464 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_restop_up diboson 1.13845129965 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_restop_down diboson 1.13859243462 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_restop_up diboson 1 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_restop_down diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restop_up diboson 1.0678939817 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restop_down diboson 1.06800672091 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_restop_up diboson 1.11610286611 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_restop_down diboson 1.11617214155 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_restop_up diboson 1.14155700104 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_restop_down diboson 1.14194930603 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restop_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restop_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restop_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restop_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_restop_up diboson 1.0773615613 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_restop_down diboson 1.07765329271 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_restop_up diboson 1.17972508263 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_restop_down diboson 1.18027818004 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_restop_up diboson 1.10485262013 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_restop_down diboson 1.1049867215 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restop_up diboson 1.140826154 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restop_down diboson 1.14090561885 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_restop_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_restop_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_restop_up diboson 1.09676063077 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_restop_down diboson 1.09709320881 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restop_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restop_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_restop_up diboson 1.07282129832 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_restop_down diboson 1.07298228591 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_restop_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_restop_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_restop_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_restop_down diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restop_up diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restop_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restop_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restop_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restop_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restop_down diboson 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restop_up diboson 1.14210594372 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restop_down diboson 1.14219107379 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_restop_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_restop_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_restop_up diboson 1.17266517098 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_restop_down diboson 1.17276248774 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_restop_up diboson 1.08086340596 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_restop_down diboson 1.08139373336 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restop_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restop_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restop_up diboson 1.18334239052 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restop_down diboson 1.18340351493 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_restop_up diboson 1.06933773844 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_restop_down diboson 1.06958688269 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restop_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restop_down diboson 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restop_up diboson 1.15309865085 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restop_down diboson 1.15333212464 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restop_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restop_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restop_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restop_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_restop_up diboson 1.18320532756 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_restop_down diboson 1.18204508547 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_restop_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_restop_down diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_restop_up diboson 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_restop_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restop_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restop_down diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restop_up diboson 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restop_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_restop_up diboson 1.23526687691 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_restop_down diboson 1.23539117836 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restop_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restop_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restop_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restop_down diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_restop_up diboson 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_restop_down diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restop_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restop_down diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restop_up diboson 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restop_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restop_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restop_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_restop_up diboson 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_restop_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_restop_up diboson 1.16262443708 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_restop_down diboson 1.16281136435 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restop_up diboson 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restop_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_restop_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_restop_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_restop_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_restop_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_restop_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_restop_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_restop_up diboson 1.05746713407 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_restop_down diboson 1.05762249051 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_restop_up diboson 1.18540920218 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_restop_down diboson 1.18562649117 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_restop_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_restop_down diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restop_up diboson 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restop_down diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_restop_up diboson 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_restop_down diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_restop_up diboson 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_restop_down diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_restop_up diboson 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_restop_down diboson 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_restop_up diboson 1.06937359576 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_restop_down diboson 1.06971190843 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_restop_up diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_restop_down diboson 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_restop_up diboson 1.11575808288 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_restop_down diboson 1.11585355484 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restop_up diboson 1.14232644117 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restop_down diboson 1.1425508104 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_restop_up diboson 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_restop_down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 b_Up diboson 1.06868011804 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 b_Down diboson 1.06756497796 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 b_Up diboson 1.02264394572 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 b_Down diboson 1.02309951548 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_Up diboson 1.04874926277 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_Down diboson 1.04964908649 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf b_Up diboson 1.00807922501 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf b_Down diboson 1.00897905172 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 b_Up diboson 1.27334322262 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 b_Down diboson 1.23881642178 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_Up diboson 1.05460230298 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_Down diboson 1.05285575762 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Up diboson 1.00077503054 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Down diboson 1.00101542542 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 b_Up diboson 1.01184345601 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 b_Down diboson 1.01248524457 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_Up diboson 1.00805929865 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_Down diboson 1.0079939425 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_Up diboson 1.04739390827 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_Down diboson 1.05015792958 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 b_Up diboson 1.04787544588 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 b_Down diboson 1.04876941214 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Up diboson 1.02854941668 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Down diboson 1.02970268105 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf b_Up diboson 1.06257993034 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf b_Down diboson 1.05999074243 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 b_Up diboson 1.00161276601 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 b_Down diboson 1.00252014006 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf b_Up diboson 1.00734321235 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf b_Down diboson 1.00789942862 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_Up diboson 1.06658868947 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_Down diboson 1.06872106788 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_Up diboson 1.04931744021 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_Down diboson 1.04998017309 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 b_Up diboson 1.01633040081 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 b_Down diboson 1.01744280416 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 b_Up diboson 1.0011321871 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 b_Down diboson 1.00152538488 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 b_Up diboson 1.00957476882 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 b_Down diboson 1.01005172376 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf b_Up diboson 1.03532969664 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf b_Down diboson 1.03636774385 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_Up diboson 1.04655766529 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_Down diboson 1.04527040062 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf b_Up diboson 1.01916963806 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf b_Down diboson 1.01905277008 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 b_Up diboson 1.0030950562 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 b_Down diboson 1.00911686465 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 b_Up diboson 1.02428817961 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 b_Down diboson 1.02444394553 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf b_Up diboson 1.11040979031 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf b_Down diboson 1.10911383035 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_Up diboson 1.01985723721 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_Down diboson 1.02003975921 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 b_Up diboson 1.05293636149 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 b_Down diboson 1.05353615814 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf b_Up diboson 1.145244982 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf b_Down diboson 1.13559597534 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf b_Up diboson 1.04240774229 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf b_Down diboson 1.0420619622 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf b_Up diboson 1.04461012758 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf b_Down diboson 1.04637207154 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_Up diboson 1.083377181 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_Down diboson 1.08048126592 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_Up diboson 1.07333864008 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_Down diboson 1.07459229781 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 b_Up diboson 1.0145467901 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 b_Down diboson 1.01427826847 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 b_Up diboson 1.00206279281 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 b_Down diboson 1.00290020461 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_Up diboson 1.05214944147 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_Down diboson 1.05324781224 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf b_Up diboson 1.07408457397 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf b_Down diboson 1.07006352985 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_Up diboson 1.06075164443 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_Down diboson 1.06353607979 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 b_Up diboson 1.04809657712 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 b_Down diboson 1.04792455454 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_Up diboson 1.01468806097 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_Down diboson 1.01443742962 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf b_Up diboson 1.10596686572 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf b_Down diboson 1.1086516779 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 b_Up diboson 1.02316726027 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 b_Down diboson 1.02332450382 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf b_Up diboson 1.11991668369 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf b_Down diboson 1.11431876348 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 b_Up diboson 1.05118333336 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 b_Down diboson 1.04957279912 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 b_Up diboson 1.0302840305 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 b_Down diboson 1.03064525511 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf b_Up diboson 2 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf b_Down diboson 0.001 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_Up diboson 1.01166586552 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_Down diboson 1.01156708082 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 b_Up diboson 1.06972713921 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 b_Down diboson 1.0701696729 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf b_Up diboson 1.04955742074 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf b_Down diboson 1.04955830295 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 b_Up diboson 1.04935554401 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 b_Down diboson 1.05013818972 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 b_Up diboson 1.02146444034 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 b_Down diboson 1.02117564617 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_Up diboson 1.00075336053 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_Down diboson 1.00316602921 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 b_Up diboson 1.25797579988 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 b_Down diboson 1.22513799346 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 b_Up diboson 1.04525187172 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 b_Down diboson 1.02544837031 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf b_Up diboson 1.0881410318 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf b_Down diboson 1.09052564449 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 b_Up diboson 1.00829854605 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 b_Down diboson 1.00944863289 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 b_Up diboson 1.025631061 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 b_Down diboson 1.02537495008 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf b_Up diboson 2 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf b_Down diboson 0.001 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 b_Up diboson 1.05265789899 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 b_Down diboson 1.05521184792 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 b_Up diboson 1.03382324784 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 b_Down diboson 1.03357470595 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf b_Up diboson 1.05098924369 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf b_Down diboson 1.05037794989 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 b_Up diboson 1.07442448624 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 b_Down diboson 1.07177233381 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_Up diboson 1.06407164292 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_Down diboson 1.06219955928 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 b_Up diboson 1.0383406159 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 b_Down diboson 1.04186301131 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_Up diboson 1.09551568654 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_Down diboson 1.09015765735 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_Up diboson 1.01888779852 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_Down diboson 1.01590418857 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 b_Up diboson 1.03882550373 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 b_Down diboson 1.0385940996 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 b_Up diboson 1.05277674952 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 b_Down diboson 1.0512697306 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 b_Up diboson 1.0045921198 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 b_Down diboson 1.00455919997 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 b_Up diboson 1.05431895835 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 b_Down diboson 1.05467417341 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 b_Up diboson 1.08407325664 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 b_Down diboson 1.0850331689 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_Up diboson 1.02426499355 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_Down diboson 1.02512838863 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_Up diboson 0.999118545863 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_Down diboson 0.997826052598 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_Up diboson 1.01224420058 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_Down diboson 1.01206147927 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf b_Up diboson 1.02487595685 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf b_Down diboson 1.02907801436 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf b_Up diboson 1.1636844548 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf b_Down diboson 1.15292430775 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 b_Up diboson 1.06383697213 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 b_Down diboson 1.06767111952 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 b_Up diboson 1.03701335983 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 b_Down diboson 1.0363978909 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_Up diboson 1.06355512969 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_Down diboson 1.06082050452 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_Up diboson 1.10738309646 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_Down diboson 1.10196615292 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_Up diboson 1.01252477218 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_Down diboson 1.0127343918 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf b_Up diboson 1.08729145714 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf b_Down diboson 1.0805291303 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf b_Up diboson 1.06194900694 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf b_Down diboson 1.05953793361 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf b_Up diboson 1.06681403623 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf b_Down diboson 1.06219660385 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Up diboson 1.03254383353 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Down diboson 1.03255552036 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 b_Up diboson 1.04134223718 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 b_Down diboson 1.04336409257 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf b_Up diboson 1.06608512941 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf b_Down diboson 1.06384675548 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf b_Up diboson 1.04543267092 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf b_Down diboson 1.04490137907 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf b_Up diboson 1.06575379203 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf b_Down diboson 1.06543148782 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 b_Up diboson 1.04383450201 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 b_Down diboson 1.04425756799 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf b_Up diboson 1.05279877844 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf b_Down diboson 1.0503833478 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 b_Up diboson 1.02277571238 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 b_Down diboson 1.02295135613 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 b_Up diboson 1.04301713745 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 b_Down diboson 1.04296292635 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 b_Up diboson 1.07418325019 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 b_Down diboson 1.07256422529 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf b_Up diboson 1.02006799594 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf b_Down diboson 1.02044474923 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 b_Up diboson 1.01381944554 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 b_Down diboson 1.01448237997 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf b_Up diboson 1.03602200063 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf b_Down diboson 1.03721636698 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf b_Up diboson 1.05172696784 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf b_Down diboson 1.05074652548 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf b_Up diboson 1.02285614827 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf b_Down diboson 1.0160974398 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf b_Up diboson 1.08878243605 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf b_Down diboson 1.08564759086 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 b_Up diboson 1.04194834733 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 b_Down diboson 1.04157350786 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 b_Up diboson 1.05603365661 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 b_Down diboson 1.0542950359 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf b_Up diboson 1.21568426799 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf b_Down diboson 1.19404944904 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 b_Up diboson 1.05997639617 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 b_Down diboson 1.05835060986 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf b_Up diboson 1.03132481313 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf b_Down diboson 1.03182208202 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf b_Up diboson 1.00943741506 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf b_Down diboson 1.01170423236 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_Up diboson 1.03542817755 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_Down diboson 1.03822241573 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 b_Up diboson 1.02609289778 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 b_Down diboson 1.02606539561 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 b_Up diboson 1.01212951282 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 b_Down diboson 1.01254697141 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 b_Up diboson 1.05696291144 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 b_Down diboson 1.05659282428 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 b_Up diboson 1.06998294271 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 b_Down diboson 1.06695410197 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_Up diboson 1.03452774264 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_Down diboson 1.03545747218 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 b_Up diboson 1.03380772493 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 b_Down diboson 1.03458363158 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_Up diboson 1.00825144869 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_Down diboson 1.00815985354 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf b_Up diboson 1.07080508011 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf b_Down diboson 1.07378930887 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_Up diboson 1.007618736 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_Down diboson 1.0075468491 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 b_Up diboson 1.18722236652 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 b_Down diboson 1.16991985328 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 b_Up diboson 1.03458220287 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 b_Down diboson 1.03372747987 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf b_Up diboson 2 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf b_Down diboson 0.001 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_Up diboson 1.03674938853 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_Down diboson 1.0368405574 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf b_Up diboson 1.00687374675 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf b_Down diboson 1.00868663592 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf b_Up diboson 1.01637926738 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf b_Down diboson 1.01223875705 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 b_Up diboson 1.06755366216 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 b_Down diboson 1.06499536493 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf b_Up diboson 1.09135414636 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf b_Down diboson 1.08707503273 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Up diboson 1.01052732188 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Down diboson 1.01160073378 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 b_Up diboson 1.03349184681 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 b_Down diboson 1.03204437087 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf b_Up diboson 1.00565064069 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf b_Down diboson 1.00653043417 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_Up diboson 1.00707156152 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_Down diboson 1.00700119194 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_Up diboson 1.03791115143 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_Down diboson 1.03954640647 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf b_Up diboson 1.03288650634 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf b_Down diboson 1.03370344955 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 b_Up diboson 1.00596730585 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 b_Down diboson 1.00671626048 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 b_Up diboson 1.02544430235 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 b_Down diboson 1.02482775517 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Up diboson 1.02602796998 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Down diboson 1.02619501115 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf b_Up diboson 1.01295055723 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf b_Down diboson 1.01277374004 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf b_Up diboson 1.10864056396 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf b_Down diboson 1.10083340276 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_Up diboson 1.11649122664 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_Down diboson 1.11906828006 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 b_Up diboson 1.00497739236 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 b_Down diboson 1.00578606593 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 b_Up diboson 1.05314883898 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 b_Down diboson 1.05400245599 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf b_Up diboson 1.00062735763 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf b_Down diboson 1.00090485803 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_Up diboson 1.0140186548 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_Down diboson 1.01453017129 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_Up diboson 1.03517753065 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_Down diboson 1.0352824858 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 b_Up diboson 1.01717799036 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 b_Down diboson 1.01779135565 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Up diboson 1.04808679849 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Down diboson 1.04695922818 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 b_Up diboson 1.06298001024 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 b_Down diboson 1.06123223683 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 b_Up diboson 1.03869101049 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 b_Down diboson 1.0387739297 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 b_Up diboson 1.04551421742 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 b_Down diboson 1.04456810527 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_Up diboson 1.02369889207 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_Down diboson 1.02310289643 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_Up diboson 1.07158968985 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_Down diboson 1.06873151985 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 b_Up diboson 1.02115220584 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 b_Down diboson 1.02255779858 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_Up diboson 1.00666595142 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_Down diboson 1.00647520181 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Up diboson 1.00327274569 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Down diboson 1.00472716877 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 b_Up diboson 1.02778395126 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 b_Down diboson 1.02776220813 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_Up diboson 1.03612154037 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_Down diboson 1.03563047008 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 b_Up diboson 0.999751013263 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 b_Down diboson 0.999253942509 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 b_Up diboson 1.01988854496 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 b_Down diboson 1.01990714869 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 b_Up diboson 1.01375893157 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 b_Down diboson 1.01181660648 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 b_Up diboson 1.02175980863 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 b_Down diboson 1.02212892877 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf b_Up diboson 1.02514205094 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf b_Down diboson 1.02644483484 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 b_Up diboson 1.02496441522 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 b_Down diboson 1.02519072192 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_Up diboson 1.01355282397 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_Down diboson 1.01330752864 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 b_Up diboson 1.03912039745 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 b_Down diboson 1.04215318835 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 b_Up diboson 1.00600255227 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 b_Down diboson 1.00825050961 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_Up diboson 1.04377342553 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_Down diboson 1.04334342271 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_Up diboson 1.01267375547 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_Down diboson 1.01607808829 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf b_Up diboson 0.998996481871 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf b_Down diboson 0.997299852333 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 b_Up diboson 1.01684816421 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 b_Down diboson 1.01775663961 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 b_Up diboson 1.00103409124 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 b_Down diboson 1.00306000812 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_Up diboson 1.00850846058 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_Down diboson 1.00840273258 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 b_Up diboson 1.03513322578 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 b_Down diboson 1.03444137345 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 b_Up diboson 1.02658123096 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 b_Down diboson 1.03202809897 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 b_Up diboson 1.08681389334 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 b_Down diboson 1.07871243664 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 b_Up diboson 1.00105384442 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 b_Down diboson 1.00198739137 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 b_Up diboson 1.01740600932 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 b_Down diboson 1.020394565 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf b_Up diboson 1.00198427265 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf b_Down diboson 1.00197059652 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf b_Up diboson 1.07428157963 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf b_Down diboson 1.06999903706 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 b_Up diboson 1.09378561731 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 b_Down diboson 1.09584624225 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf b_Up diboson 1.04442808478 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf b_Down diboson 1.04345345707 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 b_Up diboson 1.08420930104 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 b_Down diboson 1.08069778084 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 b_Up diboson 1.00606571282 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 b_Down diboson 1.00665451019 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf b_Up diboson 1.06106167784 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf b_Down diboson 1.0603736022 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 b_Up diboson 1.00390843044 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 b_Down diboson 1.00357325605 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Up diboson 1.01219980644 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Down diboson 1.0117674769 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf b_Up diboson 1.03341187765 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf b_Down diboson 1.03339106676 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 trigger_err_Up diboson 1.00180864413 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 trigger_err_Down diboson 1.0019674343 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 trigger_err_Up diboson 1.00147167997 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 trigger_err_Down diboson 1.00168464045 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_Up diboson 1.00102519696 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_Down diboson 1.00182718184 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf trigger_err_Up diboson 1.00122410836 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf trigger_err_Down diboson 1.00199354529 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 trigger_err_Up diboson 1.00175288737 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 trigger_err_Down diboson 1.0019651642 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_Up diboson 1.00180513374 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_Down diboson 1.00195815513 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Up diboson 1.00220290284 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Down diboson 1.00239439034 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 trigger_err_Up diboson 1.00146613694 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 trigger_err_Down diboson 1.00166914663 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_Up diboson 1.00153790579 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_Down diboson 1.00226141321 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_Up diboson 1.00116849259 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_Down diboson 1.00168010585 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 trigger_err_Up diboson 1.00321768891 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 trigger_err_Down diboson 1.00390290485 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Up diboson 1.00057254983 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Down diboson 1.00139131651 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf trigger_err_Up diboson 1.00130045848 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf trigger_err_Down diboson 1.00207991672 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_Up diboson 1.00303483125 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_Down diboson 1.00369749325 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf trigger_err_Up diboson 1.00225278761 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf trigger_err_Down diboson 1.00288962376 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_Up diboson 1.00226286649 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_Down diboson 1.00290217599 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_Up diboson 1.00127965358 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_Down diboson 1.00140382212 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 trigger_err_Up diboson 1.00159213052 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 trigger_err_Down diboson 1.00169816371 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 trigger_err_Up diboson 1.00174250229 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 trigger_err_Down diboson 1.00190165186 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 trigger_err_Up diboson 1.00112679879 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 trigger_err_Down diboson 1.00188818387 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf trigger_err_Up diboson 1.00180465277 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf trigger_err_Down diboson 1.00251055206 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_Up diboson 1.00125850788 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_Down diboson 1.00137387041 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf trigger_err_Up diboson 1.00113315288 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf trigger_err_Down diboson 1.00169697808 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 trigger_err_Up diboson 1.00288867048 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 trigger_err_Down diboson 1.00360682565 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 trigger_err_Up diboson 1.00137473555 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 trigger_err_Down diboson 1.00168057991 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf trigger_err_Up diboson 1.00342102179 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf trigger_err_Down diboson 1.00410141236 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_Up diboson 1.00184020827 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_Down diboson 1.00200013375 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 trigger_err_Up diboson 1.00134072191 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 trigger_err_Down diboson 1.0020560471 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf trigger_err_Up diboson 1.00221331633 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf trigger_err_Down diboson 1.00296564055 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf trigger_err_Up diboson 1.00138464392 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf trigger_err_Down diboson 1.00203414082 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf trigger_err_Up diboson 1.00174915574 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf trigger_err_Down diboson 1.00201372511 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_Up diboson 1.00137823703 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_Down diboson 1.00209806776 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_Up diboson 1.00131325537 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_Down diboson 1.00144079599 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 trigger_err_Up diboson 1.00039571941 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 trigger_err_Down diboson 1.00122136482 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 trigger_err_Up diboson 1.00129797195 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 trigger_err_Down diboson 1.00196101833 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_Up diboson 1.0006093925 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_Down diboson 1.00142524632 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf trigger_err_Up diboson 1.0018223997 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf trigger_err_Down diboson 1.00253251307 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_Up diboson 1.00147180643 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_Down diboson 1.00169979472 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 trigger_err_Up diboson 1.00154542511 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 trigger_err_Down diboson 1.00182835217 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_Up diboson 1.00130509783 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_Down diboson 1.00207576576 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf trigger_err_Up diboson 1.00066028633 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf trigger_err_Down diboson 1.00146695763 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 trigger_err_Up diboson 1.00108721179 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 trigger_err_Down diboson 1.00181438916 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf trigger_err_Up diboson 1.00152142333 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf trigger_err_Down diboson 1.00171679582 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 trigger_err_Up diboson 1.00137366427 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 trigger_err_Down diboson 1.00160581499 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 trigger_err_Up diboson 1.00179372625 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 trigger_err_Down diboson 1.00195784123 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf trigger_err_Up diboson 2 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf trigger_err_Down diboson 0.001 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_Up diboson 1.00085818008 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_Down diboson 1.00162083632 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_Up diboson 1.00144459943 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_Down diboson 1.00165624597 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf trigger_err_Up diboson 1.00363804258 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf trigger_err_Down diboson 1.004318037 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 trigger_err_Up diboson 1.00105722596 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 trigger_err_Down diboson 1.0013066585 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 trigger_err_Up diboson 1.00192972416 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 trigger_err_Down diboson 1.00269660071 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_Up diboson 1.00187457342 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_Down diboson 1.00202498748 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 trigger_err_Up diboson 1.00036343284 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 trigger_err_Down diboson 1.00113137656 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 trigger_err_Up diboson 1.0014330178 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 trigger_err_Down diboson 1.00151681643 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf trigger_err_Up diboson 1.0015228207 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf trigger_err_Down diboson 1.00217600711 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_Up diboson 1.00254652086 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_Down diboson 1.00325692477 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 trigger_err_Up diboson 1.00191156442 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 trigger_err_Down diboson 1.00211360634 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf trigger_err_Up diboson 2 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf trigger_err_Down diboson 0.001 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 trigger_err_Up diboson 1.00191916214 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 trigger_err_Down diboson 1.00208794191 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 trigger_err_Up diboson 1.00218197035 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 trigger_err_Down diboson 1.0026761301 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf trigger_err_Up diboson 1.00143566354 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf trigger_err_Down diboson 1.00219602914 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 trigger_err_Up diboson 1.00155412836 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 trigger_err_Down diboson 1.00231975478 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_Up diboson 1.0018558841 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_Down diboson 1.00200777098 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 trigger_err_Up diboson 1.00141339258 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 trigger_err_Down diboson 1.00162800903 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_Up diboson 1.00157568756 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_Down diboson 1.00180776223 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Up diboson 1.00148622778 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Down diboson 1.00159841284 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 trigger_err_Up diboson 1.00157387853 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 trigger_err_Down diboson 1.00206621896 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 trigger_err_Up diboson 1.00177710172 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 trigger_err_Down diboson 1.0019194208 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 trigger_err_Up diboson 1.00111878156 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 trigger_err_Down diboson 1.00181995433 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 trigger_err_Up diboson 1.00146749324 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 trigger_err_Down diboson 1.0018501253 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 trigger_err_Up diboson 1.00176078065 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 trigger_err_Down diboson 1.00201216555 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_Up diboson 1.00183187352 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_Down diboson 1.00256500173 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_Up diboson 1.0013825182 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_Down diboson 1.00217736472 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_Up diboson 1.00100548747 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_Down diboson 1.00176654876 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf trigger_err_Up diboson 1.00296886186 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf trigger_err_Down diboson 1.00368275512 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf trigger_err_Up diboson 1.00020067513 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf trigger_err_Down diboson 1.00103460394 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 trigger_err_Up diboson 1.00024621769 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 trigger_err_Down diboson 1.00008305996 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_Up diboson 1.0013931475 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_Down diboson 1.0016354581 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Up diboson 1.00212987666 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Down diboson 1.00231196406 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_Up diboson 1.0013765776 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_Down diboson 1.00178993349 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_Up diboson 1.0030496471 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_Down diboson 1.00375870505 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf trigger_err_Up diboson 1.00259571754 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf trigger_err_Down diboson 1.00327690847 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf trigger_err_Up diboson 1.00188505968 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf trigger_err_Down diboson 1.00227038342 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_Up diboson 1.00208364719 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_Down diboson 1.00228628379 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Up diboson 1.00221380216 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Down diboson 1.00240011056 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 trigger_err_Up diboson 1.00122884573 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 trigger_err_Down diboson 1.00148583961 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf trigger_err_Up diboson 1.00211825129 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf trigger_err_Down diboson 1.0024751681 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf trigger_err_Up diboson 1.00200882264 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf trigger_err_Down diboson 1.00260203838 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf trigger_err_Up diboson 1.00157606042 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf trigger_err_Down diboson 1.00232116459 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 trigger_err_Up diboson 1.00154316932 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 trigger_err_Down diboson 1.00182792968 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf trigger_err_Up diboson 1.00198481459 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf trigger_err_Down diboson 1.00264651356 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 trigger_err_Up diboson 1.00079522816 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 trigger_err_Down diboson 1.00160409125 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 trigger_err_Up diboson 1.00131562021 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 trigger_err_Down diboson 1.0015219154 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 trigger_err_Up diboson 1.00137025805 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 trigger_err_Down diboson 1.00151204475 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf trigger_err_Up diboson 1.00187991753 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf trigger_err_Down diboson 1.0025575456 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 trigger_err_Up diboson 1.00133872559 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 trigger_err_Down diboson 1.00156527498 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf trigger_err_Up diboson 1.00167955563 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf trigger_err_Down diboson 1.00223372629 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf trigger_err_Up diboson 1.00174574311 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf trigger_err_Down diboson 1.00237052703 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf trigger_err_Up diboson 1.00312544451 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf trigger_err_Down diboson 1.00379582695 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf trigger_err_Up diboson 1.00067736763 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf trigger_err_Down diboson 1.00143673125 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 trigger_err_Up diboson 1.0012556426 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 trigger_err_Down diboson 1.00151327948 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 trigger_err_Up diboson 1.00190400762 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 trigger_err_Down diboson 1.00204501395 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf trigger_err_Up diboson 1.00047490931 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf trigger_err_Down diboson 1.00129046797 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 trigger_err_Up diboson 1.00159048721 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 trigger_err_Down diboson 1.00191861861 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf trigger_err_Up diboson 1.00199314064 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf trigger_err_Down diboson 1.00260946951 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf trigger_err_Up diboson 1.0036379101 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf trigger_err_Down diboson 1.00431809163 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_Up diboson 1.00164319621 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_Down diboson 1.00242221694 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 trigger_err_Up diboson 1.001498829 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 trigger_err_Down diboson 1.00176515342 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 trigger_err_Up diboson 1.00256639493 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 trigger_err_Down diboson 1.00300199541 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 trigger_err_Up diboson 1.00042621046 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 trigger_err_Down diboson 1.00124536994 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 trigger_err_Up diboson 1.00159774863 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 trigger_err_Down diboson 1.00172181438 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_Up diboson 1.0014666472 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_Down diboson 1.00197006109 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 trigger_err_Up diboson 1.00184848848 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 trigger_err_Down diboson 1.00200361886 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_Up diboson 1.00140146637 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_Down diboson 1.00212706976 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_Up diboson 1.00116017151 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_Down diboson 1.0012358288 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_Up diboson 1.00147356551 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_Down diboson 1.00220611621 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 trigger_err_Up diboson 1.00129739994 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 trigger_err_Down diboson 1.0014958287 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 trigger_err_Up diboson 1.00196318597 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 trigger_err_Down diboson 1.00266099459 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf trigger_err_Up diboson 2 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf trigger_err_Down diboson 0.001 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_Up diboson 1.00186504066 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_Down diboson 1.00208315974 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_Up diboson 1.00286245181 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_Down diboson 1.00354825794 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf trigger_err_Up diboson 1.00257385305 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf trigger_err_Down diboson 1.00328572244 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 trigger_err_Up diboson 1.00204093617 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 trigger_err_Down diboson 1.0022265397 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf trigger_err_Up diboson 1.00202686269 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf trigger_err_Down diboson 1.00230247966 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Up diboson 1.00243138712 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Down diboson 1.00313866814 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 trigger_err_Up diboson 1.0019191254 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 trigger_err_Down diboson 1.00204213306 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf trigger_err_Up diboson 1.00076971868 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf trigger_err_Down diboson 1.00156539651 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_Up diboson 1.00143477923 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_Down diboson 1.00191642684 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_Up diboson 1.00180458789 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_Down diboson 1.00197140517 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf trigger_err_Up diboson 1.00170493087 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf trigger_err_Down diboson 1.00243878472 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 trigger_err_Up diboson 1.00181675082 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 trigger_err_Down diboson 1.00238373453 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Up diboson 1.00190519679 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Down diboson 1.00208063822 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Up diboson 1.00139530932 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Down diboson 1.00165762582 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf trigger_err_Up diboson 1.00168660841 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf trigger_err_Down diboson 1.00245056663 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf trigger_err_Up diboson 1.00123106229 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf trigger_err_Down diboson 1.00196769645 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_Up diboson 1.00074508971 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_Down diboson 1.00125868987 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 trigger_err_Up diboson 1.00189153006 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 trigger_err_Down diboson 1.00205969242 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 trigger_err_Up diboson 1.00160689273 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 trigger_err_Down diboson 1.00185053155 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf trigger_err_Up diboson 1.00058237599 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf trigger_err_Down diboson 1.0013566055 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_Up diboson 1.00130075086 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_Down diboson 1.00144123071 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_Up diboson 1.00195358472 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_Down diboson 1.00223616329 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_Up diboson 1.00144753171 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_Down diboson 1.00166645175 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Up diboson 1.00131613018 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Down diboson 1.00143536064 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 trigger_err_Up diboson 1.00133511558 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 trigger_err_Down diboson 1.00207718259 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 trigger_err_Up diboson 1.00123019048 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 trigger_err_Down diboson 1.00141753636 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 trigger_err_Up diboson 1.00132960293 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 trigger_err_Down diboson 1.00155616525 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_Up diboson 1.00187578047 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_Down diboson 1.00209131326 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_Up diboson 1.00204980432 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_Down diboson 1.00222500286 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 trigger_err_Up diboson 1.00163613009 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 trigger_err_Down diboson 1.00185041162 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_Up diboson 1.00119865928 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_Down diboson 1.00179014584 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Up diboson 1.00139861027 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Down diboson 1.00166051923 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_Up diboson 1.00083530533 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_Down diboson 1.00164621983 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_Up diboson 1.00133400137 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_Down diboson 1.001478348 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 trigger_err_Up diboson 1.00164483888 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 trigger_err_Down diboson 1.00232787007 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 trigger_err_Up diboson 1.00124173224 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 trigger_err_Down diboson 1.00132246709 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 trigger_err_Up diboson 1.00147915814 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 trigger_err_Down diboson 1.00189852591 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_Up diboson 1.00177368731 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_Down diboson 1.00198220596 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_Up diboson 1.00001300493 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_Down diboson 1.00087616041 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 trigger_err_Up diboson 1.00137344751 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 trigger_err_Down diboson 1.00155070251 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_Up diboson 1.00144923888 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_Down diboson 1.00219657492 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_Up diboson 1.00028187331 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_Down diboson 1.00113239067 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 trigger_err_Up diboson 1.00094459784 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 trigger_err_Down diboson 1.00119002389 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_Up diboson 1.00154672656 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_Down diboson 1.00197980648 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_Up diboson 1.00226090241 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_Down diboson 1.00244689572 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_Up diboson 1.00363806725 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_Down diboson 1.00431805895 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 trigger_err_Up diboson 1.00151382561 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 trigger_err_Down diboson 1.00173083654 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 trigger_err_Up diboson 1.00203125454 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 trigger_err_Down diboson 1.00219944551 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_Up diboson 1.00133695086 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_Down diboson 1.0017806018 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 trigger_err_Up diboson 1.00186522246 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 trigger_err_Down diboson 1.00201174271 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 trigger_err_Up diboson 1.00178298775 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 trigger_err_Down diboson 1.00192217392 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 trigger_err_Up diboson 1.00095791788 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 trigger_err_Down diboson 1.00119583716 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 trigger_err_Up diboson 1.001729304 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 trigger_err_Down diboson 1.00191052848 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 trigger_err_Up diboson 1.0008920456 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 trigger_err_Down diboson 1.00110779239 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf trigger_err_Up diboson 1.0002096056 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf trigger_err_Down diboson 1.00104175976 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_Up diboson 1.00339008681 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_Down diboson 1.00407639815 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 trigger_err_Up diboson 1.00202360347 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 trigger_err_Down diboson 1.00276697422 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf trigger_err_Up diboson 1.00228245469 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf trigger_err_Down diboson 1.00292987306 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 trigger_err_Up diboson 1.00116076887 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 trigger_err_Down diboson 1.0014146328 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 trigger_err_Up diboson 1.00186380282 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 trigger_err_Down diboson 1.00201129381 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf trigger_err_Up diboson 1.0019756999 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf trigger_err_Down diboson 1.00254509473 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 trigger_err_Up diboson 1.00100885984 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 trigger_err_Down diboson 1.00145532849 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Up diboson 1.00133801094 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Down diboson 1.00146119181 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf trigger_err_Up diboson 1.00123153453 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf trigger_err_Down diboson 1.0019280279 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PU_Weight_Up diboson 1.03139558397 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PU_Weight_Down diboson 1.02618510098 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PU_Weight_Up diboson 1.01844387899 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PU_Weight_Down diboson 1.0194792648 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_Up diboson 1.02203674788 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_Down diboson 1.02140590451 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PU_Weight_Up diboson 1.04538698816 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PU_Weight_Down diboson 1.04828987633 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PU_Weight_Up diboson 1.11567498941 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PU_Weight_Down diboson 1.10505524288 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_Up diboson 1.00404931452 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_Down diboson 1.00295176341 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Up diboson 0.999246396307 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Down diboson 0.996884902947 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_Up diboson 1.00144062423 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_Down diboson 1.00621805265 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_Up diboson 1.00919091029 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_Down diboson 1.00772146361 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_Up diboson 1.02673236936 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_Down diboson 1.03305185842 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PU_Weight_Up diboson 1.03705264384 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PU_Weight_Down diboson 1.04074629501 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Up diboson 1.05150945594 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Down diboson 1.04649671071 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PU_Weight_Up diboson 1.02153034787 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PU_Weight_Down diboson 1.02554712879 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_Up diboson 1.01997150152 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_Down diboson 1.02662331135 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PU_Weight_Up diboson 1.00149725542 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PU_Weight_Down diboson 1.00962331324 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Up diboson 1.00220649211 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Down diboson 1.00045396214 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_Up diboson 1.00329347034 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_Down diboson 1.00207081078 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PU_Weight_Up diboson 1.10699196115 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PU_Weight_Down diboson 1.09607715848 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PU_Weight_Up diboson 1.0351373052 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PU_Weight_Down diboson 1.03913241074 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PU_Weight_Up diboson 1.02272199406 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PU_Weight_Down diboson 1.02210224311 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PU_Weight_Up diboson 1.00226984108 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PU_Weight_Down diboson 1.00535914146 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_Up diboson 1.00044543684 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_Down diboson 1.00071187732 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PU_Weight_Up diboson 1.03539526766 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PU_Weight_Down diboson 1.03481092777 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PU_Weight_Up diboson 1.01403773043 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PU_Weight_Down diboson 1.01637837352 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_Up diboson 1.00148329537 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_Down diboson 1.04178038669 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Up diboson 1.00614827827 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Down diboson 1.01141594204 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_Up diboson 1.01795532601 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_Down diboson 1.01687008474 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PU_Weight_Up diboson 1.01637674581 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PU_Weight_Down diboson 1.01924321582 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PU_Weight_Up diboson 1.00374810558 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PU_Weight_Down diboson 1.00673850466 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PU_Weight_Up diboson 1.0225586402 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PU_Weight_Down diboson 1.00656200526 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PU_Weight_Up diboson 0.999863312813 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PU_Weight_Down diboson 0.997020030648 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_Up diboson 1.04404375264 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_Down diboson 1.04156599302 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_Up diboson 1.00699618904 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_Down diboson 1.00671792625 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PU_Weight_Up diboson 1.01074618606 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PU_Weight_Down diboson 1.01674906017 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PU_Weight_Up diboson 1.02210574245 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PU_Weight_Down diboson 1.02679104679 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_Up diboson 1.00038157014 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_Down diboson 1.00254170506 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PU_Weight_Up diboson 1.01853148051 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PU_Weight_Down diboson 1.01858847691 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_Up diboson 1.00357209678 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_Down diboson 1.0026591829 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PU_Weight_Up diboson 1.01855065751 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PU_Weight_Down diboson 1.02296651291 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_Up diboson 1.04997368006 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_Down diboson 1.04198998163 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PU_Weight_Up diboson 1.21579545078 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PU_Weight_Down diboson 1.1754103713 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PU_Weight_Up diboson 1.03225026381 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PU_Weight_Down diboson 1.03722163482 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PU_Weight_Up diboson 1.07499896814 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PU_Weight_Down diboson 1.06002269818 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PU_Weight_Up diboson 1.00425730649 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PU_Weight_Down diboson 1.00119415133 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PU_Weight_Up diboson 1.01025485026 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PU_Weight_Down diboson 1.00580705761 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PU_Weight_Up diboson 2 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PU_Weight_Down diboson 0.001 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_Up diboson 1.08673334922 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_Down diboson 1.07385962496 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_Up diboson 1.01233205536 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_Down diboson 1.01280655953 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PU_Weight_Up diboson 1.07719382796 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PU_Weight_Down diboson 1.0792346304 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PU_Weight_Up diboson 1.00877297182 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PU_Weight_Down diboson 1.01115331473 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PU_Weight_Up diboson 1.02155757187 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PU_Weight_Down diboson 1.01170648184 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_Up diboson 1.01255179863 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_Down diboson 1.01085459836 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PU_Weight_Up diboson 1.03710215043 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PU_Weight_Down diboson 1.0293600186 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PU_Weight_Up diboson 1.01915741467 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PU_Weight_Down diboson 1.01627871737 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PU_Weight_Up diboson 1.12450780651 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PU_Weight_Down diboson 1.15350484424 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_Up diboson 1.01714432521 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_Down diboson 1.01522522279 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PU_Weight_Up diboson 1.02195416423 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PU_Weight_Down diboson 1.01832252977 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PU_Weight_Up diboson 2 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PU_Weight_Down diboson 0.001 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PU_Weight_Up diboson 1.08644464957 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PU_Weight_Down diboson 1.05668954018 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PU_Weight_Up diboson 0.999667094657 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PU_Weight_Down diboson 0.996247071646 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PU_Weight_Up diboson 1.01646795851 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PU_Weight_Down diboson 1.01420982366 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PU_Weight_Up diboson 1.02112118073 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PU_Weight_Down diboson 1.02035216771 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_Up diboson 1.0111275936 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_Down diboson 1.00129466723 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PU_Weight_Up diboson 1.03310893983 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PU_Weight_Down diboson 1.02885588041 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_Up diboson 1.04510502891 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_Down diboson 1.05087858843 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Up diboson 1.00904333446 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Down diboson 1.01201867478 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PU_Weight_Up diboson 1.00547408625 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PU_Weight_Down diboson 1.00700851972 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PU_Weight_Up diboson 1.01671233935 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PU_Weight_Down diboson 1.01501340531 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PU_Weight_Up diboson 1.00731086446 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PU_Weight_Down diboson 1.00845063981 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PU_Weight_Up diboson 0.994110167802 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PU_Weight_Down diboson 0.991883681784 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PU_Weight_Up diboson 1.02376173926 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PU_Weight_Down diboson 1.02981746458 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_Up diboson 1.01131525979 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_Down diboson 1.01183829146 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Up diboson 1.01750242843 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Down diboson 1.02161847965 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_Up diboson 1.01909500093 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_Down diboson 1.02015449315 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PU_Weight_Up diboson 1.03321827234 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PU_Weight_Down diboson 1.03578844959 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PU_Weight_Up diboson 1.05013238767 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PU_Weight_Down diboson 1.06551072367 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PU_Weight_Up diboson 1.0701997681 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PU_Weight_Down diboson 1.06145821065 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_Up diboson 1.00871958163 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_Down diboson 1.01186110396 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Up diboson 1.02273548297 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Down diboson 1.02284650949 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_Up diboson 1.00210934486 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_Down diboson 1.00591023768 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Up diboson 1.1132863636 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Down diboson 1.11804406775 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PU_Weight_Up diboson 1.04970123102 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PU_Weight_Down diboson 1.05072371318 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PU_Weight_Up diboson 1.03086625554 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PU_Weight_Down diboson 1.03225510561 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_Up diboson 1.00561579837 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_Down diboson 1.00438027803 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Up diboson 1.00062893267 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Down diboson 1.00086232876 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PU_Weight_Up diboson 1.02890667081 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PU_Weight_Down diboson 1.02504639937 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PU_Weight_Up diboson 1.01789815175 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PU_Weight_Down diboson 1.01406010031 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PU_Weight_Up diboson 1.04099428505 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PU_Weight_Down diboson 1.0366073758 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PU_Weight_Up diboson 1.00570722517 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PU_Weight_Down diboson 1.00042287174 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PU_Weight_Up diboson 1.027519145 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PU_Weight_Down diboson 1.02325588869 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PU_Weight_Up diboson 1.0607256145 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PU_Weight_Down diboson 1.05753978981 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Up diboson 1.0250311671 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Down diboson 1.0260298457 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PU_Weight_Up diboson 1.06895533856 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PU_Weight_Down diboson 1.07960991846 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PU_Weight_Up diboson 1.01454273869 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PU_Weight_Down diboson 1.01398399347 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PU_Weight_Up diboson 1.01136110208 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PU_Weight_Down diboson 1.01590798422 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PU_Weight_Up diboson 1.0033089204 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PU_Weight_Down diboson 1.00580698614 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PU_Weight_Up diboson 1.01453449967 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PU_Weight_Down diboson 1.01442699359 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PU_Weight_Up diboson 1.03335290249 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PU_Weight_Down diboson 1.0345936384 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PU_Weight_Up diboson 1.08261637545 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PU_Weight_Down diboson 1.08203031306 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PU_Weight_Up diboson 1.01192271851 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PU_Weight_Down diboson 1.01377106743 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PU_Weight_Up diboson 1.04020945069 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PU_Weight_Down diboson 1.03442676013 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PU_Weight_Up diboson 1.01759138392 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PU_Weight_Down diboson 1.01653351982 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PU_Weight_Up diboson 1.01758516027 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PU_Weight_Down diboson 1.0164709473 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PU_Weight_Up diboson 1.00813493989 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PU_Weight_Down diboson 1.00940788543 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PU_Weight_Up diboson 1.02499626325 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PU_Weight_Down diboson 1.02703849757 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PU_Weight_Up diboson 1.2866789108 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PU_Weight_Down diboson 1.25334450252 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Up diboson 1.15736755139 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Down diboson 1.11227419742 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PU_Weight_Up diboson 1.00171712257 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PU_Weight_Down diboson 1.00969071422 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PU_Weight_Up diboson 1.00514127559 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PU_Weight_Down diboson 1.01029279258 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PU_Weight_Up diboson 1.10983655744 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PU_Weight_Down diboson 1.08829535327 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Up diboson 1.01192359956 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Down diboson 1.00822631439 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_Up diboson 1.042239281 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_Down diboson 1.04003146188 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PU_Weight_Up diboson 1.0331897507 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PU_Weight_Down diboson 1.03439869782 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_Up diboson 1.00389637253 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_Down diboson 1.00487989814 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_Up diboson 1.04097098175 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_Down diboson 1.03877515221 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_Up diboson 1.00571663181 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_Down diboson 1.00654970823 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PU_Weight_Up diboson 1.08549750159 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PU_Weight_Down diboson 1.07547488448 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PU_Weight_Up diboson 1.008721611 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PU_Weight_Down diboson 1.01164982519 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PU_Weight_Up diboson 2 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PU_Weight_Down diboson 0.001 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_Up diboson 1.01591024277 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_Down diboson 1.00833999128 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_Up diboson 1.25871365472 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_Down diboson 1.19995201896 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PU_Weight_Up diboson 1.08746792998 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PU_Weight_Down diboson 1.09330110021 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PU_Weight_Up diboson 1.00150550662 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PU_Weight_Down diboson 1.0032587523 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PU_Weight_Up diboson 1.22195148699 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PU_Weight_Down diboson 1.20066628216 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Up diboson 1.03640520512 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Down diboson 1.05091424109 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PU_Weight_Up diboson 1.01890818193 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PU_Weight_Down diboson 1.01573993689 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Up diboson 1.0340634224 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Down diboson 1.03626109502 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_Up diboson 1.00313505429 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_Down diboson 1.00318121736 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_Up diboson 1.00270673808 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_Down diboson 1.00164984526 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PU_Weight_Up diboson 1.00501639194 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PU_Weight_Down diboson 1.0074506173 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PU_Weight_Up diboson 1.06100578117 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PU_Weight_Down diboson 1.12297503014 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Up diboson 1.0283682779 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Down diboson 1.02508587673 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Up diboson 1.0246170564 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Down diboson 1.02416900112 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PU_Weight_Up diboson 1.00743442025 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PU_Weight_Down diboson 1.00950300777 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PU_Weight_Up diboson 1.01868378317 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PU_Weight_Down diboson 1.02089778313 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_Up diboson 1.03411949259 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_Down diboson 1.033987336 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PU_Weight_Up diboson 1.02751885689 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PU_Weight_Down diboson 1.02891289676 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PU_Weight_Up diboson 1.04003695115 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PU_Weight_Down diboson 1.05237860107 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PU_Weight_Up diboson 1.04703728285 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PU_Weight_Down diboson 1.05068187516 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PU_Weight_Up diboson 1.08724964675 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PU_Weight_Down diboson 1.07549032487 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_Up diboson 1.00429743164 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_Down diboson 1.00347725347 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_Up diboson 1.03028037073 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_Down diboson 1.02770853058 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Up diboson 1.00509337382 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Down diboson 1.00698840458 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PU_Weight_Up diboson 1.01807739323 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PU_Weight_Down diboson 1.01842517762 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PU_Weight_Up diboson 1.03316946198 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PU_Weight_Down diboson 1.04430258811 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PU_Weight_Up diboson 1.01842740519 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PU_Weight_Down diboson 1.01823179125 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_Up diboson 1.00247279107 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_Down diboson 1.0057254295 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_Up diboson 1.00472069953 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_Down diboson 1.0060842012 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_Up diboson 1.00543207014 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_Down diboson 1.01324138887 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_Up diboson 1.03576088967 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_Down diboson 1.02757537865 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Up diboson 1.03323658721 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Down diboson 1.02261593819 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_Up diboson 1.0562407361 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_Down diboson 1.06102799601 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_Up diboson 1.0548087851 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_Down diboson 1.03651919125 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Up diboson 1.005253177 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Down diboson 1.0068687185 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PU_Weight_Up diboson 1.03288507541 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PU_Weight_Down diboson 1.03148374274 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PU_Weight_Up diboson 1.03912361588 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PU_Weight_Down diboson 1.03428081188 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_Up diboson 1.06941903259 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_Down diboson 1.07333620435 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_Up diboson 1.00394643754 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_Down diboson 1.00228366492 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PU_Weight_Up diboson 1.03622579299 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PU_Weight_Down diboson 1.0322309782 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_Up diboson 1.0214969577 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_Down diboson 1.02385361315 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_Up diboson 1.06608976958 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_Down diboson 1.0655497618 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PU_Weight_Up diboson 1.00914902705 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PU_Weight_Down diboson 1.00845419104 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_Up diboson 1.00795931616 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_Down diboson 1.01125234123 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_Up diboson 1.12257463129 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_Down diboson 1.12166003817 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_Up diboson 1.12495135938 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_Down diboson 1.11262032215 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PU_Weight_Up diboson 1.00425395424 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PU_Weight_Down diboson 1.00483395026 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PU_Weight_Up diboson 1.0101739197 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PU_Weight_Down diboson 1.01179853118 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_Up diboson 1.00717649114 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_Down diboson 1.01122079035 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PU_Weight_Up diboson 1.00348770899 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PU_Weight_Down diboson 1.00456859783 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PU_Weight_Up diboson 1.01559932523 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PU_Weight_Down diboson 1.01489741782 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PU_Weight_Up diboson 1.08529374828 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PU_Weight_Down diboson 1.07587879201 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PU_Weight_Up diboson 1.029048023 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PU_Weight_Down diboson 1.02610440383 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PU_Weight_Up diboson 1.03841266857 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PU_Weight_Down diboson 1.03494813879 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PU_Weight_Up diboson 1.03093900173 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PU_Weight_Down diboson 1.0364644408 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_Up diboson 1.04594108848 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_Down diboson 1.04403277144 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PU_Weight_Up diboson 1.01037037187 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PU_Weight_Down diboson 1.01453097606 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PU_Weight_Up diboson 1.0074773178 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PU_Weight_Down diboson 1.01434972413 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PU_Weight_Up diboson 1.10092129282 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PU_Weight_Down diboson 1.081555619 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PU_Weight_Up diboson 1.00470337937 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PU_Weight_Down diboson 1.00438589876 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PU_Weight_Up diboson 1.02168490801 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PU_Weight_Down diboson 1.02413055208 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_Up diboson 1.01379801233 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_Down diboson 1.00836924206 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Up diboson 1.01466023331 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Down diboson 1.01480722991 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PU_Weight_Up diboson 1.01167255749 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PU_Weight_Down diboson 1.01877499964 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 Prefire_Weight_Up diboson 1.00114208629 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 Prefire_Weight_Down diboson 1.00114208629 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_Up diboson 1.00326461984 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_Down diboson 1.00329542983 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 Prefire_Weight_Up diboson 1.00030153212 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 Prefire_Weight_Down diboson 1.00030697781 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_Up diboson 1.00023744664 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_Down diboson 1.00030168077 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 Prefire_Weight_Up diboson 1.00001181013 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 Prefire_Weight_Down diboson 1.0000116065 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_Up diboson 1.0035671741 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_Down diboson 1.00373396143 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_Up diboson 1.00279194198 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_Down diboson 1.00267620514 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_Up diboson 1.00623512731 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_Down diboson 1.00627245329 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_Up diboson 1.00397916154 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_Down diboson 1.00400049441 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_Up diboson 1.00235045112 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_Down diboson 1.00238706739 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 Prefire_Weight_Up diboson 1.00072591614 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 Prefire_Weight_Down diboson 1.00073166882 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_Up diboson 1.00072972038 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_Down diboson 1.00049772798 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf Prefire_Weight_Up diboson 1.00207939311 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf Prefire_Weight_Down diboson 1.00206923491 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_Up diboson 1.00738872768 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_Down diboson 1.00738872768 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_Up diboson 1.00112908452 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_Down diboson 1.00112908452 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_Up diboson 1.00450881435 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_Down diboson 1.00449296892 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 Prefire_Weight_Up diboson 1.00196016059 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 Prefire_Weight_Down diboson 1.00204377408 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 Prefire_Weight_Up diboson 1.00063963622 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 Prefire_Weight_Down diboson 1.00063972215 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 Prefire_Weight_Up diboson 1.0017890217 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 Prefire_Weight_Down diboson 1.00235878358 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_Up diboson 1.00198148346 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_Down diboson 1.00199228902 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf Prefire_Weight_Up diboson 1.00352187038 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf Prefire_Weight_Down diboson 1.00351145065 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 Prefire_Weight_Up diboson 1.0013727805 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 Prefire_Weight_Down diboson 1.00148277732 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf Prefire_Weight_Up diboson 1.00035873804 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf Prefire_Weight_Down diboson 1.00131898134 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_Down diboson 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_Up diboson 1.00394213612 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_Down diboson 1.00394213612 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_Up diboson 1.00021578366 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_Down diboson 1.00027961166 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_Up diboson 1.00320687883 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_Down diboson 1.00343505036 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 Prefire_Weight_Up diboson 1.00046178598 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 Prefire_Weight_Down diboson 1.00046195008 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_Up diboson 1.00199838364 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_Down diboson 1.00199503466 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf Prefire_Weight_Up diboson 1.02145803939 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf Prefire_Weight_Down diboson 1.02145803939 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf Prefire_Weight_Up diboson 1.00463530989 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf Prefire_Weight_Down diboson 1.00462818203 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_Up diboson 1.0007027358 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_Down diboson 1.00071647879 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 Prefire_Weight_Up diboson 1.00222500644 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 Prefire_Weight_Down diboson 1.00224237152 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 Prefire_Weight_Up diboson 1.00475199028 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 Prefire_Weight_Down diboson 1.0046000244 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_Up diboson 1.00059298958 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_Down diboson 1.00059298958 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 Prefire_Weight_Up diboson 1.00135909601 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 Prefire_Weight_Down diboson 1.00135306668 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf Prefire_Weight_Up diboson 1.00079075356 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf Prefire_Weight_Down diboson 1.00078938291 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_Up diboson 1.00398334034 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_Down diboson 1.00400645741 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_Up diboson 1.00265088767 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_Down diboson 1.00280163589 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf Prefire_Weight_Up diboson 1.00204364156 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf Prefire_Weight_Down diboson 1.0021513828 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf Prefire_Weight_Up diboson 1.00038165762 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf Prefire_Weight_Down diboson 1.00044863418 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 Prefire_Weight_Up diboson 1.00057842458 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 Prefire_Weight_Down diboson 1.00060764858 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf Prefire_Weight_Up diboson 1.0008134566 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf Prefire_Weight_Down diboson 1.0008134566 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 Prefire_Weight_Up diboson 1.00222784821 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 Prefire_Weight_Down diboson 1.00234346979 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 Prefire_Weight_Up diboson 1.00244866043 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 Prefire_Weight_Down diboson 1.00244141305 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf Prefire_Weight_Up diboson 2 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf Prefire_Weight_Down diboson 0.001 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_Up diboson 1.00352990657 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_Down diboson 1.00361098036 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_Up diboson 1.00083852068 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_Down diboson 1.00091081868 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf Prefire_Weight_Up diboson 1.00549534546 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf Prefire_Weight_Down diboson 1.00549446325 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 Prefire_Weight_Up diboson 1.00092412712 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 Prefire_Weight_Down diboson 1.00092545606 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 Prefire_Weight_Up diboson 1.00013645606 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 Prefire_Weight_Down diboson 1.0001365641 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_Up diboson 1.00497731328 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_Down diboson 1.00494648349 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 Prefire_Weight_Up diboson 1.00012408309 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 Prefire_Weight_Down diboson 1.0001213402 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 Prefire_Weight_Up diboson 1.0009429558 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 Prefire_Weight_Down diboson 1.00096705386 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf Prefire_Weight_Up diboson 1.00143012454 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf Prefire_Weight_Down diboson 1.00143012454 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_Up diboson 1.00124261818 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_Down diboson 1.00134991379 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 Prefire_Weight_Up diboson 1.01380940678 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 Prefire_Weight_Down diboson 1.01366849969 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf Prefire_Weight_Up diboson 2 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf Prefire_Weight_Down diboson 0.001 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 Prefire_Weight_Up diboson 1.00444052733 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 Prefire_Weight_Down diboson 1.00441310931 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_Up diboson 1.00180574616 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_Down diboson 1.00214937292 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf Prefire_Weight_Up diboson 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf Prefire_Weight_Down diboson 1.0 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 Prefire_Weight_Up diboson 1.00239592126 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 Prefire_Weight_Down diboson 1.00239592126 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_Up diboson 1.00378408294 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_Down diboson 1.00382872887 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_Up diboson 1.00711786503 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_Down diboson 1.00711786503 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_Up diboson 1.00317082273 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_Down diboson 1.00319307942 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_Up diboson 1.00350062285 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_Down diboson 1.00402808499 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 Prefire_Weight_Up diboson 1.00122537833 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 Prefire_Weight_Down diboson 1.00123756293 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 Prefire_Weight_Up diboson 1.00289570815 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 Prefire_Weight_Down diboson 1.00289094621 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_Up diboson 1.00145872321 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_Down diboson 1.00144738854 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_Up diboson 1.00591789242 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_Down diboson 1.00594683706 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 Prefire_Weight_Up diboson 1.003431393 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 Prefire_Weight_Down diboson 1.00341553207 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_Up diboson 1.00545816094 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_Down diboson 1.00551210559 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_Up diboson 1.00152604551 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_Down diboson 1.00152625909 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 Prefire_Weight_Up diboson 1.00136926519 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 Prefire_Weight_Down diboson 1.00139361416 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf Prefire_Weight_Up diboson 1.00213497191 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf Prefire_Weight_Down diboson 1.00213472347 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_Up diboson 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_Down diboson 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 Prefire_Weight_Up diboson 1.00135858135 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 Prefire_Weight_Down diboson 1.00139365374 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_Up diboson 1.00095594994 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_Down diboson 1.00167976632 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_Up diboson 1.00225191811 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_Down diboson 1.00169298388 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_Up diboson 1.00539972608 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_Down diboson 1.00541776343 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_Up diboson 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_Down diboson 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf Prefire_Weight_Up diboson 1.00000007324 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf Prefire_Weight_Down diboson 1.00056291081 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf Prefire_Weight_Up diboson 1.00265154201 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf Prefire_Weight_Down diboson 1.00276853677 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_Up diboson 1.00635855088 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_Down diboson 1.00632891694 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_Up diboson 1.00493876104 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_Down diboson 1.00505120417 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 Prefire_Weight_Up diboson 1.00705976535 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 Prefire_Weight_Down diboson 1.00699010564 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf Prefire_Weight_Up diboson 1.00290268117 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf Prefire_Weight_Down diboson 1.00288354873 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf Prefire_Weight_Up diboson 1.00110969144 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf Prefire_Weight_Down diboson 1.00160432282 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf Prefire_Weight_Up diboson 1.00047189931 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf Prefire_Weight_Down diboson 1.00047175574 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_Up diboson 1.00431605347 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_Down diboson 1.00430733046 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf Prefire_Weight_Up diboson 1.0008939112 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf Prefire_Weight_Down diboson 1.0013427372 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_Up diboson 1.0006969922 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_Down diboson 1.00069570386 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 Prefire_Weight_Up diboson 1.0021266377 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 Prefire_Weight_Down diboson 1.0021283959 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 Prefire_Weight_Up diboson 1.00270330909 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 Prefire_Weight_Down diboson 1.00273451496 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf Prefire_Weight_Up diboson 1.00081299973 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf Prefire_Weight_Down diboson 1.00080893088 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 Prefire_Weight_Up diboson 1.0013561837 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 Prefire_Weight_Down diboson 1.00178126832 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf Prefire_Weight_Up diboson 1.00258750804 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf Prefire_Weight_Down diboson 1.00264650528 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf Prefire_Weight_Up diboson 1.00574848835 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf Prefire_Weight_Down diboson 1.00570363411 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf Prefire_Weight_Up diboson 1.00153219421 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf Prefire_Weight_Down diboson 1.00153219421 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf Prefire_Weight_Up diboson 1.00080762224 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf Prefire_Weight_Down diboson 1.00080751306 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 Prefire_Weight_Up diboson 1.00331682462 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 Prefire_Weight_Down diboson 1.00340609697 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 Prefire_Weight_Up diboson 1.00156922313 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 Prefire_Weight_Down diboson 1.00161524017 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf Prefire_Weight_Up diboson 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf Prefire_Weight_Down diboson 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 Prefire_Weight_Up diboson 1.00231915071 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 Prefire_Weight_Down diboson 1.00236083368 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf Prefire_Weight_Up diboson 1.00677414533 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf Prefire_Weight_Down diboson 1.00680088106 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf Prefire_Weight_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf Prefire_Weight_Down diboson 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_Up diboson 1.00060658794 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_Down diboson 1.00065352363 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 Prefire_Weight_Up diboson 1.00653094229 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 Prefire_Weight_Down diboson 1.00712110278 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_Up diboson 1.00195015583 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_Down diboson 1.00195035091 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 Prefire_Weight_Up diboson 1.00000498492 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 Prefire_Weight_Down diboson 1.00000567249 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_Up diboson 1.00196057451 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_Down diboson 1.00186014699 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 Prefire_Weight_Up diboson 1.00252617086 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 Prefire_Weight_Down diboson 1.00252953443 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 Prefire_Weight_Up diboson 1.00306949281 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 Prefire_Weight_Down diboson 1.00306134146 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_Up diboson 1.0029013217 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_Down diboson 1.00302082 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_Down diboson 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_Up diboson 1.00188958195 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_Down diboson 1.00195207718 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 Prefire_Weight_Up diboson 1.00066183851 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 Prefire_Weight_Down diboson 1.00066216595 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_Up diboson 1.00258267978 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_Down diboson 1.00257356679 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf Prefire_Weight_Up diboson 2 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf Prefire_Weight_Down diboson 0.001 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_Up diboson 1.00026164486 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_Down diboson 1.00026242911 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_Up diboson 1.0120773144 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_Down diboson 1.01200759138 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf Prefire_Weight_Up diboson 1.00197090536 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf Prefire_Weight_Down diboson 1.00195646498 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 Prefire_Weight_Up diboson 1.00236175222 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 Prefire_Weight_Down diboson 1.00235833929 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf Prefire_Weight_Up diboson 1.0 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf Prefire_Weight_Down diboson 1.0 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_Up diboson 1.00095024595 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_Down diboson 1.00135221878 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 Prefire_Weight_Up diboson 1.00042471097 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 Prefire_Weight_Down diboson 1.00042491684 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_Up diboson 1.00129332862 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_Down diboson 1.0012776324 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_Up diboson 1.00324553531 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_Down diboson 1.00328161233 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_Up diboson 1.00196170232 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_Down diboson 1.00202581305 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_Up diboson 1.00160026959 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_Down diboson 1.00160013349 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_Up diboson 1.08786551009 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_Down diboson 1.08791073113 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_Up diboson 1.00527890873 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_Down diboson 1.00572704954 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_Up diboson 1.00997311393 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_Down diboson 1.00989296167 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_Up diboson 1.00868457752 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_Down diboson 1.00880904371 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf Prefire_Weight_Up diboson 1.00134328746 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf Prefire_Weight_Down diboson 1.00133816562 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 Prefire_Weight_Up diboson 1.00166230322 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 Prefire_Weight_Down diboson 1.00201671196 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 Prefire_Weight_Up diboson 1.00556418175 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 Prefire_Weight_Down diboson 1.00573139538 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 Prefire_Weight_Up diboson 1.00467649953 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 Prefire_Weight_Down diboson 1.0049819292 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf Prefire_Weight_Up diboson 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf Prefire_Weight_Down diboson 1.0 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 Prefire_Weight_Up diboson 1.00222760917 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 Prefire_Weight_Down diboson 1.00222066236 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_Down diboson 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_Up diboson 1.0014466236 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_Down diboson 1.0014363749 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_Up diboson 1.00106936585 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_Down diboson 1.00118214706 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 Prefire_Weight_Up diboson 1.00122564865 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 Prefire_Weight_Down diboson 1.00138486309 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 Prefire_Weight_Up diboson 1.00029799369 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 Prefire_Weight_Down diboson 1.00031390209 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_Up diboson 1.0057396629 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_Down diboson 1.00571737671 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_Up diboson 1.00798363024 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_Down diboson 1.00796137374 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_Up diboson 1.00077232272 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_Down diboson 1.00077232272 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_Up diboson 1.00349299031 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_Down diboson 1.00331867666 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_Up diboson 1.00655829406 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_Down diboson 1.00656791293 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_Up diboson 1.00807241236 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_Down diboson 1.00855240253 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_Up diboson 1.00018164742 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_Down diboson 1.00019167654 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 Prefire_Weight_Up diboson 1.00416284025 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 Prefire_Weight_Down diboson 1.00421104036 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_Up diboson 1.00211548455 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_Down diboson 1.00210054862 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 Prefire_Weight_Up diboson 1.00027567346 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 Prefire_Weight_Down diboson 1.00027558445 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 Prefire_Weight_Up diboson 1.01682786886 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 Prefire_Weight_Down diboson 1.01679473871 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_Up diboson 1.00308324761 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_Down diboson 1.00316351074 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_Up diboson 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_Down diboson 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_Up diboson 1.00224612179 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_Down diboson 1.00222036965 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 Prefire_Weight_Up diboson 1.00203443926 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 Prefire_Weight_Down diboson 1.00207678977 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_Down diboson 1.0 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 Prefire_Weight_Up diboson 1.00039475881 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 Prefire_Weight_Down diboson 1.00048984376 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 Prefire_Weight_Up diboson 1.00705192317 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 Prefire_Weight_Down diboson 1.00707495747 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_Up diboson 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_Down diboson 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_Up diboson 1.00401537518 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_Down diboson 1.00401537518 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 Prefire_Weight_Up diboson 1.02732432354 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 Prefire_Weight_Down diboson 1.02615412982 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_Up diboson 1.0006176443 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_Down diboson 1.0006176443 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 Prefire_Weight_Up diboson 1.0022177464 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 Prefire_Weight_Down diboson 1.00223513053 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 Prefire_Weight_Up diboson 1.00369013539 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 Prefire_Weight_Down diboson 1.00374604154 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 Prefire_Weight_Up diboson 1.00133930489 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 Prefire_Weight_Down diboson 1.00145199701 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 Prefire_Weight_Up diboson 1.01034258203 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 Prefire_Weight_Down diboson 1.01025415992 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 Prefire_Weight_Up diboson 1.0058584055 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 Prefire_Weight_Down diboson 1.00587108009 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 Prefire_Weight_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 Prefire_Weight_Down diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf Prefire_Weight_Up diboson 1.00004625189 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf Prefire_Weight_Down diboson 1.00004625189 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_Down diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 Prefire_Weight_Up diboson 1.00319490179 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 Prefire_Weight_Down diboson 1.0032105218 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_Up diboson 1.00000036084 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_Down diboson 1.00000036084 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 Prefire_Weight_Up diboson 1.00230674221 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 Prefire_Weight_Down diboson 1.0025155402 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_Up diboson 1.00399942237 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_Down diboson 1.00406958475 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf Prefire_Weight_Up diboson 1.00275730922 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf Prefire_Weight_Down diboson 1.00248217 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_Up diboson 1.0005173999 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_Down diboson 1.00051750753 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_Up diboson 1.00574916249 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_Down diboson 1.00584488121 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf Prefire_Weight_Up diboson 1.00003983159 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf Prefire_Weight_Down diboson 1.00003994347 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PDF_Weight_Up diboson 1.04806867242 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PDF_Weight_Down diboson 1.04806867242 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PDF_Weight_Up diboson 1.02353549999 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PDF_Weight_Down diboson 1.0235355774 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PDF_Weight_Up diboson 1.03156854034 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PDF_Weight_Down diboson 1.03156854034 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PDF_Weight_Up diboson 1.04373602485 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PDF_Weight_Down diboson 1.04373611635 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PDF_Weight_Up diboson 1.02329241871 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PDF_Weight_Down diboson 1.02329211328 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PDF_Weight_Up diboson 1.01905571901 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PDF_Weight_Down diboson 1.01905585201 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PDF_Weight_Up diboson 1.02410862726 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PDF_Weight_Down diboson 1.02410862726 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PDF_Weight_Up diboson 1.01861246404 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PDF_Weight_Down diboson 1.01861246404 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PDF_Weight_Up diboson 1.09621627338 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PDF_Weight_Down diboson 1.09621640267 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PDF_Weight_Up diboson 1.0338525281 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PDF_Weight_Down diboson 1.03385243587 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PDF_Weight_Up diboson 1.12640598164 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PDF_Weight_Down diboson 1.12640605354 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PDF_Weight_Up diboson 1.02505811292 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PDF_Weight_Down diboson 1.01476612143 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PDF_Weight_Up diboson 1.02546753881 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PDF_Weight_Down diboson 1.02546774825 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PDF_Weight_Up diboson 1.08166575115 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PDF_Weight_Down diboson 1.08166575115 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PDF_Weight_Up diboson 1.10007770579 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PDF_Weight_Down diboson 1.10007760425 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_Up diboson 1.0909000003 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_Down diboson 1.0909000003 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PDF_Weight_Up diboson 1.02713599926 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PDF_Weight_Down diboson 1.02713583237 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PDF_Weight_Up diboson 1.04987031556 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PDF_Weight_Down diboson 1.04987031556 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PDF_Weight_Up diboson 1.01899741096 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PDF_Weight_Down diboson 1.01899741096 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PDF_Weight_Up diboson 1.02961384775 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PDF_Weight_Down diboson 1.02961373156 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PDF_Weight_Up diboson 1.04441895217 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PDF_Weight_Down diboson 1.04441895217 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PDF_Weight_Up diboson 1.04031039897 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PDF_Weight_Down diboson 1.04031039897 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PDF_Weight_Up diboson 1.02906525773 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PDF_Weight_Down diboson 1.02906525773 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PDF_Weight_Up diboson 1.07991701383 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PDF_Weight_Down diboson 1.07991686792 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PDF_Weight_Up diboson 1.01329008193 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PDF_Weight_Down diboson 1.01329029521 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_Up diboson 1.05166386481 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_Down diboson 1.05166386481 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PDF_Weight_Up diboson 1.02499197139 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PDF_Weight_Down diboson 1.02499189531 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PDF_Weight_Up diboson 1.02998802704 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PDF_Weight_Down diboson 1.02998819114 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PDF_Weight_Up diboson 1.03665397762 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PDF_Weight_Down diboson 1.03665391782 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PDF_Weight_Up diboson 1.38127806151 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PDF_Weight_Down diboson 1.25615760153 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PDF_Weight_Up diboson 1.04986943963 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PDF_Weight_Down diboson 1.04986954445 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PDF_Weight_Up diboson 1.06852629364 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PDF_Weight_Down diboson 1.06852637744 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PDF_Weight_Up diboson 1.0217044131 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PDF_Weight_Down diboson 1.02170416021 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PDF_Weight_Up diboson 1.00511115934 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PDF_Weight_Down diboson 1.00511109599 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PDF_Weight_Up diboson 1.04567826351 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PDF_Weight_Down diboson 1.04567834525 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PDF_Weight_Up diboson 1.04110750778 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PDF_Weight_Down diboson 1.04110750778 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PDF_Weight_Up diboson 1.04923654531 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PDF_Weight_Down diboson 1.04923631687 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PDF_Weight_Up diboson 1.06879217964 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PDF_Weight_Down diboson 1.06287228981 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PDF_Weight_Up diboson 1.02537110051 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PDF_Weight_Down diboson 1.0253709543 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PDF_Weight_Up diboson 1.06349504844 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PDF_Weight_Down diboson 1.06348691309 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PDF_Weight_Up diboson 1.05955785835 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PDF_Weight_Down diboson 1.05955801375 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PDF_Weight_Up diboson 1.01144060367 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PDF_Weight_Down diboson 1.01104798844 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PDF_Weight_Up diboson 1.03007156857 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PDF_Weight_Down diboson 1.03007166259 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PDF_Weight_Up diboson 1.04540316175 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PDF_Weight_Down diboson 1.01048489913 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PDF_Weight_Up diboson 1.02036360862 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PDF_Weight_Down diboson 1.02036351326 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PDF_Weight_Up diboson 2 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PDF_Weight_Down diboson 0.001 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PDF_Weight_Up diboson 1.07988466039 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PDF_Weight_Down diboson 1.07988453252 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PDF_Weight_Up diboson 1.09946649134 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PDF_Weight_Down diboson 1.09946649134 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PDF_Weight_Up diboson 1.10992379727 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PDF_Weight_Down diboson 1.10992386029 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PDF_Weight_Up diboson 1.03268424989 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PDF_Weight_Down diboson 1.03268424989 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PDF_Weight_Up diboson 1.02927301119 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PDF_Weight_Down diboson 1.02927301119 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PDF_Weight_Up diboson 1.04581741281 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PDF_Weight_Down diboson 1.04581741281 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PDF_Weight_Up diboson 1.01173336242 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PDF_Weight_Down diboson 1.01173329711 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PDF_Weight_Up diboson 1.01496476033 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PDF_Weight_Down diboson 1.01496489648 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PDF_Weight_Up diboson 1.00502182634 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PDF_Weight_Down diboson 1.00502198318 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PDF_Weight_Up diboson 1.07354751898 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PDF_Weight_Down diboson 1.07354764625 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PDF_Weight_Up diboson 1.03904129929 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PDF_Weight_Down diboson 1.03904109449 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PDF_Weight_Up diboson 2 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PDF_Weight_Down diboson 0.001 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PDF_Weight_Up diboson 1.04268946151 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PDF_Weight_Down diboson 1.04161241011 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PDF_Weight_Up diboson 1.02359317711 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PDF_Weight_Down diboson 1.02359296051 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PDF_Weight_Up diboson 1.07737549386 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PDF_Weight_Down diboson 1.07737558426 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PDF_Weight_Up diboson 1.03370321784 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PDF_Weight_Down diboson 1.03370328174 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PDF_Weight_Up diboson 1.07378248955 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PDF_Weight_Down diboson 1.07134556036 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PDF_Weight_Up diboson 1.04596664334 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PDF_Weight_Down diboson 1.04596664334 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PDF_Weight_Up diboson 1.05952855566 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PDF_Weight_Down diboson 1.05952844762 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_Up diboson 1.04572721053 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_Down diboson 1.04572714643 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PDF_Weight_Up diboson 1.06989705872 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PDF_Weight_Down diboson 1.06989726524 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PDF_Weight_Up diboson 1.0158802579 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PDF_Weight_Down diboson 1.01588016805 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PDF_Weight_Up diboson 1.04911353489 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PDF_Weight_Down diboson 1.04879330572 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PDF_Weight_Up diboson 1.03156991867 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PDF_Weight_Down diboson 1.03156991867 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PDF_Weight_Up diboson 1.19277386831 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PDF_Weight_Down diboson 1.19277375968 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PDF_Weight_Up diboson 1.04707839183 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PDF_Weight_Down diboson 1.04707846198 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_Up diboson 1.04781851314 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_Down diboson 1.04781872672 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PDF_Weight_Up diboson 1.00553741292 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PDF_Weight_Down diboson 1.00534189279 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PDF_Weight_Up diboson 1.05445625544 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PDF_Weight_Down diboson 1.05445619333 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PDF_Weight_Up diboson 1.01274858396 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PDF_Weight_Down diboson 1.01274866223 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PDF_Weight_Up diboson 1.00450727669 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PDF_Weight_Down diboson 1.00450739518 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PDF_Weight_Up diboson 1.02222175145 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PDF_Weight_Down diboson 1.02222182068 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_Up diboson 1.01496499107 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_Down diboson 1.0149652835 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PDF_Weight_Up diboson 1.04127443975 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PDF_Weight_Down diboson 1.04127443975 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_Up diboson 1.05510602228 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_Down diboson 1.04500589525 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PDF_Weight_Up diboson 1.03234466782 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PDF_Weight_Down diboson 1.03234459458 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PDF_Weight_Up diboson 1.05012772237 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PDF_Weight_Down diboson 1.05012781493 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PDF_Weight_Up diboson 1.03234056854 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PDF_Weight_Down diboson 1.03234089965 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PDF_Weight_Up diboson 1.02138439167 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PDF_Weight_Down diboson 1.02138439167 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PDF_Weight_Up diboson 1.0397400001 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PDF_Weight_Down diboson 1.0397400001 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PDF_Weight_Up diboson 1.03235064863 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PDF_Weight_Down diboson 1.03235064863 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PDF_Weight_Up diboson 1.0318818796 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PDF_Weight_Down diboson 1.03188159467 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PDF_Weight_Up diboson 1.08128361493 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PDF_Weight_Down diboson 1.08128354315 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PDF_Weight_Up diboson 1.05032786466 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PDF_Weight_Down diboson 1.05032780727 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PDF_Weight_Up diboson 1.02952017331 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PDF_Weight_Down diboson 1.02952010273 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_Up diboson 1.15884744202 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_Down diboson 1.01099824056 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PDF_Weight_Up diboson 1.04824845911 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PDF_Weight_Down diboson 1.03805384324 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PDF_Weight_Up diboson 1.07021722331 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PDF_Weight_Down diboson 1.07021706328 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PDF_Weight_Up diboson 1.04939756863 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PDF_Weight_Down diboson 1.04939756863 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PDF_Weight_Up diboson 1.02745659596 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PDF_Weight_Down diboson 1.0274565283 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PDF_Weight_Up diboson 1.0047029373 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PDF_Weight_Down diboson 1.00470323985 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PDF_Weight_Up diboson 1.02719516876 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PDF_Weight_Down diboson 1.02719546647 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PDF_Weight_Up diboson 1.03387387428 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PDF_Weight_Down diboson 1.02954525471 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PDF_Weight_Up diboson 1.06240167442 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PDF_Weight_Down diboson 1.06240145606 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PDF_Weight_Up diboson 1.03532052777 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PDF_Weight_Down diboson 1.03532052777 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PDF_Weight_Up diboson 1.03108967918 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PDF_Weight_Down diboson 1.03108946809 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PDF_Weight_Up diboson 1.02218447803 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PDF_Weight_Down diboson 1.02218454699 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PDF_Weight_Up diboson 1.03303289545 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PDF_Weight_Down diboson 1.03303297056 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PDF_Weight_Up diboson 1.00648826067 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PDF_Weight_Down diboson 1.00648833885 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PDF_Weight_Up diboson 1.0465643956 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PDF_Weight_Down diboson 1.04656451416 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_Up diboson 1.02212839057 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_Down diboson 1.02025677399 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PDF_Weight_Up diboson 1.02371384268 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PDF_Weight_Down diboson 1.02371384268 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PDF_Weight_Up diboson 1.03211924412 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PDF_Weight_Down diboson 1.03211934166 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PDF_Weight_Up diboson 1.0296565641 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PDF_Weight_Down diboson 1.0296565641 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_Up diboson 1.0156508871 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_Down diboson 1.0156508871 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PDF_Weight_Up diboson 1.0234732142 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PDF_Weight_Down diboson 1.02347341206 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PDF_Weight_Up diboson 1.03832968645 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PDF_Weight_Down diboson 1.03832960154 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PDF_Weight_Up diboson 1.05263445227 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PDF_Weight_Down diboson 1.05263433095 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PDF_Weight_Up diboson 1.01480267918 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PDF_Weight_Down diboson 1.01480267918 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PDF_Weight_Up diboson 1.05944988666 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PDF_Weight_Down diboson 1.05906598742 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PDF_Weight_Up diboson 1.01294444789 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PDF_Weight_Down diboson 1.01125739411 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PDF_Weight_Up diboson 1.11132520321 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PDF_Weight_Down diboson 1.11132539307 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PDF_Weight_Up diboson 2 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PDF_Weight_Down diboson 0.001 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PDF_Weight_Up diboson 1.04802050809 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PDF_Weight_Down diboson 1.04802060613 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PDF_Weight_Up diboson 1.00201090617 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PDF_Weight_Down diboson 1.0020110875 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PDF_Weight_Up diboson 1.04484042804 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PDF_Weight_Down diboson 1.04484026301 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PDF_Weight_Up diboson 1.01774717065 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PDF_Weight_Down diboson 1.01774737141 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PDF_Weight_Up diboson 1.05780264637 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PDF_Weight_Down diboson 1.05780241329 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PDF_Weight_Up diboson 1.05562278635 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PDF_Weight_Down diboson 1.05562289496 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PDF_Weight_Up diboson 1.03809984764 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PDF_Weight_Down diboson 1.03809995057 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_Up diboson 1.0445136867 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_Down diboson 1.0445136867 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PDF_Weight_Up diboson 1.04828874278 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PDF_Weight_Down diboson 1.04828874278 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PDF_Weight_Up diboson 1.04375737507 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PDF_Weight_Down diboson 1.04375759069 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PDF_Weight_Up diboson 1.02577001575 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PDF_Weight_Down diboson 1.02576974355 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PDF_Weight_Up diboson 1.01335161817 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PDF_Weight_Down diboson 1.01335167855 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_Up diboson 1.026829122 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_Down diboson 1.02682919453 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PDF_Weight_Up diboson 1.02311753539 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PDF_Weight_Down diboson 1.02311746665 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PDF_Weight_Up diboson 1.06087302762 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PDF_Weight_Down diboson 1.06087312403 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PDF_Weight_Up diboson 1.07518596826 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PDF_Weight_Down diboson 1.07518596826 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PDF_Weight_Up diboson 1.02874208669 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PDF_Weight_Down diboson 1.02874208669 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PDF_Weight_Up diboson 1.04203264413 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PDF_Weight_Down diboson 1.04203276272 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PDF_Weight_Up diboson 1.02767525501 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PDF_Weight_Down diboson 1.02430165041 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PDF_Weight_Up diboson 1.01064860919 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PDF_Weight_Down diboson 1.01064860919 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PDF_Weight_Up diboson 1.04031077232 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PDF_Weight_Down diboson 1.04031077232 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PDF_Weight_Up diboson 1.01492009402 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PDF_Weight_Down diboson 1.01492000307 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PDF_Weight_Up diboson 1.03237720305 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PDF_Weight_Down diboson 1.03237720305 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PDF_Weight_Up diboson 1.02561495993 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PDF_Weight_Down diboson 1.0256147987 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PDF_Weight_Up diboson 1.05306770703 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PDF_Weight_Down diboson 1.05306793112 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PDF_Weight_Up diboson 1.01607406241 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PDF_Weight_Down diboson 1.01607397353 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PDF_Weight_Up diboson 1.02784487932 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PDF_Weight_Down diboson 1.02784479522 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PDF_Weight_Up diboson 1.09076692482 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PDF_Weight_Down diboson 1.00754517 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PDF_Weight_Up diboson 1.03783814665 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PDF_Weight_Down diboson 1.03783814665 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PDF_Weight_Up diboson 1.04244063831 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PDF_Weight_Down diboson 1.04244050396 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PDF_Weight_Up diboson 1.04876390112 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PDF_Weight_Down diboson 1.04876131142 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PDF_Weight_Up diboson 1.02624259584 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PDF_Weight_Down diboson 1.02624247834 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PDF_Weight_Up diboson 1.05623223141 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PDF_Weight_Down diboson 1.05623231164 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PDF_Weight_Up diboson 1.0210336386 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PDF_Weight_Down diboson 1.02103338492 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_Up diboson 1.02371684841 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_Down diboson 1.02371676634 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PDF_Weight_Up diboson 1.01568321176 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PDF_Weight_Down diboson 1.01568303374 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PDF_Weight_Up diboson 1.03775498515 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PDF_Weight_Down diboson 1.03775489156 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PDF_Weight_Up diboson 1.05969733954 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PDF_Weight_Down diboson 1.05969726432 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PDF_Weight_Up diboson 1.03731416581 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PDF_Weight_Down diboson 1.03731416581 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PDF_Weight_Up diboson 1.02345964294 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PDF_Weight_Down diboson 1.02345964294 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PDF_Weight_Up diboson 1.03146980566 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PDF_Weight_Down diboson 1.03146980566 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PDF_Weight_Up diboson 1.01247248606 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PDF_Weight_Down diboson 1.0124726221 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PDF_Weight_Up diboson 1.02274214092 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PDF_Weight_Down diboson 1.02274214092 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PDF_Weight_Up diboson 1.04048409297 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PDF_Weight_Down diboson 1.04048391714 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PDF_Weight_Up diboson 1.02748416579 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PDF_Weight_Down diboson 1.02748424979 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PDF_Weight_Up diboson 1.03259642753 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PDF_Weight_Down diboson 1.03259642753 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PDF_Weight_Up diboson 1.02134358343 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PDF_Weight_Down diboson 1.02134358343 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PDF_Weight_Up diboson 1.05061578701 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PDF_Weight_Down diboson 1.05061578701 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PDF_Weight_Up diboson 1.02722048618 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PDF_Weight_Down diboson 1.02713488717 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PDF_Weight_Up diboson 1.03146868201 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PDF_Weight_Down diboson 1.03146868201 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PDF_Weight_Up diboson 1.02334063932 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PDF_Weight_Down diboson 1.02334070094 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PDF_Weight_Up diboson 1.02020420669 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PDF_Weight_Down diboson 1.02020427681 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PDF_Weight_Up diboson 1.06933203771 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PDF_Weight_Down diboson 1.06933196359 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PDF_Weight_Up diboson 1.00798790714 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PDF_Weight_Down diboson 1.00798790714 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PDF_Weight_Up diboson 1.0044727574 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PDF_Weight_Down diboson 1.00447266243 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PDF_Weight_Up diboson 1.03304325509 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PDF_Weight_Down diboson 1.03304315467 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PDF_Weight_Up diboson 1.03581882607 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PDF_Weight_Down diboson 1.03581862322 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PDF_Weight_Up diboson 1.03059371174 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PDF_Weight_Down diboson 1.03059363957 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PDF_Weight_Up diboson 1.06847200182 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PDF_Weight_Down diboson 1.04158673186 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PDF_Weight_Up diboson 1.02662712353 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PDF_Weight_Down diboson 1.02662695687 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PDF_Weight_Up diboson 1.27620849045 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PDF_Weight_Down diboson 1.2761957462 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PDF_Weight_Up diboson 1.0198661326 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PDF_Weight_Down diboson 1.0198664555 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PDF_Weight_Up diboson 1.02559757823 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PDF_Weight_Down diboson 1.02559757823 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PDF_Weight_Up diboson 1.04533729859 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PDF_Weight_Down diboson 1.04533729859 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 JES_Up diboson 6.30867726944 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 JES_Down diboson 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 JES_Up diboson 1.17143511827 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 JES_Down diboson 1.01011480977 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_Up diboson 0.991054567584 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_Down diboson 0.975070611932 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf JES_Up diboson 0.723332660187 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf JES_Down diboson 0.589836908468 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 JES_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 JES_Down diboson 1.03955088942 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_Up diboson 1.09274253642 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_Down diboson 1.02654884618 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Up diboson 1.08977227325 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Down diboson 1.36389476025 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 JES_Up diboson 1.71546857365 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 JES_Down diboson 1.01664371681 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_Up diboson 1.00775275181 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_Down diboson 1.01158426405 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_Up diboson 1.22280918937 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_Down diboson 1.02926055236 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 JES_Up diboson 1.74192534246 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 JES_Down diboson 1.06219335975 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Up diboson 1.01421736405 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Down diboson 1.0089963551 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf JES_Up diboson 1.59663062078 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf JES_Down diboson 1.16034062419 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 JES_Up diboson 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 JES_Down diboson 1.35320877616 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf JES_Up diboson 1.12931073959 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf JES_Down diboson 1.24972958324 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_Up diboson 1.10621552514 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_Down diboson 1.15871364894 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_Up diboson 1.06756270511 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_Down diboson 1.0057351178 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 JES_Up diboson 0.958650233527 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 JES_Down diboson 0.891650315586 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 JES_Up diboson 1.1007590886 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 JES_Down diboson 1.05485298539 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 JES_Up diboson 1.04947422834 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 JES_Down diboson 1.02671795859 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf JES_Up diboson 0.831196293534 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf JES_Down diboson 0.76932783423 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_Up diboson 1.03084530632 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_Down diboson 1.01947916336 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf JES_Up diboson 1.37866355545 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf JES_Down diboson 1.08528856432 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 JES_Up diboson 0.82175525762 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 JES_Down diboson 0.82175525762 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 JES_Up diboson 1.15895361133 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 JES_Down diboson 1.00249225472 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf JES_Up diboson 1.03100332449 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf JES_Down diboson 1.01551212368 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_Up diboson 1.05648496712 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_Down diboson 1.08692323067 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 JES_Up diboson 1.00064533524 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 JES_Down diboson 1.13253167353 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf JES_Up diboson 1.03652874973 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf JES_Down diboson 1.12711797508 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf JES_Up diboson 0.873291866219 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf JES_Down diboson 0.779597119824 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf JES_Up diboson 1.0399397025 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf JES_Down diboson 1.03593457925 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_Up diboson 1.06283485432 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_Down diboson 1.24719590734 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_Up diboson 0.998391201063 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_Down diboson 0.95770591088 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 JES_Up diboson 1.42302652441 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 JES_Down diboson 1.10133495599 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 JES_Up diboson 1.00921152986 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 JES_Down diboson 1.06919503341 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_Up diboson 1.03011794307 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_Down diboson 1.02823937764 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf JES_Up diboson 1.19763756234 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf JES_Down diboson 1.18896868511 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_Up diboson 0.996831100845 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_Down diboson 0.97576857333 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 JES_Up diboson 1.1230489273 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 JES_Down diboson 1.13227768641 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_Up diboson 1.10720200605 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_Down diboson 1.14612662964 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf JES_Up diboson 0.964242907672 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf JES_Down diboson 0.919038390623 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 JES_Up diboson 0.965565176366 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 JES_Down diboson 0.830360603099 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf JES_Up diboson 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf JES_Down diboson 1.05467327147 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 JES_Up diboson 1.21098624666 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 JES_Down diboson 1.07974014004 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 JES_Up diboson 0.999066041739 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 JES_Down diboson 0.729629143999 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf JES_Up diboson 2 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf JES_Down diboson 0.001 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_Up diboson 1.60424944281 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_Down diboson 1.02763983086 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 JES_Up diboson 1.22914149436 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 JES_Down diboson 1.0659108935 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf JES_Up diboson 1.28955827018 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf JES_Down diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 JES_Up diboson 1.0583348088 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 JES_Down diboson 1.21507065279 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 JES_Up diboson 1.2576868354 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 JES_Down diboson 1.1763974348 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_Up diboson 1.03075339381 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_Down diboson 1.03286991995 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 JES_Up diboson 1.46693747257 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 JES_Down diboson 1.13627562642 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 JES_Up diboson 1.1046890608 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 JES_Down diboson 1.10016992537 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf JES_Up diboson 1.03037469718 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf JES_Down diboson 1.01597879501 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 JES_Up diboson 2.70398678953 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 JES_Down diboson 1.79393590111 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 JES_Up diboson 1.01637696743 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 JES_Down diboson 1.01397980605 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf JES_Up diboson 2 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf JES_Down diboson 0.001 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 JES_Up diboson 1.2282055541 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 JES_Down diboson 1.13924887735 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 JES_Up diboson 1.10694286331 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 JES_Down diboson 1.09017316276 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf JES_Up diboson 0.95722444047 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf JES_Down diboson 0.878082956601 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 JES_Up diboson 0.987875217333 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 JES_Down diboson 0.913400251631 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_Up diboson 1.07430359636 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_Down diboson 1.11730857992 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 JES_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 JES_Down diboson 1.17389982916 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_Up diboson 1.00811224116 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_Down diboson 1.05243752946 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_Up diboson 1.06400388891 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_Down diboson 1.03739327033 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 JES_Up diboson 1.00568318637 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 JES_Down diboson 1.01176701889 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 JES_Up diboson 1.06873283905 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 JES_Down diboson 1.07276656077 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 JES_Up diboson 1.00007333041 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 JES_Down diboson 1.07173429081 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 JES_Up diboson 1.10699297674 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 JES_Down diboson 1.35301726966 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 JES_Up diboson 1.05791695129 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 JES_Down diboson 1.23684634495 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_Up diboson 1.02032549041 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_Down diboson 1.0901016748 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_Down diboson 1.13156226266 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_Up diboson 1.16925903388 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_Down diboson 1.18171842105 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf JES_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf JES_Down diboson 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf JES_Up diboson 1.0594538412 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf JES_Down diboson 1.01112439901 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 JES_Up diboson 2.42729385904 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 JES_Down diboson 2.42571346849 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 JES_Up diboson 0.945964528082 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 JES_Down diboson 0.931272613204 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_Up diboson 1.36651268519 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_Down diboson 1.05130945987 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_Up diboson 1.04645846921 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_Down diboson 1.0189906628 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_Up diboson 0.994822199526 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_Down diboson 0.168554222761 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf JES_Up diboson 1.26618972804 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf JES_Down diboson 1.01588930387 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf JES_Up diboson 0.961287690318 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf JES_Down diboson 0.916273398259 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf JES_Up diboson 1.06826850011 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf JES_Down diboson 1.40173375141 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Up diboson 1.16081716543 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Down diboson 1.09355728087 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 JES_Up diboson 1.33876925922 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 JES_Down diboson 1.08530051235 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf JES_Up diboson 1.10207808528 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf JES_Down diboson 1.06651355067 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf JES_Up diboson 1.24083362483 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf JES_Down diboson 1.14204639297 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf JES_Up diboson 1.23313089183 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf JES_Down diboson 1.03234347895 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 JES_Up diboson 1.19458039396 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 JES_Down diboson 1.07141539673 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf JES_Up diboson 0.818845807835 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf JES_Down diboson 0.707634502756 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 JES_Up diboson 1.15598238753 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 JES_Down diboson 1.60393944456 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 JES_Up diboson 1.06958946183 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 JES_Down diboson 1.00937285384 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 JES_Up diboson 1.05953369138 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 JES_Down diboson 1.04287567435 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf JES_Up diboson 1.44693848914 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf JES_Down diboson 1.04360462942 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 JES_Up diboson 0.9577090199 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 JES_Down diboson 0.663484960382 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf JES_Up diboson 1.18932063215 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf JES_Down diboson 1.15205273083 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf JES_Up diboson 1.1489713691 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf JES_Down diboson 1.0054480046 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf JES_Up diboson 1.1377633079 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf JES_Down diboson 1.02859086179 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf JES_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf JES_Down diboson 1.0 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 JES_Up diboson 1.02030545762 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 JES_Down diboson 1.07736728351 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 JES_Up diboson 0.996333518809 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 JES_Down diboson 0.968143440588 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf JES_Up diboson 1.34484760286 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf JES_Down diboson 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 JES_Up diboson 1.0252031801 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 JES_Down diboson 1.02431071377 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf JES_Up diboson 0.977283231102 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf JES_Down diboson 0.957646855753 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf JES_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf JES_Down diboson 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_Up diboson 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_Down diboson 1.02605333191 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 JES_Up diboson 1.10602657916 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 JES_Down diboson 1.34541924353 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 JES_Up diboson 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 JES_Down diboson 1.37112219501 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 JES_Up diboson 0.980495134677 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 JES_Down diboson 0.53411020123 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 JES_Up diboson 0.989325310322 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 JES_Down diboson 0.976931673622 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_Up diboson 0.924581898706 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_Down diboson 0.92451113189 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 JES_Up diboson 1.03120846314 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 JES_Down diboson 1.07816924071 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_Up diboson 1.0413294277 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_Down diboson 1.03216894269 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf JES_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf JES_Down diboson 1.95794668511 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_Up diboson 1.04276354578 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_Down diboson 1.02981636723 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 JES_Up diboson 1.00955151252 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 JES_Down diboson 1.76034684431 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 JES_Up diboson 1.19425725625 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 JES_Down diboson 1.0161832555 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf JES_Up diboson 2 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf JES_Down diboson 0.001 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_Up diboson 1.01653901391 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_Down diboson 1.04208629673 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf JES_Up diboson 1.01893138638 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf JES_Down diboson 1.02465166597 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf JES_Up diboson 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf JES_Down diboson 1.23535588849 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 JES_Up diboson 1.09607507256 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 JES_Down diboson 1.05853015857 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf JES_Up diboson 1.0393929481 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf JES_Down diboson 1.0 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Up diboson 1.25700400452 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Down diboson 1.21167589325 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 JES_Up diboson 1.09148836389 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 JES_Down diboson 1.00867888536 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf JES_Up diboson 1.34356670131 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf JES_Down diboson 1.12145013793 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_Up diboson 0.999866553817 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_Down diboson 0.959646417269 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_Up diboson 1.02768045771 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_Down diboson 1.02158763772 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf JES_Up diboson 0.99836325548 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf JES_Down diboson 0.838544598498 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 JES_Up diboson 1.04479636222 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 JES_Down diboson 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 JES_Up diboson 1.09672211723 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 JES_Down diboson 1.09431793861 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Up diboson 1.10780672058 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Down diboson 1.04304307215 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf JES_Up diboson 1.14183514834 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf JES_Down diboson 1.39755772469 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf JES_Up diboson 1.04825852945 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf JES_Down diboson 1.31674153656 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_Up diboson 1.06422372817 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_Down diboson 1.0340584025 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 JES_Up diboson 1.01555430666 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 JES_Down diboson 1.0070584312 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 JES_Up diboson 1.04873932882 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 JES_Down diboson 1.01170138208 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf JES_Up diboson 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf JES_Down diboson 1.0 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_Up diboson 1.10947703363 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_Down diboson 1.18060522736 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_Up diboson 1.0705198609 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_Down diboson 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 JES_Up diboson 1.03479926946 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 JES_Down diboson 1.01078370908 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Up diboson 1.11326015265 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Down diboson 1.21254123891 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 JES_Up diboson 3.21898158782 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 JES_Down diboson 1.03315044028 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 JES_Up diboson 1.01076474442 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 JES_Down diboson 1.00547746713 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 JES_Up diboson 1.05184467479 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 JES_Down diboson 1.01615101733 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_Up diboson 1.2460826934 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_Down diboson 1.11580236666 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_Up diboson 1.35442664281 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_Down diboson 1.22812503193 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 JES_Up diboson 1.05711952704 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 JES_Down diboson 1.03678239705 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_Up diboson 1.11447758433 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_Down diboson 1.17939119947 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Up diboson 1.96025798913 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Down diboson 1.09106006857 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 JES_Up diboson 1.66725691379 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 JES_Down diboson 1.18135536894 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_Up diboson 0.979997970522 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_Down diboson 0.871008333545 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 JES_Up diboson 0.685191189645 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 JES_Down diboson 0.666105256558 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 JES_Up diboson 1.03403975288 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 JES_Down diboson 1.01085220573 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 JES_Up diboson 5.16449735951 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 JES_Down diboson 1.13351318449 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 JES_Up diboson 0.972894004901 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 JES_Down diboson 0.588657322694 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf JES_Up diboson 1.01573831315 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf JES_Down diboson 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 JES_Up diboson 1.35108662886 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 JES_Down diboson 1.08655785068 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_Up diboson 1.03894235875 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_Down diboson 1.08168349225 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 JES_Up diboson 1.01947891528 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 JES_Down diboson 1.0 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 JES_Up diboson 2.73189231746 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 JES_Down diboson 1.68765321482 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_Up diboson 0.977922155335 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_Down diboson 0.669741305521 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_Up diboson 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_Down diboson 1.26055100392 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf JES_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf JES_Down diboson 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 JES_Up diboson 0.873094665822 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 JES_Down diboson 0.708675621249 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 JES_Up diboson 1.1530236085 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 JES_Down diboson 1.5390222658 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_Up diboson 1.1268304922 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_Down diboson 1.13477076645 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 JES_Up diboson 1.14645511077 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 JES_Down diboson 1.07893794571 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 JES_Up diboson 1.0007259985 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 JES_Down diboson 1.00876946796 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 JES_Up diboson 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 JES_Down diboson 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 JES_Up diboson 1.09737098503 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 JES_Down diboson 1.14940420137 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 JES_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 JES_Down diboson 1.45152446453 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf JES_Up diboson 3.26407864379 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf JES_Down diboson 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf JES_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf JES_Down diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 JES_Up diboson 0.931661924031 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 JES_Down diboson 0.877582589565 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf JES_Up diboson 0.901453555652 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf JES_Down diboson 0.778857586216 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 JES_Up diboson 1.05157853847 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 JES_Down diboson 1.02023272144 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 JES_Up diboson 1.1036250869 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 JES_Down diboson 1.11755440272 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf JES_Up diboson 1.11678658777 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf JES_Down diboson 1.03463101645 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 JES_Up diboson 1.19906904614 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 JES_Down diboson 1.17096918355 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Up diboson 0.993585592419 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Down diboson 0.968151305769 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf JES_Up diboson 1.05080854768 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf JES_Down diboson 1.01024399086 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 metres_Up diboson 1.11248419166 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 metres_Down diboson 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 metres_Up diboson 1.12289197384 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 metres_Down diboson 1.11855481042 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 metres_Up diboson 0.995764599603 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 metres_Down diboson 0.994883376886 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf metres_Up diboson 1.01419427674 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf metres_Down diboson 1.01009912277 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 metres_Up diboson 1.01126645273 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 metres_Down diboson 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_Up diboson 1.02262043253 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_Down diboson 1.0012194495 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Up diboson 0.979214206652 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Down diboson 0.800028500095 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 metres_Up diboson 1.06766317785 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 metres_Down diboson 1.02777460386 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf metres_Up diboson 1.00045051137 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf metres_Down diboson 1.012243385 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_Up diboson 1.00392264503 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_Down diboson 1.00145791794 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 metres_Up diboson 1.01893724295 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 metres_Down diboson 1.03298909544 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Up diboson 1.00383881395 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Down diboson 1.0 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf metres_Up diboson 1.15219060964 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf metres_Down diboson 1.09616292489 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 metres_Up diboson 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 metres_Down diboson 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf metres_Up diboson 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf metres_Down diboson 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_Up diboson 1.10621552514 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_Down diboson 1.05780848972 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 metres_Up diboson 1.03066879444 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 metres_Down diboson 1.01479633356 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 metres_Up diboson 1.09491869858 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 metres_Down diboson 1.14724504881 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 metres_Up diboson 1.01388301798 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 metres_Down diboson 1.0101760586 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 metres_Up diboson 1.03043530243 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 metres_Down diboson 1.00896942527 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf metres_Up diboson 5.66156202849 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf metres_Down diboson 1.05893137766 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 metres_Up diboson 1.01457063888 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 metres_Down diboson 1.00667342018 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf metres_Up diboson 1.30905557575 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf metres_Down diboson 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 metres_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 metres_Down diboson 1.17824474238 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 metres_Up diboson 1.00566274169 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 metres_Down diboson 1.02710639815 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf metres_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf metres_Down diboson 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_Up diboson 0.999097356809 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_Down diboson 0.974490134796 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 metres_Up diboson 1.01127404356 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 metres_Down diboson 1.01124827938 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf metres_Up diboson 1.03652874973 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf metres_Down diboson 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf metres_Up diboson 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf metres_Down diboson 1.0 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf metres_Up diboson 1.02882296714 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf metres_Down diboson 1.02109007822 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_Up diboson 1.00329529962 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_Down diboson 1.01661468215 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 metres_Up diboson 0.993797125438 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 metres_Down diboson 0.989746593725 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 metres_Up diboson 1.25343259828 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 metres_Down diboson 1.01727533469 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 metres_Up diboson 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 metres_Down diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 metres_Up diboson 1.00302801319 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 metres_Down diboson 1.01441766668 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf metres_Up diboson 1.08358309709 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf metres_Down diboson 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_Up diboson 1.02756778944 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_Down diboson 1.00996135307 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 metres_Up diboson 1.05568552898 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 metres_Down diboson 1.02206070767 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf metres_Up diboson 1.00401834125 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf metres_Down diboson 1.00930308527 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf metres_Up diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf metres_Down diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 metres_Up diboson 0.967207907435 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 metres_Down diboson 0.944348749739 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf metres_Up diboson 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf metres_Down diboson 1.05467327147 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 metres_Up diboson 1.07141502304 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 metres_Down diboson 1.01821103462 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 metres_Up diboson 0.99955619341 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 metres_Down diboson 0.727341499349 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf metres_Up diboson 2 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf metres_Down diboson 0.001 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 metres_Up diboson 1.1085900233 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 metres_Down diboson 1.04144686272 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 metres_Up diboson 1.02253715038 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 metres_Down diboson 1.03652690933 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf metres_Up diboson 1.28955827018 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf metres_Down diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 metres_Up diboson 1.01909242539 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 metres_Down diboson 1.0083864536 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 metres_Up diboson 1.07006245971 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 metres_Down diboson 1.03253121014 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_Up diboson 0.976310770251 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_Down diboson 0.899738401769 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 metres_Up diboson 1.02546296054 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 metres_Down diboson 1.03122792627 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 metres_Up diboson 0.999498365484 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 metres_Down diboson 0.978321342619 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf metres_Up diboson 1.0 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf metres_Down diboson 1.02332712248 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 metres_Up diboson 1.03509642223 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 metres_Down diboson 1.00412979944 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 metres_Up diboson 1.00163292474 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 metres_Down diboson 1.0 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf metres_Up diboson 2 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf metres_Down diboson 0.001 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 metres_Up diboson 0.990710555898 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 metres_Down diboson 0.922171463562 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 metres_Up diboson 1.00061047086 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 metres_Down diboson 1.00025872182 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf metres_Up diboson 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf metres_Down diboson 1.01591641999 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 metres_Up diboson 1.0179120929 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 metres_Down diboson 1.01777701242 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_Up diboson 1.04986211924 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_Down diboson 1.02420528783 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 metres_Up diboson 1.0561301258 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 metres_Down diboson 1.0 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_Up diboson 0.991078198573 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_Down diboson 0.960609323481 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_Up diboson 0.978734326784 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_Down diboson 0.975138570996 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 metres_Up diboson 1.01997809663 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 metres_Down diboson 1.0046629843 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 metres_Up diboson 1.07305254665 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 metres_Down diboson 1.05736555159 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 metres_Up diboson 1.01242664618 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 metres_Down diboson 1.00503683325 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 metres_Up diboson 0.982191006322 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 metres_Down diboson 0.745691027548 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 metres_Up diboson 1.00851753741 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 metres_Down diboson 1.02887786735 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_Up diboson 0.999857106289 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_Down diboson 0.994178536888 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_Down diboson 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 metres_Up diboson 1.00390228614 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 metres_Down diboson 1.00756191505 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf metres_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf metres_Down diboson 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf metres_Up diboson 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf metres_Down diboson 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 metres_Up diboson 2.46614957002 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 metres_Down diboson 1.02582939697 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 metres_Up diboson 0.996636382688 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 metres_Down diboson 0.943212779655 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_Up diboson 0.994222624261 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_Down diboson 0.990797568139 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_Up diboson 1.07626081404 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_Down diboson 1.00703203775 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_Up diboson 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_Down diboson 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf metres_Up diboson 1.17295599511 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf metres_Down diboson 1.03670740971 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf metres_Up diboson 1.01410120158 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf metres_Down diboson 1.07236450312 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf metres_Up diboson 1.0 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf metres_Down diboson 1.40173375141 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Up diboson 1.01394714651 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Down diboson 1.02574856944 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 metres_Up diboson 1.13362302236 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 metres_Down diboson 1.05967250872 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf metres_Up diboson 1.00228838466 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf metres_Down diboson 1.03507132948 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf metres_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf metres_Down diboson 1.00996746811 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf metres_Up diboson 1.0 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf metres_Down diboson 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 metres_Up diboson 1.06711059135 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 metres_Down diboson 1.07916223295 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf metres_Up diboson 1.0 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf metres_Down diboson 1.0151396019 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 metres_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 metres_Down diboson 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 metres_Up diboson 0.995773585952 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 metres_Down diboson 0.98198912125 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 metres_Up diboson 1.01360496209 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 metres_Down diboson 1.02719664167 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf metres_Up diboson 1.27837009445 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf metres_Down diboson 1.11672203965 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 metres_Up diboson 1.02958986845 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 metres_Down diboson 1.2409554484 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf metres_Up diboson 0.997375681721 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf metres_Down diboson 0.905892140135 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf metres_Up diboson 1.00892867421 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf metres_Down diboson 1.02296517524 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf metres_Up diboson 1.02859086179 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf metres_Down diboson 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf metres_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf metres_Down diboson 1.0 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 metres_Up diboson 1.03201310024 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 metres_Down diboson 1.01057990485 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 metres_Up diboson 1.02494967678 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 metres_Down diboson 1.18337334845 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf metres_Up diboson 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf metres_Down diboson 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 metres_Up diboson 1.00291953578 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 metres_Down diboson 1.01228754074 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf metres_Up diboson 1.05902388642 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf metres_Down diboson 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf metres_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf metres_Down diboson 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_Up diboson 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_Down diboson 1.0 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 metres_Up diboson 0.994806399621 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 metres_Down diboson 0.858516935773 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 metres_Up diboson 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 metres_Down diboson 1.0 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 metres_Up diboson 0.99833821755 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 metres_Down diboson 0.984996343391 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 metres_Up diboson 1.01715674036 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 metres_Down diboson 1.03202854491 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 metres_Up diboson 0.998580310838 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 metres_Down diboson 0.937798277511 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 metres_Up diboson 0.974698463725 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 metres_Down diboson 0.958472946433 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 metres_Up diboson 1.01762035814 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 metres_Down diboson 1.00572293743 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf metres_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf metres_Down diboson 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 metres_Up diboson 1.0118500917 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 metres_Down diboson 1.00515602994 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 metres_Up diboson 0.995563430856 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 metres_Down diboson 0.246861731253 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 metres_Up diboson 1.0465397815 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 metres_Down diboson 1.03916148294 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf metres_Up diboson 2 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf metres_Down diboson 0.001 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_Up diboson 0.983916340305 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_Down diboson 0.983661263522 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf metres_Up diboson 1.04999040742 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf metres_Down diboson 1.06064071193 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf metres_Up diboson 0.923553379395 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf metres_Down diboson 0.841090732116 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 metres_Up diboson 1.01641963864 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 metres_Down diboson 1.13155877353 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf metres_Up diboson 1.0 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf metres_Down diboson 1.0 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Up diboson 1.28670872121 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Down diboson 1.01653073881 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 metres_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 metres_Down diboson 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf metres_Up diboson 1.12381423076 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf metres_Down diboson 1.01639530981 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 metres_Up diboson 1.00123817886 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 metres_Down diboson 1.01535554369 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_Up diboson 1.00841776856 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_Down diboson 1.01902529255 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf metres_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf metres_Down diboson 1.07344554184 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 metres_Up diboson 1.02758652584 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 metres_Down diboson 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 metres_Up diboson 1.01823372469 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 metres_Down diboson 1.08282264452 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Up diboson 1.05792121596 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Down diboson 1.09966129825 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf metres_Up diboson 1.00944043724 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf metres_Down diboson 1.02985385587 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf metres_Up diboson 1.01226646125 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf metres_Down diboson 1.02790627901 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 metres_Up diboson 1.01164880859 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 metres_Down diboson 1.04995254125 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 metres_Up diboson 1.0795718667 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 metres_Down diboson 1.0565541398 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 metres_Up diboson 1.07765855165 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 metres_Down diboson 1.0167365109 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf metres_Up diboson 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf metres_Down diboson 1.0 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 metres_Up diboson 1.07360635105 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 metres_Down diboson 1.06014266887 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_Down diboson 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 metres_Up diboson 1.04001287444 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 metres_Down diboson 1.00897150524 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Up diboson 0.96270601718 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Down diboson 0.943596332571 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 metres_Up diboson 1.0946343278 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 metres_Down diboson 1.10462354917 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 metres_Up diboson 1.01266219904 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 metres_Down diboson 1.00524061858 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 metres_Up diboson 1.021620807 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 metres_Down diboson 1.02593583526 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_Up diboson 1.18860967578 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_Down diboson 1.04181263582 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_Up diboson 1.15612874399 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_Down diboson 1.07614169344 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 metres_Up diboson 1.02904481896 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 metres_Down diboson 1.0203854273 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 metres_Up diboson 1.07269920311 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 metres_Down diboson 1.00471997987 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Up diboson 1.16561529041 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Down diboson 1.00471577121 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 metres_Up diboson 0.992927865917 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 metres_Down diboson 0.852894315704 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 metres_Up diboson 0.932794845125 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 metres_Down diboson 0.926601258276 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 metres_Up diboson 1.10736071761 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 metres_Down diboson 1.38539683759 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 metres_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 metres_Down diboson 1.01085220573 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 metres_Up diboson 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 metres_Down diboson 1.36090583626 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 metres_Up diboson 1.02619647166 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 metres_Down diboson 1.001346871 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf metres_Up diboson 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf metres_Down diboson 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 metres_Up diboson 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 metres_Down diboson 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 metres_Up diboson 1.09562018653 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 metres_Down diboson 1.03005572432 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 metres_Up diboson 1.01947891528 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 metres_Down diboson 1.0 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 metres_Up diboson 1.02493282546 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 metres_Down diboson 1.00648231279 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 metres_Up diboson 1.01278930899 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 metres_Down diboson 1.3053303118 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_Up diboson 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_Down diboson 1.73944901708 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf metres_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf metres_Down diboson 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 metres_Up diboson 1.09819215571 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 metres_Down diboson 1.03235293103 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 metres_Up diboson 1.07074053373 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 metres_Down diboson 1.16555470722 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 metres_Up diboson 0.989854788695 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 metres_Down diboson 0.948166747691 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 metres_Up diboson 1.07284692127 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 metres_Down diboson 1.01264324715 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 metres_Up diboson 1.01099047009 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 metres_Down diboson 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 metres_Up diboson 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 metres_Down diboson 1.55701606302 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 metres_Up diboson 0.997142434656 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 metres_Down diboson 0.995737704067 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 metres_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 metres_Down diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf metres_Up diboson 1.02873315688 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf metres_Down diboson 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf metres_Up diboson 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf metres_Down diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 metres_Up diboson 1.00831704981 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 metres_Down diboson 1.24579393041 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf metres_Up diboson 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf metres_Down diboson 1.02598701714 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 metres_Up diboson 1.08481138808 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 metres_Down diboson 1.01383048895 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 metres_Up diboson 1.00758695323 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 metres_Down diboson 1.00542275209 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf metres_Up diboson 1.03635831729 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf metres_Down diboson 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 metres_Up diboson 1.1603012953 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 metres_Down diboson 1.05076890985 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Up diboson 1.19379416806 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Down diboson 1.04834490371 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf metres_Up diboson 1.01477371518 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf metres_Down diboson 1.01976978237 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ivfunc_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ivfunc_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_Up diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_Down diboson 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ivfunc_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_Down diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Up diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ivfunc_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_Up diboson 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_Down diboson 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ivfunc_Up diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ivfunc_Down diboson 1.0 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Up diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ivfunc_Up diboson 1.00255798026 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ivfunc_Down diboson 1.0025581897 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_Up diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_Down diboson 1.0 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ivfunc_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ivfunc_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ivfunc_Up diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ivfunc_Down diboson 1.0 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_Up diboson 1.00061931901 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_Down diboson 1.00061931901 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ivfunc_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ivfunc_Up diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ivfunc_Down diboson 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ivfunc_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ivfunc_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ivfunc_Down diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_Up diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_Down diboson 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ivfunc_Up diboson 1.04975948342 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ivfunc_Down diboson 1.04975948342 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ivfunc_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_Up diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_Down diboson 1.0 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ivfunc_Up diboson 1.0043873516 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ivfunc_Down diboson 1.00438723738 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ivfunc_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_Up diboson 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_Down diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ivfunc_Up diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ivfunc_Down diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ivfunc_Up diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ivfunc_Down diboson 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ivfunc_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ivfunc_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_Up diboson 1.05117693177 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_Down diboson 1.05117686783 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ivfunc_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ivfunc_Up diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ivfunc_Down diboson 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ivfunc_Up diboson 1.03840832816 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ivfunc_Down diboson 1.0384084362 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ivfunc_Up diboson 1.00010971558 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ivfunc_Down diboson 1.00010971558 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ivfunc_Down diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ivfunc_Up diboson 1.05402947158 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ivfunc_Down diboson 1.05402947158 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ivfunc_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ivfunc_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ivfunc_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ivfunc_Up diboson 1.00498264209 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ivfunc_Down diboson 1.00498270599 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ivfunc_Down diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ivfunc_Up diboson 1.00088575843 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ivfunc_Down diboson 1.00088586169 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ivfunc_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ivfunc_Up diboson 1.05351020549 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ivfunc_Down diboson 1.05351010693 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ivfunc_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ivfunc_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_Up diboson 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_Down diboson 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ivfunc_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Down diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ivfunc_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ivfunc_Down diboson 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_Down diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Up diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ivfunc_Up diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ivfunc_Down diboson 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ivfunc_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ivfunc_Up diboson 1.00370226326 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ivfunc_Down diboson 1.00370226326 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ivfunc_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ivfunc_Up diboson 1.0033673596 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ivfunc_Down diboson 1.00336743018 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ivfunc_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ivfunc_Up diboson 1.00143795079 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ivfunc_Down diboson 1.00143787078 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ivfunc_Up diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ivfunc_Down diboson 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ivfunc_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ivfunc_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ivfunc_Up diboson 1.00186145119 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ivfunc_Down diboson 1.00186145119 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ivfunc_Up diboson 1.03432785424 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ivfunc_Down diboson 1.03432785424 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ivfunc_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ivfunc_Up diboson 1.00081702474 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ivfunc_Down diboson 1.00081711175 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ivfunc_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ivfunc_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ivfunc_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ivfunc_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ivfunc_Up diboson 1.00778946032 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ivfunc_Down diboson 1.00778946032 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ivfunc_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ivfunc_Up diboson 1.00056355353 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ivfunc_Down diboson 1.00056355353 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ivfunc_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_Up diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_Down diboson 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ivfunc_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_Up diboson 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_Down diboson 1.0 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_Up diboson 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_Down diboson 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ivfunc_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ivfunc_Down diboson 1 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ivfunc_Down diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Up diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ivfunc_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ivfunc_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_Up diboson 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_Down diboson 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ivfunc_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Down diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Up diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ivfunc_Up diboson 1.04155705174 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ivfunc_Down diboson 1.04155714815 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ivfunc_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_Up diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_Down diboson 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ivfunc_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ivfunc_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ivfunc_Down diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_Up diboson 1.05225055679 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_Down diboson 1.05225063397 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_Down diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Up diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ivfunc_Up diboson 1.0 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ivfunc_Down diboson 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ivfunc_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ivfunc_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_Up diboson 1.05212399464 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_Down diboson 1.05212406863 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Up diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_Up diboson 1.00727174713 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_Down diboson 1.00727162028 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ivfunc_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ivfunc_Up diboson 1.04771096885 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ivfunc_Down diboson 1.04771096885 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ivfunc_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_Up diboson 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_Down diboson 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_Down diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ivfunc_Up diboson 1.04940141859 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ivfunc_Down diboson 1.04940141859 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_Up diboson 1.00213550777 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_Down diboson 1.00213533194 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ivfunc_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ivfunc_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_Up diboson 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_Down diboson 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ivfunc_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ivfunc_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ivfunc_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ivfunc_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ivfunc_Up diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ivfunc_Down diboson 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ivfunc_Up diboson 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ivfunc_Down diboson 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ivfunc_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ivfunc_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ivfunc_Up diboson 1.00670689941 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ivfunc_Down diboson 1.00670720136 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ivfunc_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ivfunc_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ivfunc_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ivfunc_Down diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Up diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ivfunc_Up diboson 1.01613996104 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ivfunc_Down diboson 1.01613996104 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_e_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_e_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_Down diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_Up diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_e_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_e_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_e_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_e_Down diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_Up diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_e_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_e_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_e_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_e_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_e_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_e_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_e_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_e_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_e_Down diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_e_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_e_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_e_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_e_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_e_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_e_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_e_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_e_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_e_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_e_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_e_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_e_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_e_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_e_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_e_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_e_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_e_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_e_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_e_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_e_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_e_Down diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_e_Up diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_e_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_e_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_e_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_e_Down diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_e_Down diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_e_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_e_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_e_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_e_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_Down diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_Down diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_Up diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_e_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_e_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_e_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_e_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_e_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_e_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_e_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_e_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_e_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_e_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_e_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_e_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_e_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_e_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_e_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_e_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_e_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_e_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_e_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_e_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_e_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_e_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_e_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_e_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_e_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_e_Down diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_Up diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_e_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_e_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_e_Down diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_Up diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_e_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_e_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_e_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_e_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_e_Down diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_e_Up diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_Down diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_Up diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_e_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_e_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_e_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_e_Down diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_Up diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_e_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_e_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_e_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_e_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_e_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_Down diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_e_Up diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_e_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_e_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_e_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_e_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_e_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_e_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_e_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_e_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_e_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_e_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_e_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_e_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_e_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_e_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_e_Down diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_Up diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_e_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_e_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 err_mu_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 err_mu_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_Down diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_Up diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 err_mu_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf err_mu_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 err_mu_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 err_mu_Down diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_Up diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf err_mu_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf err_mu_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 err_mu_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 err_mu_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf err_mu_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf err_mu_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 err_mu_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 err_mu_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf err_mu_Down diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 err_mu_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 err_mu_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 err_mu_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 err_mu_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 err_mu_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 err_mu_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf err_mu_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 err_mu_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf err_mu_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf err_mu_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf err_mu_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf err_mu_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 err_mu_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf err_mu_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 err_mu_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf err_mu_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 err_mu_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 err_mu_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 err_mu_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 err_mu_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 err_mu_Down diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf err_mu_Up diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf err_mu_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf err_mu_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 err_mu_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 err_mu_Down diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 err_mu_Down diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 err_mu_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 err_mu_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 err_mu_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 err_mu_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_Down diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_Down diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_Up diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 err_mu_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf err_mu_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf err_mu_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 err_mu_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf err_mu_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 err_mu_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 err_mu_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 err_mu_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf err_mu_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf err_mu_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf err_mu_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf err_mu_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf err_mu_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf err_mu_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 err_mu_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf err_mu_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 err_mu_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 err_mu_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 err_mu_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 err_mu_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 err_mu_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 err_mu_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 err_mu_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 err_mu_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf err_mu_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf err_mu_Down diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_Up diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf err_mu_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 err_mu_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 err_mu_Down diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_Up diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf err_mu_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf err_mu_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 err_mu_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf err_mu_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf err_mu_Down diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 err_mu_Up diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_Down diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_Up diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 err_mu_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 err_mu_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 err_mu_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 err_mu_Down diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_Up diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 err_mu_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 err_mu_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 err_mu_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 err_mu_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 err_mu_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_Down diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 err_mu_Up diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 err_mu_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 err_mu_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 err_mu_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 err_mu_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 err_mu_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf err_mu_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 err_mu_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 err_mu_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf err_mu_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf err_mu_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 err_mu_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 err_mu_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 err_mu_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 err_mu_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 err_mu_Down diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_Up diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf err_mu_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf err_mu_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_tau_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_tau_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_Down diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_Up diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_tau_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_tau_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_tau_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_tau_Down diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_Up diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_tau_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_tau_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_tau_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_tau_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_tau_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_tau_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_tau_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_tau_Down diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_tau_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_tau_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_tau_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_tau_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_tau_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_tau_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_tau_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_tau_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_tau_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_tau_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_tau_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_tau_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_tau_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_tau_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_tau_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_tau_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_tau_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_tau_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_tau_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_tau_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_tau_Down diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_tau_Up diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_tau_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_tau_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_tau_Down diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_tau_Down diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_tau_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_tau_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_tau_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_tau_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_Down diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_Down diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_Up diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_tau_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_tau_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_tau_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_tau_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_tau_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_tau_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_tau_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_tau_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_tau_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_tau_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_tau_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_tau_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_tau_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_tau_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_tau_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_tau_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_tau_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_tau_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_tau_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_tau_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_tau_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_tau_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_tau_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_tau_Down diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_Up diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_tau_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_tau_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_tau_Down diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_Up diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_tau_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_tau_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_tau_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_tau_Down diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_tau_Up diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_Down diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_Up diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_tau_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_tau_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_tau_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_tau_Down diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_Up diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_tau_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_tau_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_tau_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_tau_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_tau_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_Down diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_tau_Up diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_tau_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_tau_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_tau_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_tau_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_tau_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_tau_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_tau_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_tau_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_tau_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_tau_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_tau_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_tau_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_tau_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_tau_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_tau_Down diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_Up diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_tau_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_tau_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_wtag_Up diboson 1.07574255157 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_wtag_Down diboson 1.07574255157 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_wtag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_wtag_Up diboson 1.00560247931 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_wtag_Down diboson 1.00560227569 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_Down diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Up diboson 1.00235599725 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Down diboson 1.00235607691 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_wtag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_wtag_Down diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Up diboson 1.0 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Down diboson 1.0 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_wtag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_wtag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_wtag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_wtag_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_wtag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_wtag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_wtag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_wtag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_wtag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_wtag_Down diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_wtag_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_wtag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_wtag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_wtag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_wtag_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_wtag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_wtag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_wtag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_wtag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_wtag_Up diboson 1.08252438184 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_wtag_Down diboson 1.08252438184 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_wtag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_wtag_Up diboson 1.09762696025 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_wtag_Down diboson 1.09762686489 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_wtag_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_wtag_Up diboson 1.00143604788 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_wtag_Down diboson 1.00143604788 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_wtag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_wtag_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_wtag_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_wtag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_wtag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_wtag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_wtag_Down diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_wtag_Up diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_wtag_Up diboson 1.09252291276 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_wtag_Down diboson 1.09252281036 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_wtag_Up diboson 1.04012289631 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_wtag_Down diboson 1.04012309499 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_wtag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_wtag_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_wtag_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_wtag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_wtag_Down diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_wtag_Down diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_wtag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_wtag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_wtag_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_wtag_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_wtag_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_wtag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_wtag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_wtag_Up diboson 1.08287633771 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_wtag_Down diboson 1.08287621349 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_wtag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Down diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_wtag_Up diboson 1.08791515588 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_wtag_Down diboson 1.08791515588 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_wtag_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_wtag_Down diboson 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_Up diboson 1.0 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_Down diboson 1.0 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Up diboson 1.00028082417 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Down diboson 1.00028082417 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_wtag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_wtag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_wtag_Up diboson 1.09823101254 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_wtag_Down diboson 1.0982308309 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_wtag_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_wtag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_wtag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_wtag_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_wtag_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_wtag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_wtag_Up diboson 1.06036380821 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_wtag_Down diboson 1.06036390588 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_wtag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_wtag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_wtag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_wtag_Up diboson 1.08120944948 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_wtag_Down diboson 1.08120975203 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_wtag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_wtag_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_wtag_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_wtag_Up diboson 1.0378488446 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_wtag_Down diboson 1.0378488446 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_wtag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_wtag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_wtag_Up diboson 1.08978176949 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_wtag_Down diboson 1.0897815584 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_wtag_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_wtag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_wtag_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_wtag_Up diboson 1.0831855572 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_wtag_Down diboson 1.0831855572 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_wtag_Up diboson 1.16685266832 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_wtag_Down diboson 1.16685266832 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_wtag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_wtag_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_wtag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_wtag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_wtag_Up diboson 1.08220645162 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_wtag_Down diboson 1.08220636671 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_Up diboson 1.04185653498 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_Down diboson 1.04185653498 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_wtag_Up diboson 1.06248565914 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_wtag_Down diboson 1.06248549542 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_wtag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_wtag_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_wtag_Down diboson 1 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_wtag_Up diboson 1 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_wtag_Down diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Up diboson 1.00298595973 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Down diboson 1.00298595973 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Down diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Up diboson 1.01562467348 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Down diboson 1.01562460474 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_wtag_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_wtag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_wtag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_wtag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_wtag_Up diboson 1.09253010212 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_wtag_Down diboson 1.09252977168 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_wtag_Up diboson 1.03233691797 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_wtag_Down diboson 1.03233691797 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_Up diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_Up diboson 1.1881734092 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_Down diboson 1.18817313635 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_Down diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Up diboson 1.00081977997 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Down diboson 1.00081986059 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_wtag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_Down diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Up diboson 1.00027318902 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Down diboson 1.00027307152 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_wtag_Up diboson 1.0493200025 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_wtag_Down diboson 1.0493200025 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_wtag_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_wtag_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_Down diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_wtag_Up diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_wtag_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_Up diboson 1.19164636338 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_Down diboson 1.19164653139 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_wtag_Up diboson 1.06183453671 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_wtag_Down diboson 1.06183453671 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_wtag_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_wtag_Up diboson 1.11813101238 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_wtag_Down diboson 1.11813101238 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_wtag_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_wtag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_wtag_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_wtag_Up diboson 1.10823667101 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_wtag_Down diboson 1.10823659689 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_wtag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_wtag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_wtag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_wtag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_wtag_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_wtag_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_wtag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_wtag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_wtag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_wtag_Up diboson 1.07537267255 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_wtag_Down diboson 1.0753722174 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_Down diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Up diboson 1.00218307048 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Down diboson 1.00218307048 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_wtag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_wtag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_toptag_Up diboson 1.07798847015 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_toptag_Down diboson 1.07798847015 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_toptag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_toptag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_Down diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Up diboson 1.00000390303 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Down diboson 1.00000398269 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_toptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_toptag_Down diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Up diboson 1.00027887565 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Down diboson 1.00027874808 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_toptag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_toptag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_Up diboson 1.07553535494 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_Down diboson 1.0755352004 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Up diboson 1.07538725982 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Down diboson 1.07538725982 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_toptag_Up diboson 1.09764497182 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_toptag_Down diboson 1.09764514368 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_toptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_toptag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_toptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_toptag_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_toptag_Up diboson 1.06922597572 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_toptag_Down diboson 1.06922597572 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_toptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_toptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_toptag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_toptag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_toptag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_toptag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_toptag_Down diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_toptag_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_toptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_toptag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_toptag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_toptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_toptag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_toptag_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_toptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_toptag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_toptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_toptag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_toptag_Up diboson 1.06577180173 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_toptag_Down diboson 1.06577180173 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_toptag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_toptag_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_Up diboson 1.06617598614 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_Down diboson 1.06617608332 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_toptag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_toptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_toptag_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_toptag_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_toptag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_toptag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_toptag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_toptag_Down diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_toptag_Up diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_toptag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_Up diboson 1.06798736585 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_Down diboson 1.06798749312 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_toptag_Up diboson 1.08245460969 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_toptag_Down diboson 1.08245460969 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_toptag_Up diboson 2 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_toptag_Down diboson 0.001 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_toptag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_toptag_Up diboson 1.06385552276 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_toptag_Down diboson 1.06385561316 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_toptag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_toptag_Down diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_toptag_Down diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_toptag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_toptag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_toptag_Up diboson 1.07819211639 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_toptag_Down diboson 1.07819202654 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_toptag_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_toptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_toptag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_toptag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_toptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Up diboson 1.05026285573 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Down diboson 1.05026296252 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_toptag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_toptag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_Up diboson 1.07824036256 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_Down diboson 1.07824043179 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Down diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Up diboson 1.04815943384 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Down diboson 1.04815955628 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_toptag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_toptag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_toptag_Up diboson 1.07131349396 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_toptag_Down diboson 1.07131358652 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_Up diboson 1.0 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_Down diboson 1.0 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Up diboson 1.00310075268 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Down diboson 1.00310063921 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_toptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_toptag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_toptag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_toptag_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_toptag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_toptag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_toptag_Up diboson 1.06579020312 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_toptag_Down diboson 1.06579008834 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_toptag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_toptag_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_toptag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_toptag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_toptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_toptag_Up diboson 1.07650981843 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_toptag_Down diboson 1.07650968309 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_toptag_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_toptag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_toptag_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_toptag_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_toptag_Up diboson 1.06252166588 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_toptag_Down diboson 1.06252144752 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_toptag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_toptag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_toptag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_toptag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_toptag_Up diboson 1.05528773284 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_toptag_Down diboson 1.05528766389 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_toptag_Up diboson 1.07955019637 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_toptag_Down diboson 1.07955027147 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_toptag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Up diboson 1.05279147791 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Down diboson 1.05271526329 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_toptag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_toptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_toptag_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_toptag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_toptag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Up diboson 1.07027688202 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Down diboson 1.07027688202 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_toptag_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_Up diboson 1.05348691236 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_Down diboson 1.05348691236 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_toptag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_toptag_Up diboson 2 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_toptag_Down diboson 0.001 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_Up diboson 1.07625168491 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_Down diboson 1.07625178294 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_Up diboson 1.07141867576 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_Down diboson 1.07141876643 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_toptag_Up diboson 1.05864708012 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_toptag_Down diboson 1.05864691509 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_toptag_Up diboson 1.07693994085 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_toptag_Down diboson 1.07694014161 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_toptag_Up diboson 1.0847560044 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_toptag_Down diboson 1.08475582959 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Up diboson 1.01127924241 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Down diboson 1.01127935102 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_toptag_Up diboson 1.07065189532 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_toptag_Down diboson 1.07065210119 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_toptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Down diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Up diboson 1.0028922869 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Down diboson 1.00289221816 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_toptag_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_toptag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_toptag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_toptag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_toptag_Up diboson 1.07656213996 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_toptag_Down diboson 1.07656219926 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_toptag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_toptag_Up diboson 1.04318930764 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_toptag_Down diboson 1.04318930764 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_Up diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_Up diboson 1.07412029173 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_Down diboson 1.07412029173 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Up diboson 1.00452858097 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Down diboson 1.00452841974 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_toptag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_toptag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_toptag_Up diboson 1.06762643802 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_toptag_Down diboson 1.06762643802 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_toptag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_Up diboson 1.06351728775 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_Down diboson 1.06351721526 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_Down diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Up diboson 1.00690093085 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Down diboson 1.00690081335 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_Up diboson 1.07550089837 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_Down diboson 1.07550105883 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_toptag_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_toptag_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_toptag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_Up diboson 1.06025128303 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_Down diboson 1.06025098213 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_Up diboson 1.04997755721 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_Down diboson 1.04997755721 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_toptag_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_Up diboson 1.05097342881 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_Down diboson 1.05097363287 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_toptag_Up diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_toptag_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_Up diboson 1.04717019053 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_Down diboson 1.04717000444 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_toptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_toptag_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_toptag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_toptag_Up diboson 1.05504655836 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_toptag_Down diboson 1.05504661997 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_toptag_Up diboson 1.06229264016 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_toptag_Down diboson 1.06229264016 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_toptag_Up diboson 1.05466056082 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_toptag_Down diboson 1.05466064199 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_toptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_Up diboson 1.06211042293 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_Down diboson 1.06211012169 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_toptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_toptag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_toptag_Up diboson 1.08561532494 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_toptag_Down diboson 1.08561518061 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_toptag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_toptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_toptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_Down diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Up diboson 1.00109620723 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Down diboson 1.00109609327 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_toptag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_toptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_restoptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_restoptag_Up diboson 1.09357828562 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_restoptag_Down diboson 1.09046740605 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restoptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_restoptag_Up diboson 1.06890536914 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_restoptag_Down diboson 1.06923111483 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_restoptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_restoptag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Up diboson 1.07785982589 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Down diboson 1.07801610588 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Up diboson 1.11602071761 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Down diboson 1.1162044787 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_restoptag_Up diboson 1.06811684741 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_restoptag_Down diboson 1.06819100303 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restoptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restoptag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_restoptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_restoptag_Down diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Up diboson 1.30462942516 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Down diboson 1.30480713503 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_restoptag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restoptag_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_restoptag_Up diboson 1.11127676207 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_restoptag_Down diboson 1.1114501862 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restoptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restoptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_restoptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_restoptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_restoptag_Up diboson 1.16600589498 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_restoptag_Down diboson 1.16649132534 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_restoptag_Up diboson 1.08544453188 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_restoptag_Down diboson 1.08577090617 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_restoptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_restoptag_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restoptag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restoptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_restoptag_Up diboson 1.07406852064 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_restoptag_Down diboson 1.07417755356 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_restoptag_Up diboson 1.10333847316 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_restoptag_Down diboson 1.1035474852 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_restoptag_Up diboson 1.14971863314 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_restoptag_Down diboson 1.14982555781 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Up diboson 1.09146240935 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Down diboson 1.0915960906 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Up diboson 1.05796325077 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Down diboson 1.05823166995 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_restoptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_restoptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_restoptag_Up diboson 1.14507789187 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_restoptag_Down diboson 1.14521932643 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_restoptag_Up diboson 1.07697488789 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_restoptag_Down diboson 1.07697707385 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_restoptag_Up diboson 1.21933639419 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_restoptag_Down diboson 1.21955300774 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restoptag_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restoptag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restoptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restoptag_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_restoptag_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_restoptag_Up diboson 1.07492922791 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_restoptag_Down diboson 1.0753898698 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restoptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restoptag_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_restoptag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restoptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restoptag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_restoptag_Up diboson 1.12190968895 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_restoptag_Down diboson 1.12201693805 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restoptag_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restoptag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_restoptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_restoptag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_restoptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_restoptag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_restoptag_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_restoptag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_restoptag_Up diboson 1.08520439427 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_restoptag_Down diboson 1.08413366944 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_restoptag_Up diboson 1.05898326904 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_restoptag_Down diboson 1.05913393824 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_restoptag_Up diboson 2 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_restoptag_Down diboson 0.001 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restoptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_restoptag_Up diboson 1.0684420585 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_restoptag_Down diboson 1.06853399733 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_restoptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_restoptag_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_restoptag_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_restoptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Up diboson 1.11701942216 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Down diboson 1.11715340272 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_restoptag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_restoptag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_restoptag_Up diboson 1.23008393886 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_restoptag_Down diboson 1.22366806812 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_restoptag_Up diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restoptag_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_restoptag_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_restoptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_restoptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_restoptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_restoptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_restoptag_Up diboson 1.08037942112 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_restoptag_Down diboson 1.08061594203 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_restoptag_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_restoptag_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_restoptag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_restoptag_Down diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restoptag_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restoptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_restoptag_Up diboson 1.06237008542 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_restoptag_Down diboson 1.06241302432 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restoptag_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restoptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Up diboson 1.12087101256 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Down diboson 1.11818908428 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_restoptag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_restoptag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_restoptag_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_restoptag_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_restoptag_Up diboson 1.05467610305 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_restoptag_Down diboson 1.0544430987 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_restoptag_Up diboson 1.14453273696 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_restoptag_Down diboson 1.14460943434 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restoptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restoptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restoptag_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restoptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_restoptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_restoptag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_restoptag_Up diboson 1.29534980007 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_restoptag_Down diboson 1.29552120355 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_restoptag_Up diboson 1.01522141938 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_restoptag_Down diboson 1.0153106407 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restoptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restoptag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Up diboson 1.20952459398 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Down diboson 1.20614759412 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restoptag_Up diboson 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_restoptag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_restoptag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_restoptag_Up diboson 1.15647143041 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_restoptag_Down diboson 1.15673661238 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restoptag_Up diboson 1.41653325872 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restoptag_Down diboson 1.41659339577 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Up diboson 1.1231506452 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Down diboson 1.12319540687 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_restoptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_restoptag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_restoptag_Up diboson 1.14449324292 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_restoptag_Down diboson 1.14466331575 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_restoptag_Up diboson 1.13955576062 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_restoptag_Down diboson 1.13980440596 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_restoptag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_restoptag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_restoptag_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_restoptag_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_restoptag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_restoptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Up diboson 1.34674438509 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Down diboson 1.34692389386 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_restoptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_restoptag_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_restoptag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_restoptag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_restoptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_restoptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_restoptag_Up diboson 1.08912133886 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_restoptag_Down diboson 1.08936236901 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_restoptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_restoptag_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_restoptag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_restoptag_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_restoptag_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_restoptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_restoptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_restoptag_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_restoptag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_restoptag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_restoptag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_restoptag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_restoptag_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_restoptag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_restoptag_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_restoptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_restoptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_restoptag_Up diboson 1.22140223152 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_restoptag_Down diboson 1.22144858867 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_restoptag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_restoptag_Up diboson 1.04576214185 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_restoptag_Down diboson 1.04577404137 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_restoptag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_restoptag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restoptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_restoptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_restoptag_Down diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restoptag_Up diboson 1.17131462684 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restoptag_Down diboson 1.1715567674 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_restoptag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_restoptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_restoptag_Up diboson 1.06988537656 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_restoptag_Down diboson 1.07033476113 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_restoptag_Up diboson 2 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_restoptag_Down diboson 0.001 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restoptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restoptag_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_restoptag_Up diboson 1.06168797626 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_restoptag_Down diboson 1.06171743464 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_restoptag_Up diboson 1.13845129965 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_restoptag_Down diboson 1.13859243462 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_restoptag_Up diboson 1 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_restoptag_Down diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Up diboson 1.0678939817 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Down diboson 1.06800672091 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_restoptag_Up diboson 1.11610286611 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_restoptag_Down diboson 1.11617214155 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Up diboson 1.14155700104 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Down diboson 1.14194930603 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restoptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restoptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_restoptag_Up diboson 1.0773615613 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_restoptag_Down diboson 1.07765329271 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_restoptag_Up diboson 1.17972508263 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_restoptag_Down diboson 1.18027818004 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Up diboson 1.10485262013 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Down diboson 1.1049867215 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Up diboson 1.140826154 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Down diboson 1.14090561885 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_restoptag_Up diboson 1.09676063077 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_restoptag_Down diboson 1.09709320881 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restoptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restoptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_restoptag_Up diboson 1.07282129832 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_restoptag_Down diboson 1.07298228591 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_restoptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_restoptag_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_restoptag_Down diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restoptag_Up diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restoptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restoptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restoptag_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restoptag_Down diboson 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Up diboson 1.14210594372 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Down diboson 1.14219107379 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_restoptag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_restoptag_Up diboson 1.17266517098 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_restoptag_Down diboson 1.17276248774 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_restoptag_Up diboson 1.08086340596 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_restoptag_Down diboson 1.08139373336 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restoptag_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restoptag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Up diboson 1.18334239052 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Down diboson 1.18340351493 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_restoptag_Up diboson 1.06933773844 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_restoptag_Down diboson 1.06958688269 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Down diboson 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Up diboson 1.15309865085 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Down diboson 1.15333212464 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restoptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restoptag_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restoptag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Up diboson 1.18320532756 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Down diboson 1.18204508547 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_restoptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_restoptag_Down diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_restoptag_Up diboson 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restoptag_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restoptag_Up diboson 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_restoptag_Up diboson 1.23526687691 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_restoptag_Down diboson 1.23539117836 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restoptag_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restoptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restoptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restoptag_Down diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_restoptag_Up diboson 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_restoptag_Down diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restoptag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restoptag_Down diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restoptag_Up diboson 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restoptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restoptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_restoptag_Up diboson 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Up diboson 1.16262443708 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Down diboson 1.16281136435 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restoptag_Up diboson 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restoptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_restoptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_restoptag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_restoptag_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_restoptag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_restoptag_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_restoptag_Up diboson 1.05746713407 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_restoptag_Down diboson 1.05762249051 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_restoptag_Up diboson 1.18540920218 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_restoptag_Down diboson 1.18562649117 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_restoptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_restoptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restoptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restoptag_Down diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_restoptag_Up diboson 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_restoptag_Down diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_restoptag_Up diboson 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_restoptag_Down diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_restoptag_Up diboson 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_restoptag_Down diboson 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Up diboson 1.06937359576 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Down diboson 1.06971190843 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_restoptag_Up diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_restoptag_Down diboson 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_restoptag_Up diboson 1.11575808288 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_restoptag_Down diboson 1.11585355484 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Up diboson 1.14232644117 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Down diboson 1.1425508104 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_restoptag_Up diboson 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_restoptag_Down diboson 1 diff --git a/Datacards/setup/SUSYNano19/values_unc_ll.conf b/Datacards/setup/SUSYNano19/values_unc_ll.conf index c73bcec..9c33951 100644 --- a/Datacards/setup/SUSYNano19/values_unc_ll.conf +++ b/Datacards/setup/SUSYNano19/values_unc_ll.conf @@ -1,5490 +1,5490 @@ -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_up ttbarplusw 1.00166 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_down ttbarplusw 0.998403 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_up ttbarplusw 1.00228 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_down ttbarplusw 0.998061 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_up ttbarplusw 1.00152 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_down ttbarplusw 0.998747 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_up ttbarplusw 1.00118 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_down ttbarplusw 0.998894 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_up ttbarplusw 0.999146 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_down ttbarplusw 1.0012 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_up ttbarplusw 0.999878 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_down ttbarplusw 0.999723 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_up ttbarplusw 1.00844 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_down ttbarplusw 0.990861 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_up ttbarplusw 1.0003 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_down ttbarplusw 0.998771 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_up ttbarplusw 0.995875 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_down ttbarplusw 1.00383 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_up ttbarplusw 1.01093 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_down ttbarplusw 0.98977 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PU_Weight_up ttbarplusw 1.00741 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PU_Weight_down ttbarplusw 0.992777 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PU_Weight_up ttbarplusw 0.994111 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PU_Weight_down ttbarplusw 1.00552 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PU_Weight_up ttbarplusw 1.00771 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PU_Weight_down ttbarplusw 0.995984 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PU_Weight_up ttbarplusw 0.992356 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PU_Weight_down ttbarplusw 1.0114 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PU_Weight_up ttbarplusw 1.03802 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PU_Weight_down ttbarplusw 0.966908 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PU_Weight_up ttbarplusw 1.00313 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PU_Weight_down ttbarplusw 0.998765 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_up ttbarplusw 0.995045 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_down ttbarplusw 1.00526 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PU_Weight_up ttbarplusw 1.007 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PU_Weight_down ttbarplusw 0.994155 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PU_Weight_up ttbarplusw 0.994161 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PU_Weight_down ttbarplusw 1.00551 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PU_Weight_up ttbarplusw 0.99472 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PU_Weight_down ttbarplusw 1.00467 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_up ttbarplusw 0.997852 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_down ttbarplusw 1.00175 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PU_Weight_up ttbarplusw 0.988979 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PU_Weight_down ttbarplusw 1.01047 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PU_Weight_up ttbarplusw 0.981492 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PU_Weight_down ttbarplusw 1.01379 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PU_Weight_up ttbarplusw 0.99576 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PU_Weight_down ttbarplusw 0.999918 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_up ttbarplusw 1.00029 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_down ttbarplusw 0.999633 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_up ttbarplusw 1.00214 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_down ttbarplusw 0.997147 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PU_Weight_up ttbarplusw 1.00507 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PU_Weight_down ttbarplusw 0.994339 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PU_Weight_up ttbarplusw 0.998391 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PU_Weight_down ttbarplusw 1.002 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_up ttbarplusw 1.00228 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_down ttbarplusw 0.998341 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_up ttbarplusw 0.988505 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_down ttbarplusw 1.00786 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PU_Weight_up ttbarplusw 0.99042 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PU_Weight_down ttbarplusw 1.01063 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PU_Weight_up ttbarplusw 0.992938 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PU_Weight_down ttbarplusw 1.00695 -bin_lm_nb1_nivf1_lowmtb_lowptb_MET_pt300to400 PU_Weight_up ttbarplusw 1.00201 -bin_lm_nb1_nivf1_lowmtb_lowptb_MET_pt300to400 PU_Weight_down ttbarplusw 0.998825 -bin_lm_nb1_nivf1_lowmtb_lowptb_MET_pt400to500 PU_Weight_up ttbarplusw 1.01123 -bin_lm_nb1_nivf1_lowmtb_lowptb_MET_pt400to500 PU_Weight_down ttbarplusw 0.994832 -bin_lm_nb1_nivf1_lowmtb_lowptb_MET_pt500toinf PU_Weight_up ttbarplusw 0.977466 -bin_lm_nb1_nivf1_lowmtb_lowptb_MET_pt500toinf PU_Weight_down ttbarplusw 1.02272 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PU_Weight_up ttbarplusw 1.00049 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PU_Weight_down ttbarplusw 1.00014 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PU_Weight_up ttbarplusw 1.00406 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PU_Weight_down ttbarplusw 0.998082 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PU_Weight_up ttbarplusw 0.987306 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PU_Weight_down ttbarplusw 1.01142 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_up ttbarplusw 0.998793 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_down ttbarplusw 1.00176 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PU_Weight_up ttbarplusw 0.995635 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PU_Weight_down ttbarplusw 1.00403 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PU_Weight_up ttbarplusw 0.988709 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PU_Weight_down ttbarplusw 1.01716 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_up ttbarplusw 1.00352 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_down ttbarplusw 0.996456 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PU_Weight_up ttbarplusw 1.0189 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PU_Weight_down ttbarplusw 0.983529 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PU_Weight_up ttbarplusw 0.99566 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PU_Weight_down ttbarplusw 1.01069 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PU_Weight_up ttbarplusw 1.01842 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PU_Weight_down ttbarplusw 0.981953 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PU_Weight_up ttbarplusw 1.03221 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PU_Weight_down ttbarplusw 0.969136 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PU_Weight_up ttbarplusw 1.00617 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PU_Weight_down ttbarplusw 0.995587 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PU_Weight_up ttbarplusw 1.00326 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PU_Weight_down ttbarplusw 0.996406 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PU_Weight_up ttbarplusw 0.99569 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PU_Weight_down ttbarplusw 1.00411 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PU_Weight_up ttbarplusw 0.99215 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PU_Weight_down ttbarplusw 1.00652 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_up ttbarplusw 1.00486 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_down ttbarplusw 0.997385 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PU_Weight_up ttbarplusw 0.991806 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PU_Weight_down ttbarplusw 1.01027 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PU_Weight_up ttbarplusw 0.984518 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PU_Weight_down ttbarplusw 1.01854 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_up ttbarplusw 1.0001 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_down ttbarplusw 1.00023 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_up ttbarplusw 0.99753 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_down ttbarplusw 1.00202 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_up ttbarplusw 0.992731 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_down ttbarplusw 1.00566 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_up ttbarplusw 1.00015 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_down ttbarplusw 1.00118 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_up ttbarplusw 0.998487 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_down ttbarplusw 1.00157 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_up ttbarplusw 0.998425 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_down ttbarplusw 1.00133 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_up ttbarplusw 1.00373 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_down ttbarplusw 0.995578 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_up ttbarplusw 0.996471 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_down ttbarplusw 1.00393 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_up ttbarplusw 1.00017 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_down ttbarplusw 1.00042 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_up ttbarplusw 1.00002 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_down ttbarplusw 1.00068 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_up ttbarplusw 1.00698 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_down ttbarplusw 0.992979 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_up ttbarplusw 1.00628 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_down ttbarplusw 0.995208 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_up ttbarplusw 1.00522 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_down ttbarplusw 0.996 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_up ttbarplusw 0.995182 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_down ttbarplusw 1.00522 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_up ttbarplusw 1.01959 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_down ttbarplusw 0.977617 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_up ttbarplusw 1.00406 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_down ttbarplusw 0.994929 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_up ttbarplusw 0.995693 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_down ttbarplusw 1.00435 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_up ttbarplusw 0.994957 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_down ttbarplusw 1.00553 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_up ttbarplusw 0.986254 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_down ttbarplusw 1.01204 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_up ttbarplusw 0.995619 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_down ttbarplusw 1.00453 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_up ttbarplusw 1.00851 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_down ttbarplusw 0.993739 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_up ttbarplusw 0.974997 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_down ttbarplusw 1.02279 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_up ttbarplusw 0.996842 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_down ttbarplusw 1.00294 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_up ttbarplusw 1.04922 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_down ttbarplusw 0.953224 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_up ttbarplusw 1.01721 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_down ttbarplusw 0.981874 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PU_Weight_up ttbarplusw 1.00213 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PU_Weight_down ttbarplusw 0.998369 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PU_Weight_up ttbarplusw 1.00912 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PU_Weight_down ttbarplusw 0.989599 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PU_Weight_up ttbarplusw 1.00585 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PU_Weight_down ttbarplusw 0.997317 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PU_Weight_up ttbarplusw 0.99274 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PU_Weight_down ttbarplusw 1.00755 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PU_Weight_up ttbarplusw 1.02996 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PU_Weight_down ttbarplusw 0.98152 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PU_Weight_up ttbarplusw 1.00436 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PU_Weight_down ttbarplusw 0.995828 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PU_Weight_up ttbarplusw 0.999068 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PU_Weight_down ttbarplusw 1.00111 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PU_Weight_up ttbarplusw 0.995665 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PU_Weight_down ttbarplusw 1.00387 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PU_Weight_up ttbarplusw 0.999914 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PU_Weight_down ttbarplusw 1.00092 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PU_Weight_up ttbarplusw 1.00944 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PU_Weight_down ttbarplusw 0.993487 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PU_Weight_up ttbarplusw 0.98591 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PU_Weight_down ttbarplusw 1.01589 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_up ttbarplusw 0.996251 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_down ttbarplusw 1.00297 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_up ttbarplusw 0.995516 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_down ttbarplusw 1.00573 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_up ttbarplusw 0.998092 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_down ttbarplusw 1.00426 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_up ttbarplusw 0.985836 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_down ttbarplusw 1.01143 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_up ttbarplusw 0.991957 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_down ttbarplusw 1.0112 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PU_Weight_up ttbarplusw 0.99797 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PU_Weight_down ttbarplusw 1.00252 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PU_Weight_up ttbarplusw 1.00568 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PU_Weight_down ttbarplusw 0.994571 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PU_Weight_up ttbarplusw 0.971406 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PU_Weight_down ttbarplusw 1.03281 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PU_Weight_up ttbarplusw 1.00706 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PU_Weight_down ttbarplusw 0.986157 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PU_Weight_up ttbarplusw 1.04529 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PU_Weight_down ttbarplusw 0.956477 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PU_Weight_up ttbarplusw 1.01234 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PU_Weight_down ttbarplusw 0.984752 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PU_Weight_up ttbarplusw 1.01079 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PU_Weight_down ttbarplusw 0.993409 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PU_Weight_up ttbarplusw 0.999711 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PU_Weight_down ttbarplusw 1.00379 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PU_Weight_up ttbarplusw 0.993888 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PU_Weight_down ttbarplusw 0.998971 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PU_Weight_up ttbarplusw 1.00374 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PU_Weight_down ttbarplusw 0.998123 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PU_Weight_up ttbarplusw 1.0883 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PU_Weight_down ttbarplusw 0.915216 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_up ttbarplusw 1.00125 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_down ttbarplusw 0.999438 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_up ttbarplusw 1.00304 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_down ttbarplusw 0.995333 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_up ttbarplusw 1.03595 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_down ttbarplusw 0.969334 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_up ttbarplusw 1.00121 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_down ttbarplusw 0.997483 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_up ttbarplusw 1.0617 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_down ttbarplusw 0.931441 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_up ttbarplusw 1.0122 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_down ttbarplusw 0.992811 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_up ttbarplusw 0.985247 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_down ttbarplusw 1.01419 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_up ttbarplusw 0.950681 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_down ttbarplusw 1.0538 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_up ttbarplusw 1.02696 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_down ttbarplusw 0.966716 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PU_Weight_up ttbarplusw 0.997079 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PU_Weight_down ttbarplusw 1.00425 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PU_Weight_up ttbarplusw 1.01551 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PU_Weight_down ttbarplusw 0.985344 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PU_Weight_up ttbarplusw 0.974752 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PU_Weight_down ttbarplusw 1.02123 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PU_Weight_up ttbarplusw 0.993688 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PU_Weight_down ttbarplusw 1.00994 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PU_Weight_up ttbarplusw 0.987351 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PU_Weight_down ttbarplusw 1.00918 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PU_Weight_up ttbarplusw 0.98047 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PU_Weight_down ttbarplusw 1.02307 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_up ttbarplusw 1.00271 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_down ttbarplusw 0.997061 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PU_Weight_up ttbarplusw 1.00791 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PU_Weight_down ttbarplusw 0.991702 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PU_Weight_up ttbarplusw 1.00629 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PU_Weight_down ttbarplusw 0.996273 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PU_Weight_up ttbarplusw 1.00483 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PU_Weight_down ttbarplusw 0.998075 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PU_Weight_up ttbarplusw 0.929392 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PU_Weight_down ttbarplusw 1.07805 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_up ttbarplusw 0.996762 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_down ttbarplusw 1.00272 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_up ttbarplusw 1.00495 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_down ttbarplusw 0.998953 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_up ttbarplusw 1.01748 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_down ttbarplusw 0.986185 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_up ttbarplusw 0.989776 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_down ttbarplusw 1.0047 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_up ttbarplusw 1.00098 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_down ttbarplusw 1.00452 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_up ttbarplusw 1.00527 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_down ttbarplusw 0.993721 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PU_Weight_up ttbarplusw 1.02586 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PU_Weight_down ttbarplusw 0.977046 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PU_Weight_up ttbarplusw 0.957089 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PU_Weight_down ttbarplusw 1.04922 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PU_Weight_up ttbarplusw 1.05206 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PU_Weight_down ttbarplusw 0.962839 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PU_Weight_up ttbarplusw 1.11455 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PU_Weight_down ttbarplusw 0.902019 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PU_Weight_up ttbarplusw 1.06731 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PU_Weight_down ttbarplusw 0.921883 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PU_Weight_up ttbarplusw 1.0272 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PU_Weight_down ttbarplusw 0.96807 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PU_Weight_up ttbarplusw 0.982345 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PU_Weight_down ttbarplusw 1.01451 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PU_Weight_up ttbarplusw 1.0216 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PU_Weight_down ttbarplusw 0.968408 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PU_Weight_up ttbarplusw 0.984317 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PU_Weight_down ttbarplusw 1.01983 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PU_Weight_up ttbarplusw 0.989834 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PU_Weight_down ttbarplusw 1.01246 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PU_Weight_up ttbarplusw 0.967585 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PU_Weight_down ttbarplusw 1.03064 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PU_Weight_up ttbarplusw 1.05125 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PU_Weight_down ttbarplusw 0.957938 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PU_Weight_up ttbarplusw 1.01718 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PU_Weight_down ttbarplusw 0.98115 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PU_Weight_up ttbarplusw 0.989678 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PU_Weight_down ttbarplusw 1.01824 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PU_Weight_up ttbarplusw 0.996159 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PU_Weight_down ttbarplusw 1.00994 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PU_Weight_up ttbarplusw 0.968466 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PU_Weight_down ttbarplusw 1.03218 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_up ttbarplusw 1.10142 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_down ttbarplusw 0.904981 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PU_Weight_up ttbarplusw 0.997479 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PU_Weight_down ttbarplusw 1.00235 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PU_Weight_up ttbarplusw 0.973732 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PU_Weight_down ttbarplusw 1.02535 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PU_Weight_up ttbarplusw 0.961441 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PU_Weight_down ttbarplusw 1.0395 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PU_Weight_up ttbarplusw 1.06979 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PU_Weight_down ttbarplusw 0.951327 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_up ttbarplusw 1.19702 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_down ttbarplusw 0.831709 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PU_Weight_up ttbarplusw 1.01486 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PU_Weight_down ttbarplusw 0.986172 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PU_Weight_up ttbarplusw 0.99206 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PU_Weight_down ttbarplusw 1.00434 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PU_Weight_up ttbarplusw 1.07878 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PU_Weight_down ttbarplusw 0.924205 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PU_Weight_up ttbarplusw 1.00133 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PU_Weight_down ttbarplusw 1.00146 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PU_Weight_up ttbarplusw 1.00476 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PU_Weight_down ttbarplusw 0.991511 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PU_Weight_up ttbarplusw 0.884115 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PU_Weight_down ttbarplusw 1.12483 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PU_Weight_up ttbarplusw 0.977291 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PU_Weight_down ttbarplusw 1.02763 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PU_Weight_up ttbarplusw 1.04589 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PU_Weight_down ttbarplusw 0.968425 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PU_Weight_up ttbarplusw 0.989279 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PU_Weight_down ttbarplusw 1.00152 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PU_Weight_up ttbarplusw 0.994714 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PU_Weight_down ttbarplusw 1.00553 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PU_Weight_up ttbarplusw 1.00971 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PU_Weight_down ttbarplusw 0.994187 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PU_Weight_up ttbarplusw 1.08231 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PU_Weight_down ttbarplusw 0.917589 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_up ttbarplusw 0.995929 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_down ttbarplusw 1.00323 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PU_Weight_up ttbarplusw 0.994028 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PU_Weight_down ttbarplusw 1.00274 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PU_Weight_up ttbarplusw 0.993519 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PU_Weight_down ttbarplusw 1.00974 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_up ttbarplusw 1.03036 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_down ttbarplusw 0.970066 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PU_Weight_up ttbarplusw 0.970261 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PU_Weight_down ttbarplusw 1.03034 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PU_Weight_up ttbarplusw 0.963076 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PU_Weight_down ttbarplusw 1.03749 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_up ttbarplusw 1.00817 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_down ttbarplusw 0.99363 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PU_Weight_up ttbarplusw 1.04652 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PU_Weight_down ttbarplusw 0.957232 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PU_Weight_up ttbarplusw 0.9304 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PU_Weight_down ttbarplusw 1.07013 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PU_Weight_up ttbarplusw 1.01002 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PU_Weight_down ttbarplusw 0.99141 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PU_Weight_up ttbarplusw 0.988558 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PU_Weight_down ttbarplusw 1.00798 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PU_Weight_up ttbarplusw 1.00325 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PU_Weight_down ttbarplusw 0.988544 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PU_Weight_up ttbarplusw 0.977921 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PU_Weight_down ttbarplusw 1.01937 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PU_Weight_up ttbarplusw 0.979497 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PU_Weight_down ttbarplusw 1.01805 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_up ttbarplusw 0.979577 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_down ttbarplusw 1.00719 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PU_Weight_up ttbarplusw 0.99063 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PU_Weight_down ttbarplusw 1.00599 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PU_Weight_up ttbarplusw 1.00773 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PU_Weight_down ttbarplusw 0.99658 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_up ttbarplusw 0.843396 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_down ttbarplusw 1.15304 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PDF_Weight_up ttbarplusw 0.992679 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PDF_Weight_down ttbarplusw 1.00769 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PDF_Weight_up ttbarplusw 1.00065 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PDF_Weight_down ttbarplusw 0.999309 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PDF_Weight_up ttbarplusw 0.997084 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PDF_Weight_down ttbarplusw 1.00308 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PDF_Weight_up ttbarplusw 0.99691 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PDF_Weight_down ttbarplusw 1.0033 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PDF_Weight_up ttbarplusw 1.00494 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PDF_Weight_down ttbarplusw 0.994638 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PDF_Weight_up ttbarplusw 1.00835 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PDF_Weight_down ttbarplusw 0.991009 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PDF_Weight_up ttbarplusw 0.99882 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PDF_Weight_down ttbarplusw 1.00128 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PDF_Weight_up ttbarplusw 1.00352 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PDF_Weight_down ttbarplusw 0.996206 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PDF_Weight_up ttbarplusw 1.00121 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PDF_Weight_down ttbarplusw 0.998731 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PDF_Weight_up ttbarplusw 1.00397 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PDF_Weight_down ttbarplusw 0.995866 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PDF_Weight_up ttbarplusw 0.997974 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PDF_Weight_down ttbarplusw 1.00213 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PDF_Weight_up ttbarplusw 0.997161 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PDF_Weight_down ttbarplusw 1.00298 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PDF_Weight_up ttbarplusw 1.00441 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PDF_Weight_down ttbarplusw 0.995226 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PDF_Weight_up ttbarplusw 1.00411 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PDF_Weight_down ttbarplusw 0.995596 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PDF_Weight_up ttbarplusw 0.952544 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PDF_Weight_down ttbarplusw 1.05616 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PDF_Weight_up ttbarplusw 1.00063 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PDF_Weight_down ttbarplusw 0.999308 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PDF_Weight_up ttbarplusw 1.00011 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PDF_Weight_down ttbarplusw 1.00192 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PDF_Weight_up ttbarplusw 0.999443 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PDF_Weight_down ttbarplusw 1.00059 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PDF_Weight_up ttbarplusw 0.977194 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PDF_Weight_down ttbarplusw 1.02479 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PDF_Weight_up ttbarplusw 0.984803 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PDF_Weight_down ttbarplusw 1.0167 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PDF_Weight_up ttbarplusw 1.00363 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PDF_Weight_down ttbarplusw 1.00841 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PDF_Weight_up ttbarplusw 0.971326 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PDF_Weight_down ttbarplusw 1.0327 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PDF_Weight_up ttbarplusw 1.0818 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PDF_Weight_down ttbarplusw 0.913197 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PDF_Weight_up ttbarplusw 1.06579 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PDF_Weight_down ttbarplusw 0.92827 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PDF_Weight_up ttbarplusw 1.00098 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PDF_Weight_down ttbarplusw 0.998945 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PDF_Weight_up ttbarplusw 0.987829 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PDF_Weight_down ttbarplusw 1.01333 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PDF_Weight_up ttbarplusw 1.02938 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PDF_Weight_down ttbarplusw 0.969009 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PDF_Weight_up ttbarplusw 0.996158 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PDF_Weight_down ttbarplusw 1.00419 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PDF_Weight_up ttbarplusw 1.0003 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PDF_Weight_down ttbarplusw 0.999671 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PDF_Weight_up ttbarplusw 0.966837 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PDF_Weight_down ttbarplusw 1.03839 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PDF_Weight_up ttbarplusw 1.0006 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PDF_Weight_down ttbarplusw 0.999339 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PDF_Weight_up ttbarplusw 0.869584 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PDF_Weight_down ttbarplusw 1.14295 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PDF_Weight_up ttbarplusw 1.02617 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PDF_Weight_down ttbarplusw 1.021 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PDF_Weight_up ttbarplusw 1.0031 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PDF_Weight_down ttbarplusw 0.996699 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PDF_Weight_up ttbarplusw 1.00749 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PDF_Weight_down ttbarplusw 0.992097 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PDF_Weight_up ttbarplusw 1.0034 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PDF_Weight_down ttbarplusw 0.995473 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PDF_Weight_up ttbarplusw 0.961206 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PDF_Weight_down ttbarplusw 1.04217 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PDF_Weight_up ttbarplusw 0.980246 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PDF_Weight_down ttbarplusw 1.02188 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PDF_Weight_up ttbarplusw 1.01786 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PDF_Weight_down ttbarplusw 1.00943 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PDF_Weight_up ttbarplusw 0.996767 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PDF_Weight_down ttbarplusw 1.00359 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PDF_Weight_up ttbarplusw 0.985546 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PDF_Weight_down ttbarplusw 1.01627 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PDF_Weight_up ttbarplusw 0.998302 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PDF_Weight_down ttbarplusw 0.996205 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PDF_Weight_up ttbarplusw 1.01625 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PDF_Weight_down ttbarplusw 0.982063 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PDF_Weight_up ttbarplusw 1.00165 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PDF_Weight_down ttbarplusw 0.998131 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PDF_Weight_up ttbarplusw 0.988286 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PDF_Weight_down ttbarplusw 1.01287 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PDF_Weight_up ttbarplusw 1.01338 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PDF_Weight_down ttbarplusw 0.985837 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PDF_Weight_up ttbarplusw 1.00455 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PDF_Weight_down ttbarplusw 0.995035 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PDF_Weight_up ttbarplusw 1.01831 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PDF_Weight_down ttbarplusw 0.980232 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PDF_Weight_up ttbarplusw 0.93374 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PDF_Weight_down ttbarplusw 1.08697 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PDF_Weight_up ttbarplusw 0.977048 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PDF_Weight_down ttbarplusw 1.0265 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PDF_Weight_up ttbarplusw 0.973654 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PDF_Weight_down ttbarplusw 1.03101 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PDF_Weight_up ttbarplusw 1.04134 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PDF_Weight_down ttbarplusw 0.951207 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PDF_Weight_up ttbarplusw 1.02626 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PDF_Weight_down ttbarplusw 0.96617 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PDF_Weight_up ttbarplusw 0.997863 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PDF_Weight_down ttbarplusw 1.00238 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PDF_Weight_up ttbarplusw 1.00575 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PDF_Weight_down ttbarplusw 1.00645 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PDF_Weight_up ttbarplusw 0.975481 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PDF_Weight_down ttbarplusw 1.02868 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PDF_Weight_up ttbarplusw 1.00472 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PDF_Weight_down ttbarplusw 0.994381 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PDF_Weight_up ttbarplusw 1.00252 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PDF_Weight_down ttbarplusw 0.99721 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PDF_Weight_up ttbarplusw 1.00115 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PDF_Weight_down ttbarplusw 1.00283 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PDF_Weight_up ttbarplusw 0.99575 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PDF_Weight_down ttbarplusw 1.00485 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PDF_Weight_up ttbarplusw 0.992734 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PDF_Weight_down ttbarplusw 1.00853 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PDF_Weight_up ttbarplusw 1.00244 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PDF_Weight_down ttbarplusw 0.997194 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PDF_Weight_up ttbarplusw 1.02587 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PDF_Weight_down ttbarplusw 0.989181 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PDF_Weight_up ttbarplusw 0.976386 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PDF_Weight_down ttbarplusw 1.02745 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PDF_Weight_up ttbarplusw 0.999887 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PDF_Weight_down ttbarplusw 1.00013 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PDF_Weight_up ttbarplusw 1.00113 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PDF_Weight_down ttbarplusw 0.998694 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PDF_Weight_up ttbarplusw 1.01939 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PDF_Weight_down ttbarplusw 1.02284 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PDF_Weight_up ttbarplusw 1.00589 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PDF_Weight_down ttbarplusw 0.993171 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PDF_Weight_up ttbarplusw 0.986037 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PDF_Weight_down ttbarplusw 1.01653 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PDF_Weight_up ttbarplusw 1.06225 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PDF_Weight_down ttbarplusw 0.94523 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PDF_Weight_up ttbarplusw 1.03931 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PDF_Weight_down ttbarplusw 0.956075 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PDF_Weight_up ttbarplusw 0.990143 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PDF_Weight_down ttbarplusw 1.01101 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PDF_Weight_up ttbarplusw 1.00955 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PDF_Weight_down ttbarplusw 0.997045 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_up ttbarplusw 1.00027 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_down ttbarplusw 0.999686 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_up ttbarplusw 1.11856 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_down ttbarplusw 0.866046 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PDF_Weight_up ttbarplusw 1.03185 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PDF_Weight_down ttbarplusw 0.984635 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PDF_Weight_up ttbarplusw 1.0422 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PDF_Weight_down ttbarplusw 0.95148 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PDF_Weight_up ttbarplusw 1.02424 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PDF_Weight_down ttbarplusw 0.971382 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PDF_Weight_up ttbarplusw 1.0188 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PDF_Weight_down ttbarplusw 0.979445 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PDF_Weight_up ttbarplusw 1.00844 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PDF_Weight_down ttbarplusw 0.971092 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PDF_Weight_up ttbarplusw 1.01391 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PDF_Weight_down ttbarplusw 0.984431 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PDF_Weight_up ttbarplusw 1.00333 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PDF_Weight_down ttbarplusw 0.996083 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PDF_Weight_up ttbarplusw 0.889342 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PDF_Weight_down ttbarplusw 0.973954 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PDF_Weight_up ttbarplusw 0.988941 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PDF_Weight_down ttbarplusw 1.01293 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PDF_Weight_up ttbarplusw 1.00615 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PDF_Weight_down ttbarplusw 0.993286 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PDF_Weight_up ttbarplusw 1.00423 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PDF_Weight_down ttbarplusw 0.988483 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PDF_Weight_up ttbarplusw 1.00728 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PDF_Weight_down ttbarplusw 0.991912 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PDF_Weight_up ttbarplusw 1.03957 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PDF_Weight_down ttbarplusw 0.955783 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PDF_Weight_up ttbarplusw 0.988936 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PDF_Weight_down ttbarplusw 1.01236 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_up ttbarplusw 1.02703 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_down ttbarplusw 0.969202 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PDF_Weight_up ttbarplusw 1.01984 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PDF_Weight_down ttbarplusw 1.00174 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PDF_Weight_up ttbarplusw 0.987393 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PDF_Weight_down ttbarplusw 1.01458 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_up ttbarplusw 1.00401 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_down ttbarplusw 0.995405 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_up ttbarplusw 1.01676 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_down ttbarplusw 0.98106 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PDF_Weight_up ttbarplusw 0.984316 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PDF_Weight_down ttbarplusw 1.01909 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PDF_Weight_up ttbarplusw 0.967565 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PDF_Weight_down ttbarplusw 1.05243 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PDF_Weight_up ttbarplusw 1.08438 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PDF_Weight_down ttbarplusw 0.899618 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PDF_Weight_up ttbarplusw 1.02699 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PDF_Weight_down ttbarplusw 0.968966 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PDF_Weight_up ttbarplusw 0.965488 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PDF_Weight_down ttbarplusw 1.04074 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PDF_Weight_up ttbarplusw 1.04614 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PDF_Weight_down ttbarplusw 0.974072 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PDF_Weight_up ttbarplusw 0.97623 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PDF_Weight_down ttbarplusw 1.02689 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PDF_Weight_up ttbarplusw 0.974555 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PDF_Weight_down ttbarplusw 0.949981 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PDF_Weight_up ttbarplusw 1.14209 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PDF_Weight_down ttbarplusw 0.839255 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PDF_Weight_up ttbarplusw 1.02424 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PDF_Weight_down ttbarplusw 0.980063 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PDF_Weight_up ttbarplusw 0.972468 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PDF_Weight_down ttbarplusw 1.03115 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PDF_Weight_up ttbarplusw 1.04339 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PDF_Weight_down ttbarplusw 1.01741 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PDF_Weight_up ttbarplusw 1.00247 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PDF_Weight_down ttbarplusw 0.997278 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PDF_Weight_up ttbarplusw 0.974946 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PDF_Weight_down ttbarplusw 1.02852 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PDF_Weight_up ttbarplusw 1.06003 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PDF_Weight_down ttbarplusw 0.990595 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_up ttbarplusw 0.978999 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_down ttbarplusw 1.02352 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_up ttbarplusw 0.996757 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_down ttbarplusw 1.00369 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PDF_Weight_up ttbarplusw 1.00598 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PDF_Weight_down ttbarplusw 0.999739 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PDF_Weight_up ttbarplusw 1.01695 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PDF_Weight_down ttbarplusw 0.980023 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PDF_Weight_up ttbarplusw 1.02702 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PDF_Weight_down ttbarplusw 0.968351 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PDF_Weight_up ttbarplusw 0.998797 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PDF_Weight_down ttbarplusw 1.00131 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PDF_Weight_up ttbarplusw 1.04799 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PDF_Weight_down ttbarplusw 1.02319 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PDF_Weight_up ttbarplusw 0.962386 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PDF_Weight_down ttbarplusw 1.04153 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PDF_Weight_up ttbarplusw 0.96787 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PDF_Weight_down ttbarplusw 1.03782 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PDF_Weight_up ttbarplusw 0.986681 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PDF_Weight_down ttbarplusw 1.10897 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PDF_Weight_up ttbarplusw 0.967425 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PDF_Weight_down ttbarplusw 1.0384 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PDF_Weight_up ttbarplusw 1.00409 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PDF_Weight_down ttbarplusw 0.995553 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PDF_Weight_up ttbarplusw 1.02154 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PDF_Weight_down ttbarplusw 0.987921 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PDF_Weight_up ttbarplusw 1.01523 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PDF_Weight_down ttbarplusw 0.983353 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PDF_Weight_up ttbarplusw 0.882842 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PDF_Weight_down ttbarplusw 1.12905 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PDF_Weight_up ttbarplusw 0.95809 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PDF_Weight_down ttbarplusw 1.0477 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_up ttbarplusw 1.00826 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_down ttbarplusw 0.990572 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PDF_Weight_up ttbarplusw 1.06293 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PDF_Weight_down ttbarplusw 1.0306 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PDF_Weight_up ttbarplusw 1.04182 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PDF_Weight_down ttbarplusw 0.952941 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_up ttbarplusw 1.01926 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_down ttbarplusw 0.978426 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_up ttbarplusw 0.987932 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_down ttbarplusw 1.01372 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PDF_Weight_up ttbarplusw 1.03491 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PDF_Weight_down ttbarplusw 0.958032 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PDF_Weight_up ttbarplusw 1.87634 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PDF_Weight_down ttbarplusw -0.038526 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PDF_Weight_up ttbarplusw 1.0221 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PDF_Weight_down ttbarplusw 0.97156 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PDF_Weight_up ttbarplusw 1.02117 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PDF_Weight_down ttbarplusw 0.975041 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PDF_Weight_up ttbarplusw 1.01081 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PDF_Weight_down ttbarplusw 0.987332 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PDF_Weight_up ttbarplusw 1.07287 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PDF_Weight_down ttbarplusw 0.971911 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PDF_Weight_up ttbarplusw 0.960728 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PDF_Weight_down ttbarplusw 1.04423 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PDF_Weight_up ttbarplusw 1.00024 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PDF_Weight_down ttbarplusw 0.999735 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PDF_Weight_up ttbarplusw 1.03346 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PDF_Weight_down ttbarplusw 1.05651 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PDF_Weight_up ttbarplusw 0.998453 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PDF_Weight_down ttbarplusw 1.00171 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PDF_Weight_up ttbarplusw 1.06315 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PDF_Weight_down ttbarplusw 0.92566 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PDF_Weight_up ttbarplusw 1.25678 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PDF_Weight_down ttbarplusw 0.774439 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PDF_Weight_up ttbarplusw 1.02441 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PDF_Weight_down ttbarplusw 0.971228 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PDF_Weight_up ttbarplusw 1.03176 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PDF_Weight_down ttbarplusw 1.02666 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PDF_Weight_up ttbarplusw 0.977221 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PDF_Weight_down ttbarplusw 1.02566 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PDF_Weight_up ttbarplusw 1.07431 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PDF_Weight_down ttbarplusw 1.00333 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PDF_Weight_up ttbarplusw 0.987244 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PDF_Weight_down ttbarplusw 1.01423 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PDF_Weight_up ttbarplusw 1.02002 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PDF_Weight_down ttbarplusw 1.06787 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PDF_Weight_up ttbarplusw 0.9894 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PDF_Weight_down ttbarplusw 0.987873 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PDF_Weight_up ttbarplusw 0.978553 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PDF_Weight_down ttbarplusw 1.02368 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PDF_Weight_up ttbarplusw 0.960811 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PDF_Weight_down ttbarplusw 0.964948 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PDF_Weight_up ttbarplusw 0.983656 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PDF_Weight_down ttbarplusw 1.01927 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PDF_Weight_up ttbarplusw 1.01232 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PDF_Weight_down ttbarplusw 1.07633 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PDF_Weight_up ttbarplusw 1.00341 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PDF_Weight_down ttbarplusw 0.996244 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PDF_Weight_up ttbarplusw 1.03311 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PDF_Weight_down ttbarplusw 1.02608 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PDF_Weight_up ttbarplusw 1.03285 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PDF_Weight_down ttbarplusw 0.963858 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_up ttbarplusw 1.04361 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_down ttbarplusw 0.949039 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PDF_Weight_up ttbarplusw 1.03428 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PDF_Weight_down ttbarplusw 0.892958 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PDF_Weight_up ttbarplusw 1.02203 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PDF_Weight_down ttbarplusw 0.97708 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PDF_Weight_up ttbarplusw 1.02564 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PDF_Weight_down ttbarplusw 0.968452 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PDF_Weight_up ttbarplusw 1.00427 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PDF_Weight_down ttbarplusw 1.0464 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PDF_Weight_up ttbarplusw 0.97114 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PDF_Weight_down ttbarplusw 1.08803 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PDF_Weight_up ttbarplusw 1.00013 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PDF_Weight_down ttbarplusw 0.99985 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PDF_Weight_up ttbarplusw 0.938586 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PDF_Weight_down ttbarplusw 0.933865 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PDF_Weight_up ttbarplusw 0.963328 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PDF_Weight_down ttbarplusw 1.04601 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PDF_Weight_up ttbarplusw 0.997642 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PDF_Weight_down ttbarplusw 1.00259 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PDF_Weight_up ttbarplusw 1.02166 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PDF_Weight_down ttbarplusw 1.02434 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PDF_Weight_up ttbarplusw 1.04415 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PDF_Weight_down ttbarplusw 0.951434 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_up ttbarplusw 1.12887 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_down ttbarplusw 0.849416 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PDF_Weight_up ttbarplusw 1.03723 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PDF_Weight_down ttbarplusw 1.00554 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PDF_Weight_up ttbarplusw 1.15552 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PDF_Weight_down ttbarplusw 0.838235 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PDF_Weight_up ttbarplusw 1.10595 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PDF_Weight_down ttbarplusw 0.869646 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PDF_Weight_up ttbarplusw 0.854525 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PDF_Weight_down ttbarplusw 0.803315 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PDF_Weight_up ttbarplusw 0.694819 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PDF_Weight_down ttbarplusw 1.93094 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PDF_Weight_up ttbarplusw 1.07543 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PDF_Weight_down ttbarplusw 0.973747 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PDF_Weight_up ttbarplusw 1.00214 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PDF_Weight_down ttbarplusw 0.997625 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PDF_Weight_up ttbarplusw 1.06751 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PDF_Weight_down ttbarplusw 0.987244 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PDF_Weight_up ttbarplusw 1.03454 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PDF_Weight_down ttbarplusw 0.996256 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PDF_Weight_up ttbarplusw 1.03925 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PDF_Weight_down ttbarplusw 1.01422 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PDF_Weight_up ttbarplusw 1.05027 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PDF_Weight_down ttbarplusw 1.00189 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PDF_Weight_up ttbarplusw 1.03983 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PDF_Weight_down ttbarplusw 0.955789 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PDF_Weight_up ttbarplusw 1.00588 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PDF_Weight_down ttbarplusw 1.04011 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PDF_Weight_up ttbarplusw 1.03093 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PDF_Weight_down ttbarplusw 1.02352 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 metres_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 metres_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 metres_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 metres_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 metres_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 metres_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf metres_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf metres_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 metres_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 metres_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 metres_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 metres_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 metres_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 metres_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf metres_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf metres_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 metres_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 metres_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 metres_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 metres_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 metres_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 metres_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf metres_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf metres_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 metres_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 metres_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 metres_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 metres_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 metres_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 metres_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf metres_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf metres_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 metres_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 metres_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 metres_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 metres_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 metres_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 metres_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf metres_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf metres_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 metres_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 metres_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 metres_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 metres_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 metres_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 metres_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf metres_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf metres_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 metres_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 metres_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 metres_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 metres_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 metres_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 metres_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf metres_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf metres_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 metres_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 metres_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 metres_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 metres_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 metres_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 metres_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf metres_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf metres_down ttbarplusw 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 metres_up ttbarplusw 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 metres_down ttbarplusw 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 metres_up ttbarplusw 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 metres_down ttbarplusw 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf metres_up ttbarplusw 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf metres_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 metres_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 metres_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 metres_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 metres_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf metres_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf metres_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 metres_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 metres_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 metres_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 metres_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf metres_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf metres_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 metres_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 metres_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 metres_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 metres_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf metres_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf metres_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 metres_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 metres_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 metres_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 metres_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf metres_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf metres_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 metres_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 metres_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 metres_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 metres_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf metres_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf metres_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 metres_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 metres_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 metres_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 metres_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf metres_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf metres_down ttbarplusw 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_up ttbarplusw 0.993764 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_down ttbarplusw 0.998668 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_up ttbarplusw 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_down ttbarplusw 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_up ttbarplusw 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_down ttbarplusw 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_up ttbarplusw 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_down ttbarplusw 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_up ttbarplusw 1.00332 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_down ttbarplusw 1.00428 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_up ttbarplusw 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_down ttbarplusw 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_up ttbarplusw 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_down ttbarplusw 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_up ttbarplusw 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_up ttbarplusw 1.00061 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_down ttbarplusw 1.00686 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_down ttbarplusw 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_up ttbarplusw 0.99538 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_down ttbarplusw 0.987455 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_up ttbarplusw 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_down ttbarplusw 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_up ttbarplusw 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_down ttbarplusw 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_up ttbarplusw 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 metres_up ttbarplusw 1.00981 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 metres_down ttbarplusw 1.01621 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_up ttbarplusw 1.00641 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_down ttbarplusw 1.00393 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 metres_up ttbarplusw 0.985349 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 metres_down ttbarplusw 0.998193 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 metres_up ttbarplusw 0.998311 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 metres_down ttbarplusw 1.00005 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 metres_up ttbarplusw 1.0144 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 metres_down ttbarplusw 1.026 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 metres_up ttbarplusw 0.999867 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 metres_down ttbarplusw 0.997626 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 metres_up ttbarplusw 1.01459 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 metres_down ttbarplusw 1.00937 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 metres_up ttbarplusw 0.988786 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 metres_down ttbarplusw 0.985603 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 metres_up ttbarplusw 1.02347 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 metres_down ttbarplusw 1.0177 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 metres_up ttbarplusw 1.0097 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 metres_down ttbarplusw 1.01003 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf metres_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 metres_up ttbarplusw 0.993198 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 metres_down ttbarplusw 1.0219 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf metres_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 metres_up ttbarplusw 1.02134 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 metres_down ttbarplusw 1.01415 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_up ttbarplusw 0.991455 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_down ttbarplusw 0.986989 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 metres_up ttbarplusw 0.982939 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 metres_down ttbarplusw 0.988323 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 metres_up ttbarplusw 1.00785 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 metres_down ttbarplusw 1.00695 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 metres_up ttbarplusw 1.01009 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 metres_down ttbarplusw 1.01774 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_up ttbarplusw 0.995915 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_down ttbarplusw 0.990389 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_up ttbarplusw 0.998622 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_down ttbarplusw 1.00951 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_up ttbarplusw 1.00624 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_down ttbarplusw 0.977297 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 metres_up ttbarplusw 0.99843 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 metres_down ttbarplusw 1.03318 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 metres_up ttbarplusw 1.01057 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 metres_down ttbarplusw 0.983571 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 metres_up ttbarplusw 1.01444 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 metres_down ttbarplusw 1.00998 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 metres_up ttbarplusw 1.02336 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 metres_down ttbarplusw 1.00099 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 metres_up ttbarplusw 1.02401 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 metres_down ttbarplusw 1.02563 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_up ttbarplusw 1.02214 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_down ttbarplusw 1.04388 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 metres_up ttbarplusw 0.988402 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 metres_down ttbarplusw 1.00744 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 metres_up ttbarplusw 0.95957 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 metres_down ttbarplusw 1.01244 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf metres_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf metres_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf metres_up ttbarplusw 1.02214 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf metres_down ttbarplusw 1.02363 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 metres_up ttbarplusw 1.00241 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 metres_down ttbarplusw 1.01658 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 metres_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 metres_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf metres_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf metres_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 metres_up ttbarplusw 0.991259 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 metres_down ttbarplusw 0.958645 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 metres_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 metres_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf metres_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf metres_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 metres_up ttbarplusw 1.03047 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 metres_down ttbarplusw 0.911517 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 metres_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 metres_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf metres_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf metres_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 metres_up ttbarplusw 1.01555 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 metres_down ttbarplusw 0.97001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 metres_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 metres_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf metres_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf metres_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_up ttbarplusw 0.989963 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_down ttbarplusw 0.998561 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 metres_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 metres_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf metres_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf metres_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_up ttbarplusw 1.00342 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_down ttbarplusw 0.999825 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 metres_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 metres_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf metres_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf metres_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_up ttbarplusw 1.03047 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_down ttbarplusw 1.00242 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 metres_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 metres_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf metres_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf metres_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf metres_up ttbarplusw 1.01747 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf metres_down ttbarplusw 1.01881 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 metres_up ttbarplusw 1.02361 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 metres_down ttbarplusw 1.02351 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf metres_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf metres_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf metres_up ttbarplusw 1.01747 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf metres_down ttbarplusw 1.01373 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf metres_up ttbarplusw 1.01747 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf metres_down ttbarplusw 1.01881 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_up ttbarplusw 1.01747 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_down ttbarplusw 1.01881 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 metres_up ttbarplusw 1.02361 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 metres_down ttbarplusw 0.976832 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf metres_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf metres_down ttbarplusw 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf metres_up ttbarplusw 1.01747 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf metres_down ttbarplusw 1.01881 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_up ttbarplusw 0.999633 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_down ttbarplusw 1.00037 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_up ttbarplusw 1.00014 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_down ttbarplusw 0.999859 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_up ttbarplusw 0.999627 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_down ttbarplusw 1.00039 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_up ttbarplusw 0.999786 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_down ttbarplusw 1.00023 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_up ttbarplusw 0.996932 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_down ttbarplusw 1.00317 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_up ttbarplusw 0.995554 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_down ttbarplusw 1.00453 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_up ttbarplusw 0.996897 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_down ttbarplusw 1.00317 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_up ttbarplusw 1.00082 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_down ttbarplusw 0.999078 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_up ttbarplusw 0.999345 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_down ttbarplusw 1.00066 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_up ttbarplusw 0.999931 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_down ttbarplusw 1.00005 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 b_up ttbarplusw 0.999723 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 b_down ttbarplusw 1.00039 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf b_up ttbarplusw 0.999931 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf b_down ttbarplusw 1.0001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 b_up ttbarplusw 0.991753 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 b_down ttbarplusw 1.00868 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 b_up ttbarplusw 0.997385 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 b_down ttbarplusw 1.00239 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 b_up ttbarplusw 0.993029 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 b_down ttbarplusw 1.0069 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf b_up ttbarplusw 1.00467 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf b_down ttbarplusw 0.995559 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_up ttbarplusw 1.00337 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_down ttbarplusw 0.996261 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 b_up ttbarplusw 1.00225 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 b_down ttbarplusw 0.99771 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 b_up ttbarplusw 0.998543 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 b_down ttbarplusw 1.00077 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf b_up ttbarplusw 0.998482 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf b_down ttbarplusw 1.00073 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_up ttbarplusw 1.00701 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_down ttbarplusw 0.992695 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 b_up ttbarplusw 1.01248 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 b_down ttbarplusw 0.986534 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 b_up ttbarplusw 0.993865 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 b_down ttbarplusw 1.00644 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf b_up ttbarplusw 1.00415 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf b_down ttbarplusw 0.99711 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_up ttbarplusw 1.00674 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_down ttbarplusw 0.992644 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_up ttbarplusw 1.00294 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_down ttbarplusw 0.996601 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 b_up ttbarplusw 1.01025 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 b_down ttbarplusw 0.988568 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf b_up ttbarplusw 1.00042 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf b_down ttbarplusw 0.998727 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_up ttbarplusw 1.01009 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_down ttbarplusw 0.989683 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_up ttbarplusw 1.00418 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_down ttbarplusw 0.995569 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 b_up ttbarplusw 1.01779 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 b_down ttbarplusw 0.981321 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf b_up ttbarplusw 1.00638 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf b_down ttbarplusw 0.992918 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_up ttbarplusw 0.999016 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_down ttbarplusw 1.00142 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 b_up ttbarplusw 1.00164 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 b_down ttbarplusw 0.997221 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf b_up ttbarplusw 0.99516 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf b_down ttbarplusw 1.00552 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 b_up ttbarplusw 0.998592 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 b_down ttbarplusw 1.00181 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 b_up ttbarplusw 1.00687 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 b_down ttbarplusw 0.993234 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf b_up ttbarplusw 1.00339 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf b_down ttbarplusw 0.995483 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_up ttbarplusw 1.00569 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_down ttbarplusw 0.99431 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 b_up ttbarplusw 0.999256 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 b_down ttbarplusw 1.00046 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf b_up ttbarplusw 1.03479 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf b_down ttbarplusw 0.96673 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_up ttbarplusw 1.00189 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_down ttbarplusw 0.998281 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 b_up ttbarplusw 0.998552 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 b_down ttbarplusw 1.00111 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf b_up ttbarplusw 1.02307 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf b_down ttbarplusw 0.976058 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 b_up ttbarplusw 0.981134 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 b_down ttbarplusw 1.02072 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 b_up ttbarplusw 1.01112 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 b_down ttbarplusw 0.988206 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf b_up ttbarplusw 1.01324 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf b_down ttbarplusw 0.983665 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 b_up ttbarplusw 1.00022 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 b_down ttbarplusw 0.998958 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 b_up ttbarplusw 0.998226 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 b_down ttbarplusw 1.00088 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf b_up ttbarplusw 0.994899 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf b_down ttbarplusw 1.00561 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_up ttbarplusw 0.999802 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_down ttbarplusw 1.00035 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 b_up ttbarplusw 1.01399 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 b_down ttbarplusw 0.984671 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf b_up ttbarplusw 1.00932 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf b_down ttbarplusw 0.990355 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_up ttbarplusw 0.99678 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_down ttbarplusw 1.00325 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_up ttbarplusw 0.996653 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_down ttbarplusw 1.00342 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_up ttbarplusw 0.997322 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_down ttbarplusw 1.0028 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_up ttbarplusw 0.988978 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_down ttbarplusw 1.01141 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_up ttbarplusw 0.997779 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_down ttbarplusw 1.00224 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_up ttbarplusw 0.997835 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_down ttbarplusw 1.00236 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_up ttbarplusw 0.996333 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_down ttbarplusw 1.00378 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_up ttbarplusw 1.00067 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_down ttbarplusw 1.00182 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_up ttbarplusw 1.01087 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_down ttbarplusw 0.988665 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_up ttbarplusw 1.00955 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_down ttbarplusw 0.989998 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_up ttbarplusw 1.01006 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_down ttbarplusw 0.989395 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_up ttbarplusw 1.00993 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_down ttbarplusw 0.989544 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_up ttbarplusw 1.00545 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_down ttbarplusw 0.993933 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_up ttbarplusw 0.998101 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_down ttbarplusw 1.00203 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_up ttbarplusw 1.01492 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_down ttbarplusw 0.983622 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_up ttbarplusw 1.00177 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_down ttbarplusw 0.997895 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 b_up ttbarplusw 0.990788 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 b_down ttbarplusw 1.00894 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 b_up ttbarplusw 0.982847 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 b_down ttbarplusw 1.01787 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf b_up ttbarplusw 0.977575 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf b_down ttbarplusw 1.02398 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_up ttbarplusw 0.98418 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_down ttbarplusw 1.01607 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_up ttbarplusw 0.979197 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_down ttbarplusw 1.01893 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_up ttbarplusw 0.962626 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_down ttbarplusw 1.03862 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 b_up ttbarplusw 0.984018 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 b_down ttbarplusw 1.01633 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 b_up ttbarplusw 1.00366 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 b_down ttbarplusw 0.991344 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf b_up ttbarplusw 0.978318 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf b_down ttbarplusw 1.0235 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 b_up ttbarplusw 0.993463 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 b_down ttbarplusw 1.00635 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 b_up ttbarplusw 0.994014 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 b_down ttbarplusw 1.00588 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf b_up ttbarplusw 0.99607 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf b_down ttbarplusw 1.00426 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 b_up ttbarplusw 0.991659 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 b_down ttbarplusw 1.00796 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 b_up ttbarplusw 0.998222 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 b_down ttbarplusw 1.00239 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf b_up ttbarplusw 0.993888 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf b_down ttbarplusw 1.00666 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 b_up ttbarplusw 0.992179 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 b_down ttbarplusw 1.00794 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 b_up ttbarplusw 0.989789 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 b_down ttbarplusw 1.01052 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 b_up ttbarplusw 0.985357 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 b_down ttbarplusw 1.01522 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 b_up ttbarplusw 0.982447 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 b_down ttbarplusw 1.01843 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf b_up ttbarplusw 0.971072 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf b_down ttbarplusw 1.03062 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 b_up ttbarplusw 0.982518 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 b_down ttbarplusw 1.0182 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 b_up ttbarplusw 0.979118 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 b_down ttbarplusw 1.02092 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 b_up ttbarplusw 0.978686 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 b_down ttbarplusw 1.0222 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 b_up ttbarplusw 0.976475 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 b_down ttbarplusw 1.02352 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf b_up ttbarplusw 0.969231 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf b_down ttbarplusw 1.03312 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 b_up ttbarplusw 0.965912 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 b_down ttbarplusw 1.03599 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 b_up ttbarplusw 0.970241 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 b_down ttbarplusw 1.03217 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 b_up ttbarplusw 0.972487 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 b_down ttbarplusw 1.03006 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 b_up ttbarplusw 0.983189 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 b_down ttbarplusw 1.01551 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf b_up ttbarplusw 0.965618 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf b_down ttbarplusw 1.03947 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 b_up ttbarplusw 0.987497 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 b_down ttbarplusw 1.01179 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf b_up ttbarplusw 0.984868 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf b_down ttbarplusw 1.01644 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 b_up ttbarplusw 0.984405 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 b_down ttbarplusw 1.01526 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf b_up ttbarplusw 0.999775 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf b_down ttbarplusw 0.997298 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 b_up ttbarplusw 0.982848 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 b_down ttbarplusw 1.01762 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf b_up ttbarplusw 0.962533 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf b_down ttbarplusw 1.04061 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 b_up ttbarplusw 1.00737 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 b_down ttbarplusw 0.991469 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 b_up ttbarplusw 1.0014 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 b_down ttbarplusw 0.999481 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf b_up ttbarplusw 0.973672 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf b_down ttbarplusw 1.02985 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_up ttbarplusw 0.999307 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_down ttbarplusw 1.0005 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_up ttbarplusw 0.971277 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_down ttbarplusw 1.02529 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_up ttbarplusw 0.973607 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_down ttbarplusw 1.02473 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 b_up ttbarplusw 1.00607 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 b_down ttbarplusw 0.992729 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 b_up ttbarplusw 0.946653 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 b_down ttbarplusw 1.05903 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf b_up ttbarplusw 0.96381 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf b_down ttbarplusw 1.03917 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 b_up ttbarplusw 1.00658 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 b_down ttbarplusw 0.992838 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 b_up ttbarplusw 0.996002 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 b_down ttbarplusw 1.00405 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf b_up ttbarplusw 1.02592 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf b_down ttbarplusw 0.972239 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 b_up ttbarplusw 1.00426 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 b_down ttbarplusw 0.996425 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 b_up ttbarplusw 0.965261 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 b_down ttbarplusw 1.03784 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf b_up ttbarplusw 0.96981 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf b_down ttbarplusw 1.02723 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_up ttbarplusw 0.992996 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_down ttbarplusw 1.00739 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 b_up ttbarplusw 0.991239 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 b_down ttbarplusw 1.00915 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 b_up ttbarplusw 0.997602 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 b_down ttbarplusw 1.00277 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 b_up ttbarplusw 1.00982 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 b_down ttbarplusw 0.987865 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf b_up ttbarplusw 0.970409 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf b_down ttbarplusw 1.03403 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_up ttbarplusw 0.987034 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_down ttbarplusw 1.01325 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 b_up ttbarplusw 0.993284 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 b_down ttbarplusw 1.00714 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 b_up ttbarplusw 0.986706 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 b_down ttbarplusw 1.01158 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 b_up ttbarplusw 0.992368 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 b_down ttbarplusw 1.00835 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf b_up ttbarplusw 0.971525 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf b_down ttbarplusw 1.03034 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_up ttbarplusw 0.977832 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_down ttbarplusw 1.02339 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 b_up ttbarplusw 1.00829 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 b_down ttbarplusw 0.990905 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 b_up ttbarplusw 0.954242 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 b_down ttbarplusw 1.05026 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 b_up ttbarplusw 0.984493 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 b_down ttbarplusw 1.01664 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf b_up ttbarplusw 0.951199 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf b_down ttbarplusw 1.05416 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 b_up ttbarplusw 0.998888 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 b_down ttbarplusw 0.998032 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf b_up ttbarplusw 0.99397 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf b_down ttbarplusw 1.00642 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 b_up ttbarplusw 0.989034 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 b_down ttbarplusw 1.01177 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 b_up ttbarplusw 0.983152 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 b_down ttbarplusw 1.01889 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf b_up ttbarplusw 0.989242 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf b_down ttbarplusw 1.01219 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 b_up ttbarplusw 0.957325 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 b_down ttbarplusw 1.04673 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 b_up ttbarplusw 0.965964 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 b_down ttbarplusw 1.03752 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf b_up ttbarplusw 0.964471 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf b_down ttbarplusw 1.03818 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 b_up ttbarplusw 0.989122 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 b_down ttbarplusw 1.00932 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf b_up ttbarplusw 0.971049 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf b_down ttbarplusw 1.03189 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 b_up ttbarplusw 1.02681 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 b_down ttbarplusw 0.971567 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf b_up ttbarplusw 0.940949 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf b_down ttbarplusw 1.06428 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_up ttbarplusw 1.01566 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_down ttbarplusw 0.97752 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 b_up ttbarplusw 0.981679 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 b_down ttbarplusw 1.0197 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf b_up ttbarplusw 0.975872 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf b_down ttbarplusw 1.02637 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 b_up ttbarplusw 0.961235 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 b_down ttbarplusw 1.04131 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf b_up ttbarplusw 0.995582 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf b_down ttbarplusw 1.00515 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf b_up ttbarplusw 1.00099 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf b_down ttbarplusw 0.999192 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 b_up ttbarplusw 1.02368 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 b_down ttbarplusw 0.973981 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 b_up ttbarplusw 1.00178 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 b_down ttbarplusw 0.998011 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf b_up ttbarplusw 0.999458 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf b_down ttbarplusw 1.00168 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 b_up ttbarplusw 1.00824 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 b_down ttbarplusw 0.990819 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 b_up ttbarplusw 1.04853 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 b_down ttbarplusw 0.959053 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf b_up ttbarplusw 1.14268 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf b_down ttbarplusw 0.844724 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 b_up ttbarplusw 1.00322 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 b_down ttbarplusw 0.996183 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 b_up ttbarplusw 1.04485 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 b_down ttbarplusw 0.949227 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf b_up ttbarplusw 1.03714 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf b_down ttbarplusw 0.94583 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 b_up ttbarplusw 0.991413 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 b_down ttbarplusw 1.00924 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 b_up ttbarplusw 1.01482 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 b_down ttbarplusw 0.98512 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf b_up ttbarplusw 1.00251 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf b_down ttbarplusw 0.99913 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_up ttbarplusw 0.993394 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_down ttbarplusw 1.00652 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 b_up ttbarplusw 1.00719 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 b_down ttbarplusw 0.992271 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf b_up ttbarplusw 1.00585 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf b_down ttbarplusw 0.99196 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_up ttbarplusw 0.997871 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_down ttbarplusw 1.00077 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 b_up ttbarplusw 0.966323 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 b_down ttbarplusw 1.03618 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf b_up ttbarplusw 0.988754 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf b_down ttbarplusw 1.01495 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_up ttbarplusw 0.969862 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_down ttbarplusw 1.0289 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 b_up ttbarplusw 1.00232 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 b_down ttbarplusw 0.995349 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf b_up ttbarplusw 0.977553 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf b_down ttbarplusw 1.01948 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf b_up ttbarplusw 1.00404 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf b_down ttbarplusw 0.992104 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 b_up ttbarplusw 0.993466 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 b_down ttbarplusw 1.00455 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf b_up ttbarplusw 1.02471 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf b_down ttbarplusw 0.971652 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf b_up ttbarplusw 1.06023 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf b_down ttbarplusw 0.936301 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf b_up ttbarplusw 0.984026 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf b_down ttbarplusw 1.01798 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_up ttbarplusw 1.04288 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_down ttbarplusw 0.949936 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 b_up ttbarplusw 0.989878 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 b_down ttbarplusw 1.01014 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf b_up ttbarplusw 0.95847 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf b_down ttbarplusw 1.04509 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf b_up ttbarplusw 1.12035 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf b_down ttbarplusw 0.865182 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_e_up ttbarplusw 0.943808 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_e_down ttbarplusw 1.05792 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_e_up ttbarplusw 0.948677 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_e_down ttbarplusw 1.05293 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_e_up ttbarplusw 0.949111 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_e_down ttbarplusw 1.05248 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_e_up ttbarplusw 0.948821 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_e_down ttbarplusw 1.05278 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_e_up ttbarplusw 0.92968 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_e_down ttbarplusw 1.07252 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_e_up ttbarplusw 0.930966 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_e_down ttbarplusw 1.07128 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_e_up ttbarplusw 0.928438 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_e_down ttbarplusw 1.07382 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_e_up ttbarplusw 0.926799 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_e_down ttbarplusw 1.07551 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_e_up ttbarplusw 0.947766 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_e_down ttbarplusw 1.05388 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_e_up ttbarplusw 0.951746 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_e_down ttbarplusw 1.04981 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_e_up ttbarplusw 0.951827 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_e_down ttbarplusw 1.04973 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_e_up ttbarplusw 0.953884 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_e_down ttbarplusw 1.04758 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_e_up ttbarplusw 0.92493 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_e_down ttbarplusw 1.07757 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_e_up ttbarplusw 0.950977 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_e_down ttbarplusw 1.05028 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_e_up ttbarplusw 0.93961 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_e_down ttbarplusw 1.06263 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_e_up ttbarplusw 0.93516 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_e_down ttbarplusw 1.06695 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_e_up ttbarplusw 0.960733 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_e_down ttbarplusw 1.04035 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_e_up ttbarplusw 0.967229 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_e_down ttbarplusw 1.03355 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_e_up ttbarplusw 0.959843 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_e_down ttbarplusw 1.04146 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_e_up ttbarplusw 0.964951 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_e_down ttbarplusw 1.03582 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_e_up ttbarplusw 0.961721 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_e_down ttbarplusw 1.03929 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_e_up ttbarplusw 0.965028 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_e_down ttbarplusw 1.03591 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_e_up ttbarplusw 0.954022 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_e_down ttbarplusw 1.04754 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_e_up ttbarplusw 0.959129 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_e_down ttbarplusw 1.04208 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_e_up ttbarplusw 0.957262 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_e_down ttbarplusw 1.04384 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_e_up ttbarplusw 0.965862 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_e_down ttbarplusw 1.03501 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_e_up ttbarplusw 0.961698 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_e_down ttbarplusw 1.03921 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_e_up ttbarplusw 0.960927 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_e_down ttbarplusw 1.04007 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_e_up ttbarplusw 0.962374 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_e_down ttbarplusw 1.03859 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_e_up ttbarplusw 0.964177 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_e_down ttbarplusw 1.0367 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_e_up ttbarplusw 0.961059 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_e_down ttbarplusw 1.03993 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_e_up ttbarplusw 0.955563 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_e_down ttbarplusw 1.04572 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_e_up ttbarplusw 0.958991 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_e_down ttbarplusw 1.04204 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_e_up ttbarplusw 0.959814 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_e_down ttbarplusw 1.0412 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_e_up ttbarplusw 0.945633 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_e_down ttbarplusw 1.05638 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_e_up ttbarplusw 0.949582 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_e_down ttbarplusw 1.05179 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_e_up ttbarplusw 0.952357 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_e_down ttbarplusw 1.04912 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_e_up ttbarplusw 0.934961 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_e_down ttbarplusw 1.06828 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_e_up ttbarplusw 0.945133 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_e_down ttbarplusw 1.05645 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_e_up ttbarplusw 0.953475 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_e_down ttbarplusw 1.04769 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_e_up ttbarplusw 0.958308 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_e_down ttbarplusw 1.04257 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_e_up ttbarplusw 0.939154 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_e_down ttbarplusw 1.06239 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_e_up ttbarplusw 0.935672 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_e_down ttbarplusw 1.06612 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_e_up ttbarplusw 0.953793 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_e_down ttbarplusw 1.04752 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_e_up ttbarplusw 0.939316 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_e_down ttbarplusw 1.06203 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_e_up ttbarplusw 0.937342 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_e_down ttbarplusw 1.06378 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_e_up ttbarplusw 0.931019 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_e_down ttbarplusw 1.07091 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_e_up ttbarplusw 0.934886 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_e_down ttbarplusw 1.06693 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_e_up ttbarplusw 0.948995 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_e_down ttbarplusw 1.05242 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_e_up ttbarplusw 0.948583 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_e_down ttbarplusw 1.05303 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_e_up ttbarplusw 0.933665 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_e_down ttbarplusw 1.06791 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_e_up ttbarplusw 0.942716 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_e_down ttbarplusw 1.05865 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_e_up ttbarplusw 0.949757 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_e_down ttbarplusw 1.05131 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_up ttbarplusw 0.954336 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_down ttbarplusw 1.04699 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_up ttbarplusw 0.957414 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_down ttbarplusw 1.0438 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_up ttbarplusw 0.956881 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_down ttbarplusw 1.04431 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_up ttbarplusw 0.960459 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_down ttbarplusw 1.04064 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_up ttbarplusw 0.954823 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_down ttbarplusw 1.04649 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_up ttbarplusw 0.957691 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_down ttbarplusw 1.0435 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_up ttbarplusw 0.958833 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_down ttbarplusw 1.04227 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_up ttbarplusw 0.959328 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_down ttbarplusw 1.04188 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_up ttbarplusw 0.947292 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_down ttbarplusw 1.05416 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_up ttbarplusw 0.94476 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_down ttbarplusw 1.05673 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_up ttbarplusw 0.946004 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_down ttbarplusw 1.05543 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_up ttbarplusw 0.943972 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_down ttbarplusw 1.05768 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_up ttbarplusw 0.938701 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_down ttbarplusw 1.06312 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_up ttbarplusw 0.939497 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_down ttbarplusw 1.06223 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_up ttbarplusw 0.933557 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_down ttbarplusw 1.06852 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_up ttbarplusw 0.94552 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_down ttbarplusw 1.0559 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_up ttbarplusw 0.956299 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_down ttbarplusw 1.04497 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_up ttbarplusw 0.945594 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_down ttbarplusw 1.05605 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_up ttbarplusw 0.962796 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_down ttbarplusw 1.03844 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_up ttbarplusw 0.957627 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_down ttbarplusw 1.04352 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_up ttbarplusw 0.963888 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_down ttbarplusw 1.03718 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_up ttbarplusw 0.953879 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_down ttbarplusw 1.04755 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_up ttbarplusw 0.953653 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_down ttbarplusw 1.04764 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_up ttbarplusw 0.959245 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_down ttbarplusw 1.0419 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_up ttbarplusw 0.976192 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_down ttbarplusw 1.02445 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_e_up ttbarplusw 0.954447 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_e_down ttbarplusw 1.04687 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_e_up ttbarplusw 0.955727 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_e_down ttbarplusw 1.04557 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_e_up ttbarplusw 0.951842 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_e_down ttbarplusw 1.04955 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_e_up ttbarplusw 0.955235 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_e_down ttbarplusw 1.04603 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_e_up ttbarplusw 0.944378 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_e_down ttbarplusw 1.05713 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_e_up ttbarplusw 0.968045 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_e_down ttbarplusw 1.03283 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_e_up ttbarplusw 0.958354 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_e_down ttbarplusw 1.04286 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_e_up ttbarplusw 0.960715 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_e_down ttbarplusw 1.04044 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_e_up ttbarplusw 0.962169 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_e_down ttbarplusw 1.03891 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_e_up ttbarplusw 0.957268 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_e_down ttbarplusw 1.04402 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_e_up ttbarplusw 0.962385 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_e_down ttbarplusw 1.03886 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_e_up ttbarplusw 0.959677 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_e_down ttbarplusw 1.04142 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_e_up ttbarplusw 0.961443 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_e_down ttbarplusw 1.03959 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_e_up ttbarplusw 0.954787 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_e_down ttbarplusw 1.04641 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_e_up ttbarplusw 0.960856 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_e_down ttbarplusw 1.0403 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_e_up ttbarplusw 0.952865 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_e_down ttbarplusw 1.04859 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_e_up ttbarplusw 0.955014 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_e_down ttbarplusw 1.04626 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_e_up ttbarplusw 0.948708 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_e_down ttbarplusw 1.05272 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_e_up ttbarplusw 0.966251 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_e_down ttbarplusw 1.03465 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_e_up ttbarplusw 0.977789 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_e_down ttbarplusw 1.02283 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_e_up ttbarplusw 0.950769 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_e_down ttbarplusw 1.05056 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_e_up ttbarplusw 0.960041 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_e_down ttbarplusw 1.04112 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_e_up ttbarplusw 0.980962 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_e_down ttbarplusw 1.01961 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_e_up ttbarplusw 0.962321 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_e_down ttbarplusw 1.03877 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_e_up ttbarplusw 0.959207 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_e_down ttbarplusw 1.04203 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_e_up ttbarplusw 0.964309 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_e_down ttbarplusw 1.03672 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_e_up ttbarplusw 0.963135 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_e_down ttbarplusw 1.03798 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_up ttbarplusw 0.958609 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_down ttbarplusw 1.04258 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_up ttbarplusw 0.948279 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_down ttbarplusw 1.05333 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_up ttbarplusw 0.988055 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_down ttbarplusw 1.01217 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_up ttbarplusw 0.954799 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_down ttbarplusw 1.04659 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_up ttbarplusw 0.874354 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_down ttbarplusw 1.12873 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_up ttbarplusw 0.956582 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_down ttbarplusw 1.04438 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_up ttbarplusw 0.961004 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_down ttbarplusw 1.04014 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_up ttbarplusw 0.914492 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_down ttbarplusw 1.08821 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_up ttbarplusw 0.972102 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_down ttbarplusw 1.0288 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_e_up ttbarplusw 0.960791 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_e_down ttbarplusw 1.04035 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_e_up ttbarplusw 0.96428 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_e_down ttbarplusw 1.03672 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_e_up ttbarplusw 0.945601 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_e_down ttbarplusw 1.056 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_e_up ttbarplusw 0.941071 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_e_down ttbarplusw 1.06073 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_e_up ttbarplusw 0.950229 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_e_down ttbarplusw 1.05107 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_e_up ttbarplusw 0.982839 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_e_down ttbarplusw 1.01768 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_up ttbarplusw 0.960857 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_down ttbarplusw 1.04028 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_e_up ttbarplusw 0.964796 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_e_down ttbarplusw 1.03617 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_e_up ttbarplusw 0.955422 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_e_down ttbarplusw 1.0459 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_e_up ttbarplusw 0.947516 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_e_down ttbarplusw 1.05412 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_e_up ttbarplusw 0.97732 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_e_down ttbarplusw 1.02312 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_up ttbarplusw 0.958404 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_down ttbarplusw 1.04286 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_e_up ttbarplusw 0.947968 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_e_down ttbarplusw 1.05366 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_e_up ttbarplusw 0.945494 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_e_down ttbarplusw 1.05622 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_e_up ttbarplusw 0.967511 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_e_down ttbarplusw 1.03329 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_e_up ttbarplusw 0.974846 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_e_down ttbarplusw 1.02571 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_up ttbarplusw 0.966722 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_down ttbarplusw 1.03421 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_e_up ttbarplusw 0.957743 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_e_down ttbarplusw 1.04333 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_e_up ttbarplusw 0.95002 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_e_down ttbarplusw 1.05229 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_e_up ttbarplusw 0.948559 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_e_down ttbarplusw 1.05307 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_e_up ttbarplusw 0.93162 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_e_down ttbarplusw 1.0706 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_e_up ttbarplusw 0.8403 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_e_down ttbarplusw 1.16432 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_e_up ttbarplusw 0.991457 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_e_down ttbarplusw 1.00878 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_e_up ttbarplusw 0.966978 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_e_down ttbarplusw 1.03398 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_e_up ttbarplusw 0.966945 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_e_down ttbarplusw 1.03398 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_e_up ttbarplusw 0.963531 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_e_down ttbarplusw 1.03754 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_e_up ttbarplusw 0.937898 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_e_down ttbarplusw 1.064 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_e_up ttbarplusw 0.977279 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_e_down ttbarplusw 1.02331 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_e_up ttbarplusw 0.925294 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_e_down ttbarplusw 1.07696 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_e_up ttbarplusw 0.959863 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_e_down ttbarplusw 1.0413 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_e_up ttbarplusw 0.974551 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_e_down ttbarplusw 1.02614 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_e_up ttbarplusw 0.954983 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_e_down ttbarplusw 1.04632 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_e_up ttbarplusw 0.982631 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_e_down ttbarplusw 1.01788 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_up ttbarplusw 0.94564 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_down ttbarplusw 1.05593 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_e_up ttbarplusw 0.969034 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_e_down ttbarplusw 1.03186 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_e_up ttbarplusw 0.975143 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_e_down ttbarplusw 1.02559 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_e_up ttbarplusw 0.874277 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_e_down ttbarplusw 1.1294 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_e_up ttbarplusw 0.985091 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_e_down ttbarplusw 1.01536 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_up ttbarplusw 0.944246 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_down ttbarplusw 1.05737 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_e_up ttbarplusw 0.964593 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_e_down ttbarplusw 1.0363 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_e_up ttbarplusw 0.956544 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_e_down ttbarplusw 1.0447 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_e_up ttbarplusw 0.9758 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_e_down ttbarplusw 1.02496 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_e_up ttbarplusw 0.950945 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_e_down ttbarplusw 1.05051 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_e_up ttbarplusw 0.968538 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_e_down ttbarplusw 1.03221 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_e_up ttbarplusw 0.931846 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_e_down ttbarplusw 1.07011 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_e_up ttbarplusw 0.970212 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_e_down ttbarplusw 1.03058 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_e_up ttbarplusw 0.958342 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_e_down ttbarplusw 1.04247 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_e_up ttbarplusw 0.964423 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_e_down ttbarplusw 1.03627 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_e_up ttbarplusw 0.963585 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_e_down ttbarplusw 1.03735 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_e_up ttbarplusw 0.935901 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_e_down ttbarplusw 1.06584 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_e_up ttbarplusw 0.970006 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_e_down ttbarplusw 1.03085 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_up ttbarplusw 0.967248 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_down ttbarplusw 1.03357 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_e_up ttbarplusw 0.963761 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_e_down ttbarplusw 1.03727 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_e_up ttbarplusw 0.948797 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_e_down ttbarplusw 1.05281 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_up ttbarplusw 0.949068 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_down ttbarplusw 1.05244 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_e_up ttbarplusw 0.967368 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_e_down ttbarplusw 1.03341 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_e_up ttbarplusw 0.974158 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_e_down ttbarplusw 1.02658 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_up ttbarplusw 0.946111 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_down ttbarplusw 1.05532 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_e_up ttbarplusw 0.959656 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_e_down ttbarplusw 1.04113 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_e_up ttbarplusw 0.982767 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_e_down ttbarplusw 1.01757 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_e_up ttbarplusw 0.91755 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_e_down ttbarplusw 1.0846 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_e_up ttbarplusw 0.974767 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_e_down ttbarplusw 1.02588 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_e_up ttbarplusw 0.974185 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_e_down ttbarplusw 1.02652 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_e_up ttbarplusw 0.965652 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_e_down ttbarplusw 1.03524 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_e_up ttbarplusw 0.891418 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_e_down ttbarplusw 1.11141 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_up ttbarplusw 0.690355 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_down ttbarplusw 1.3177 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_e_up ttbarplusw 0.951323 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_e_down ttbarplusw 1.04992 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_e_up ttbarplusw 0.950838 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_e_down ttbarplusw 1.0505 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_up ttbarplusw 0.854894 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_down ttbarplusw 1.14888 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ISR_Weight_up ttbarplusw 1.00011 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ISR_Weight_down ttbarplusw 0.999833 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ISR_Weight_up ttbarplusw 1.0001 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ISR_Weight_down ttbarplusw 0.999846 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ISR_Weight_up ttbarplusw 1.00015 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ISR_Weight_down ttbarplusw 0.999758 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ISR_Weight_up ttbarplusw 0.999982 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ISR_Weight_down ttbarplusw 1.00003 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ISR_Weight_up ttbarplusw 1.00243 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ISR_Weight_down ttbarplusw 0.996263 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ISR_Weight_up ttbarplusw 1.00043 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ISR_Weight_down ttbarplusw 0.999201 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ISR_Weight_up ttbarplusw 1.00007 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ISR_Weight_down ttbarplusw 0.999732 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ISR_Weight_up ttbarplusw 1.00165 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ISR_Weight_down ttbarplusw 0.99728 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ISR_Weight_up ttbarplusw 1.00014 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ISR_Weight_down ttbarplusw 0.99976 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ISR_Weight_up ttbarplusw 0.999505 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ISR_Weight_down ttbarplusw 1.00078 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ISR_Weight_up ttbarplusw 0.999698 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ISR_Weight_down ttbarplusw 1.00049 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ISR_Weight_up ttbarplusw 1.00043 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ISR_Weight_down ttbarplusw 0.999333 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ISR_Weight_up ttbarplusw 0.999757 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ISR_Weight_down ttbarplusw 1.0004 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ISR_Weight_up ttbarplusw 1.0194 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ISR_Weight_down ttbarplusw 0.968695 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ISR_Weight_up ttbarplusw 1.02855 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ISR_Weight_down ttbarplusw 0.961477 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ISR_Weight_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ISR_Weight_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ISR_Weight_up ttbarplusw 1.00049 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ISR_Weight_down ttbarplusw 0.999213 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ISR_Weight_up ttbarplusw 0.999449 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ISR_Weight_down ttbarplusw 1.00081 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ISR_Weight_up ttbarplusw 1.00175 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ISR_Weight_down ttbarplusw 0.997264 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ISR_Weight_up ttbarplusw 1.00384 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ISR_Weight_down ttbarplusw 0.994636 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ISR_Weight_up ttbarplusw 0.999684 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ISR_Weight_down ttbarplusw 1.00036 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ISR_Weight_up ttbarplusw 0.997572 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ISR_Weight_down ttbarplusw 1.00361 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ISR_Weight_up ttbarplusw 1.00422 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ISR_Weight_down ttbarplusw 0.993449 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ISR_Weight_up ttbarplusw 0.992302 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ISR_Weight_down ttbarplusw 1.01313 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ISR_Weight_up ttbarplusw 1.0013 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ISR_Weight_down ttbarplusw 0.997972 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ISR_Weight_up ttbarplusw 1.00004 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ISR_Weight_down ttbarplusw 0.999713 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ISR_Weight_up ttbarplusw 0.999886 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ISR_Weight_down ttbarplusw 1.00018 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ISR_Weight_up ttbarplusw 1.00075 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ISR_Weight_down ttbarplusw 0.998964 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ISR_Weight_up ttbarplusw 1.00074 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ISR_Weight_down ttbarplusw 0.998597 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ISR_Weight_up ttbarplusw 0.999137 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ISR_Weight_down ttbarplusw 1.00125 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ISR_Weight_up ttbarplusw 0.999895 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ISR_Weight_down ttbarplusw 0.999511 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ISR_Weight_up ttbarplusw 1.00036 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ISR_Weight_down ttbarplusw 0.999416 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ISR_Weight_up ttbarplusw 1.00076 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ISR_Weight_down ttbarplusw 0.998852 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ISR_Weight_up ttbarplusw 1.00345 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ISR_Weight_down ttbarplusw 0.994926 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ISR_Weight_up ttbarplusw 0.998122 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ISR_Weight_down ttbarplusw 1.00269 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ISR_Weight_up ttbarplusw 1.00046 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ISR_Weight_down ttbarplusw 0.998933 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ISR_Weight_up ttbarplusw 0.997314 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ISR_Weight_down ttbarplusw 1.00381 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ISR_Weight_up ttbarplusw 1.00592 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ISR_Weight_down ttbarplusw 0.990354 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ISR_Weight_up ttbarplusw 1.00189 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ISR_Weight_down ttbarplusw 0.996748 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ISR_Weight_up ttbarplusw 0.99783 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ISR_Weight_down ttbarplusw 1.00307 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ISR_Weight_up ttbarplusw 1.00569 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ISR_Weight_down ttbarplusw 0.98945 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ISR_Weight_up ttbarplusw 0.996802 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ISR_Weight_down ttbarplusw 1.00453 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ISR_Weight_up ttbarplusw 1.00441 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ISR_Weight_down ttbarplusw 0.992204 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ISR_Weight_up ttbarplusw 0.987809 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ISR_Weight_down ttbarplusw 1.02252 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ISR_Weight_up ttbarplusw 1.00421 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ISR_Weight_down ttbarplusw 0.992622 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ISR_Weight_up ttbarplusw 0.997059 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ISR_Weight_down ttbarplusw 1.00439 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ISR_Weight_up ttbarplusw 1.00015 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ISR_Weight_down ttbarplusw 0.999768 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ISR_Weight_up ttbarplusw 0.999578 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ISR_Weight_down ttbarplusw 1.00036 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ISR_Weight_up ttbarplusw 1.00408 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ISR_Weight_down ttbarplusw 0.992606 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ISR_Weight_up ttbarplusw 1.00433 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ISR_Weight_down ttbarplusw 0.991301 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ISR_Weight_up ttbarplusw 0.99813 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ISR_Weight_down ttbarplusw 1.00205 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ISR_Weight_up ttbarplusw 0.995185 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ISR_Weight_down ttbarplusw 1.00838 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ISR_Weight_up ttbarplusw 0.997438 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ISR_Weight_down ttbarplusw 1.00487 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ISR_Weight_up ttbarplusw 1.00162 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ISR_Weight_down ttbarplusw 0.996432 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ISR_Weight_up ttbarplusw 1.00259 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ISR_Weight_down ttbarplusw 0.994996 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ISR_Weight_up ttbarplusw 1.00317 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ISR_Weight_down ttbarplusw 0.993666 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ISR_Weight_up ttbarplusw 1.01799 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ISR_Weight_down ttbarplusw 0.969135 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ISR_Weight_up ttbarplusw 0.998367 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ISR_Weight_down ttbarplusw 1.00232 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ISR_Weight_up ttbarplusw 1.00162 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ISR_Weight_down ttbarplusw 0.996425 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ISR_Weight_up ttbarplusw 0.998325 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ISR_Weight_down ttbarplusw 1.00232 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ISR_Weight_up ttbarplusw 1.01062 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ISR_Weight_down ttbarplusw 0.981027 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ISR_Weight_up ttbarplusw 0.992847 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ISR_Weight_down ttbarplusw 1.01244 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ISR_Weight_up ttbarplusw 0.99914 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ISR_Weight_down ttbarplusw 1.00181 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ISR_Weight_up ttbarplusw 0.997459 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ISR_Weight_down ttbarplusw 1.00499 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ISR_Weight_up ttbarplusw 0.997878 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ISR_Weight_down ttbarplusw 1.00368 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ISR_Weight_up ttbarplusw 1.00036 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ISR_Weight_down ttbarplusw 1.00066 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ISR_Weight_up ttbarplusw 1.00237 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ISR_Weight_down ttbarplusw 0.99789 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ISR_Weight_up ttbarplusw 0.9963 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ISR_Weight_down ttbarplusw 1.00698 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ISR_Weight_up ttbarplusw 1.00313 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ISR_Weight_down ttbarplusw 0.995252 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ISR_Weight_up ttbarplusw 1.0121 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ISR_Weight_down ttbarplusw 0.978903 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ISR_Weight_up ttbarplusw 1.01074 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ISR_Weight_down ttbarplusw 0.981819 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ISR_Weight_up ttbarplusw 1.01557 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ISR_Weight_down ttbarplusw 0.974539 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ISR_Weight_up ttbarplusw 1.00898 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ISR_Weight_down ttbarplusw 0.983773 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ISR_Weight_up ttbarplusw 1.02421 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ISR_Weight_down ttbarplusw 0.959123 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ISR_Weight_up ttbarplusw 1.03284 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ISR_Weight_down ttbarplusw 0.945142 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ISR_Weight_up ttbarplusw 1.01 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ISR_Weight_down ttbarplusw 0.982857 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ISR_Weight_up ttbarplusw 1.00126 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ISR_Weight_down ttbarplusw 0.997024 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ISR_Weight_up ttbarplusw 1.01634 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ISR_Weight_down ttbarplusw 0.973171 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ISR_Weight_up ttbarplusw 1.02754 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ISR_Weight_down ttbarplusw 0.95262 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ISR_Weight_up ttbarplusw 1.0194 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ISR_Weight_down ttbarplusw 0.967301 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ISR_Weight_up ttbarplusw 1.01451 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ISR_Weight_down ttbarplusw 0.976265 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ISR_Weight_up ttbarplusw 1.00251 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ISR_Weight_down ttbarplusw 0.997634 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ISR_Weight_up ttbarplusw 0.999187 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ISR_Weight_down ttbarplusw 1.00058 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ISR_Weight_up ttbarplusw 0.995912 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ISR_Weight_down ttbarplusw 1.00629 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ISR_Weight_up ttbarplusw 1.01277 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ISR_Weight_down ttbarplusw 0.977867 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ISR_Weight_up ttbarplusw 1.01323 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ISR_Weight_down ttbarplusw 0.97726 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ISR_Weight_up ttbarplusw 1.01696 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ISR_Weight_down ttbarplusw 0.971628 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ISR_Weight_up ttbarplusw 1.02331 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ISR_Weight_down ttbarplusw 0.961305 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ISR_Weight_up ttbarplusw 1.01711 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ISR_Weight_down ttbarplusw 0.972028 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ISR_Weight_up ttbarplusw 1.01213 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ISR_Weight_down ttbarplusw 0.978273 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ISR_Weight_up ttbarplusw 1.01578 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ISR_Weight_down ttbarplusw 0.972685 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ISR_Weight_up ttbarplusw 1.01423 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ISR_Weight_down ttbarplusw 0.97575 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ISR_Weight_up ttbarplusw 1.0276 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ISR_Weight_down ttbarplusw 0.9543 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ISR_Weight_up ttbarplusw 1.01893 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ISR_Weight_down ttbarplusw 0.969096 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ISR_Weight_up ttbarplusw 1.02052 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ISR_Weight_down ttbarplusw 0.96556 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ISR_Weight_up ttbarplusw 1.00255 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ISR_Weight_down ttbarplusw 0.996139 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ISR_Weight_up ttbarplusw 1.01123 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ISR_Weight_down ttbarplusw 0.983437 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ISR_Weight_up ttbarplusw 1.00092 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ISR_Weight_down ttbarplusw 0.997593 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ISR_Weight_up ttbarplusw 0.99343 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ISR_Weight_down ttbarplusw 1.01079 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ISR_Weight_up ttbarplusw 1.0486 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ISR_Weight_down ttbarplusw 0.916399 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ISR_Weight_up ttbarplusw 1.02913 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ISR_Weight_down ttbarplusw 0.951329 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ISR_Weight_up ttbarplusw 1.02532 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ISR_Weight_down ttbarplusw 0.956142 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ISR_Weight_up ttbarplusw 1.03151 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ISR_Weight_down ttbarplusw 0.947367 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ISR_Weight_up ttbarplusw 1.03498 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ISR_Weight_down ttbarplusw 0.939986 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ISR_Weight_up ttbarplusw 1.12683 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ISR_Weight_down ttbarplusw 0.789173 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ISR_Weight_up ttbarplusw 1.00878 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ISR_Weight_down ttbarplusw 0.984247 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ISR_Weight_up ttbarplusw 0.996944 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ISR_Weight_down ttbarplusw 1.00504 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ISR_Weight_up ttbarplusw 1.0054 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ISR_Weight_down ttbarplusw 0.994079 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ISR_Weight_up ttbarplusw 1.00523 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ISR_Weight_down ttbarplusw 0.989491 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ISR_Weight_up ttbarplusw 1.0004 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ISR_Weight_down ttbarplusw 0.997434 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ISR_Weight_up ttbarplusw 1.04992 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ISR_Weight_down ttbarplusw 0.915997 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ISR_Weight_up ttbarplusw 1.0093 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ISR_Weight_down ttbarplusw 0.982081 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ISR_Weight_up ttbarplusw 1.10219 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ISR_Weight_down ttbarplusw 0.824207 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ISR_Weight_up ttbarplusw 1.00923 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ISR_Weight_down ttbarplusw 0.983877 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ISR_Weight_up ttbarplusw 1.02177 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ISR_Weight_down ttbarplusw 0.962669 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ISR_Weight_up ttbarplusw 1.01067 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ISR_Weight_down ttbarplusw 0.98107 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ISR_Weight_up ttbarplusw 1.03196 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ISR_Weight_down ttbarplusw 0.94605 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ISR_Weight_up ttbarplusw 1.00026 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ISR_Weight_down ttbarplusw 1.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ISR_Weight_up ttbarplusw 1.04587 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ISR_Weight_down ttbarplusw 0.919682 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ISR_Weight_up ttbarplusw 0.995672 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ISR_Weight_down ttbarplusw 1.00534 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ISR_Weight_up ttbarplusw 1.01073 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ISR_Weight_down ttbarplusw 0.981392 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ISR_Weight_up ttbarplusw 1.01038 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ISR_Weight_down ttbarplusw 0.982319 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ISR_Weight_up ttbarplusw 1.01305 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ISR_Weight_down ttbarplusw 0.978561 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ISR_Weight_up ttbarplusw 1.01107 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ISR_Weight_down ttbarplusw 0.981727 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ISR_Weight_up ttbarplusw 1.01401 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ISR_Weight_down ttbarplusw 0.977069 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ISR_Weight_up ttbarplusw 1.01399 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ISR_Weight_down ttbarplusw 0.975237 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ISR_Weight_up ttbarplusw 1.01247 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ISR_Weight_down ttbarplusw 0.979684 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ISR_Weight_up ttbarplusw 1.0198 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ISR_Weight_down ttbarplusw 0.964416 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ISR_Weight_up ttbarplusw 1.00548 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ISR_Weight_down ttbarplusw 0.988832 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ISR_Weight_up ttbarplusw 0.987558 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ISR_Weight_down ttbarplusw 1.01992 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ISR_Weight_up ttbarplusw 1.022 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ISR_Weight_down ttbarplusw 0.960317 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ISR_Weight_up ttbarplusw 1.00667 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ISR_Weight_down ttbarplusw 0.986082 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ISR_Weight_up ttbarplusw 1.00105 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ISR_Weight_down ttbarplusw 0.996339 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ISR_Weight_up ttbarplusw 0.978742 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ISR_Weight_down ttbarplusw 1.03483 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ISR_Weight_up ttbarplusw 0.988101 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ISR_Weight_down ttbarplusw 1.01904 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ISR_Weight_up ttbarplusw 0.979538 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ISR_Weight_down ttbarplusw 1.03388 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ISR_Weight_up ttbarplusw 0.987949 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ISR_Weight_down ttbarplusw 1.01938 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ISR_Weight_up ttbarplusw 1.00311 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ISR_Weight_down ttbarplusw 0.994898 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ISR_Weight_up ttbarplusw 1.00649 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ISR_Weight_down ttbarplusw 0.988174 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ISR_Weight_up ttbarplusw 1.00886 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ISR_Weight_down ttbarplusw 0.984648 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ISR_Weight_up ttbarplusw 1.00071 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ISR_Weight_down ttbarplusw 0.996936 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ISR_Weight_up ttbarplusw 0.97743 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ISR_Weight_down ttbarplusw 1.03683 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ISR_Weight_up ttbarplusw 1.09784 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ISR_Weight_down ttbarplusw 0.833028 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ISR_Weight_up ttbarplusw 1.04317 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ISR_Weight_down ttbarplusw 0.926794 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ISR_Weight_up ttbarplusw 0.987949 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ISR_Weight_down ttbarplusw 1.01938 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ISR_Weight_up ttbarplusw 0.979243 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ISR_Weight_down ttbarplusw 1.0344 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ISR_Weight_up ttbarplusw 0.986066 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ISR_Weight_down ttbarplusw 1.02255 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ISR_Weight_up ttbarplusw 0.97976 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ISR_Weight_down ttbarplusw 1.03349 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ISR_Weight_up ttbarplusw 1.02086 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ISR_Weight_down ttbarplusw 0.96474 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ISR_Weight_up ttbarplusw 0.996755 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ISR_Weight_down ttbarplusw 1.00487 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ISR_Weight_up ttbarplusw 1.10488 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ISR_Weight_down ttbarplusw 0.816998 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ISR_Weight_up ttbarplusw 0.982741 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ISR_Weight_down ttbarplusw 1.02715 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ISR_Weight_up ttbarplusw 0.97976 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ISR_Weight_down ttbarplusw 1.03349 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ISR_Weight_up ttbarplusw 1.01414 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ISR_Weight_down ttbarplusw 0.974079 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ISR_Weight_up ttbarplusw 0.998375 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ISR_Weight_down ttbarplusw 1.0015 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ISR_Weight_up ttbarplusw 1.01604 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ISR_Weight_down ttbarplusw 0.973691 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ISR_Weight_up ttbarplusw 1.0015 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ISR_Weight_down ttbarplusw 0.99491 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ISR_Weight_up ttbarplusw 1.00039 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ISR_Weight_down ttbarplusw 0.997898 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ISR_Weight_up ttbarplusw 0.987605 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ISR_Weight_down ttbarplusw 1.02067 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ISR_Weight_up ttbarplusw 1.00239 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ISR_Weight_down ttbarplusw 0.991746 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ISR_Weight_up ttbarplusw 0.972168 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ISR_Weight_down ttbarplusw 1.04927 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ISR_Weight_up ttbarplusw 1.13043 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ISR_Weight_down ttbarplusw 0.768626 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ISR_Weight_up ttbarplusw 1.01757 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ISR_Weight_down ttbarplusw 0.968242 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ISR_Weight_up ttbarplusw 1.01743 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ISR_Weight_down ttbarplusw 0.973127 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ISR_Weight_up ttbarplusw 1.01845 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ISR_Weight_down ttbarplusw 0.969183 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ISR_Weight_up ttbarplusw 1.00519 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ISR_Weight_down ttbarplusw 0.990403 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ISR_Weight_up ttbarplusw 1.00257 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ISR_Weight_down ttbarplusw 0.994734 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ISR_Weight_up ttbarplusw 1.01521 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ISR_Weight_down ttbarplusw 0.977601 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ISR_Weight_up ttbarplusw 1.0217 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ISR_Weight_down ttbarplusw 0.962588 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ISR_Weight_up ttbarplusw 1.00405 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ISR_Weight_down ttbarplusw 0.991472 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ISR_Weight_up ttbarplusw 1.03933 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ISR_Weight_down ttbarplusw 0.934412 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ISR_Weight_up ttbarplusw 0.99737 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ISR_Weight_down ttbarplusw 1.00593 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ISR_Weight_up ttbarplusw 1.04994 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ISR_Weight_down ttbarplusw 0.909041 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ISR_Weight_up ttbarplusw 1.02553 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ISR_Weight_down ttbarplusw 0.964733 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ISR_Weight_up ttbarplusw 1.05556 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ISR_Weight_down ttbarplusw 0.90173 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ISR_Weight_up ttbarplusw 0.971388 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ISR_Weight_down ttbarplusw 1.04858 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ISR_Weight_up ttbarplusw 0.991169 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ISR_Weight_down ttbarplusw 1.01409 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ISR_Weight_up ttbarplusw 1.01955 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ISR_Weight_down ttbarplusw 0.964519 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ISR_Weight_up ttbarplusw 1.02724 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ISR_Weight_down ttbarplusw 0.951113 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ISR_Weight_up ttbarplusw 0.970952 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ISR_Weight_down ttbarplusw 1.04926 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ISR_Weight_up ttbarplusw 1.01227 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ISR_Weight_down ttbarplusw 0.977078 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ISR_Weight_up ttbarplusw 1.02949 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ISR_Weight_down ttbarplusw 0.952326 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ISR_Weight_up ttbarplusw 0.970952 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ISR_Weight_down ttbarplusw 1.04926 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_up ttbarplusw 1.00074 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_down ttbarplusw 0.995608 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_up ttbarplusw 1.00037 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_down ttbarplusw 0.993605 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_up ttbarplusw 0.999816 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_down ttbarplusw 0.994544 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_up ttbarplusw 1.00113 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_down ttbarplusw 0.996533 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_up ttbarplusw 1.00135 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_down ttbarplusw 0.997949 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_up ttbarplusw 0.995193 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_down ttbarplusw 1.00049 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_up ttbarplusw 1.00188 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_down ttbarplusw 1.00002 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_up ttbarplusw 0.988335 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_down ttbarplusw 1.00668 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_up ttbarplusw 0.988186 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_down ttbarplusw 0.9952 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_up ttbarplusw 0.999588 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_down ttbarplusw 0.996962 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 JES_up ttbarplusw 0.998743 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 JES_down ttbarplusw 0.994632 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf JES_up ttbarplusw 1.00236 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf JES_down ttbarplusw 1.00089 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 JES_up ttbarplusw 1.0001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 JES_down ttbarplusw 1.00168 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 JES_up ttbarplusw 1.02011 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 JES_down ttbarplusw 0.999763 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 JES_up ttbarplusw 1.09786 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 JES_down ttbarplusw 1.00703 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf JES_up ttbarplusw 1.00104 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf JES_down ttbarplusw 1.00379 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_up ttbarplusw 1.00331 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_down ttbarplusw 0.98804 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 JES_up ttbarplusw 1.00284 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 JES_down ttbarplusw 1.00674 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 JES_up ttbarplusw 0.993986 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 JES_down ttbarplusw 0.999687 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf JES_up ttbarplusw 1.00509 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf JES_down ttbarplusw 0.985362 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_up ttbarplusw 0.999837 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_down ttbarplusw 1.00019 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 JES_up ttbarplusw 0.994512 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 JES_down ttbarplusw 1.00107 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 JES_up ttbarplusw 1.0018 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 JES_down ttbarplusw 0.994553 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf JES_up ttbarplusw 1.08982 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf JES_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_up ttbarplusw 1.00051 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_down ttbarplusw 0.994876 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_up ttbarplusw 1.00134 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_down ttbarplusw 0.985487 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 JES_up ttbarplusw 1.00275 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 JES_down ttbarplusw 0.991887 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf JES_up ttbarplusw 0.996836 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf JES_down ttbarplusw 1.00325 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_up ttbarplusw 1.0015 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_down ttbarplusw 0.998739 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_up ttbarplusw 0.997713 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_down ttbarplusw 1.00394 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 JES_up ttbarplusw 1.00318 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 JES_down ttbarplusw 0.999465 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf JES_up ttbarplusw 1.002 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf JES_down ttbarplusw 1.00098 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_up ttbarplusw 0.993578 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_down ttbarplusw 0.994021 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 JES_up ttbarplusw 1.00269 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 JES_down ttbarplusw 0.972835 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf JES_up ttbarplusw 0.992121 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf JES_down ttbarplusw 0.998327 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 JES_up ttbarplusw 1.00028 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 JES_down ttbarplusw 0.999873 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 JES_up ttbarplusw 1.0058 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 JES_down ttbarplusw 1.00074 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf JES_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf JES_down ttbarplusw 0.998137 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_up ttbarplusw 1.00171 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_down ttbarplusw 0.997796 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 JES_up ttbarplusw 1.00511 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 JES_down ttbarplusw 0.997027 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf JES_up ttbarplusw 1.00489 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf JES_down ttbarplusw 0.981217 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_up ttbarplusw 1.00222 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_down ttbarplusw 0.993796 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 JES_up ttbarplusw 0.999911 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 JES_down ttbarplusw 0.996197 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf JES_up ttbarplusw 0.997481 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf JES_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 JES_up ttbarplusw 1.00492 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 JES_down ttbarplusw 0.995171 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 JES_up ttbarplusw 1.00297 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 JES_down ttbarplusw 0.999283 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf JES_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf JES_down ttbarplusw 1.01676 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 JES_up ttbarplusw 0.999523 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 JES_down ttbarplusw 1.00155 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 JES_up ttbarplusw 0.995859 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 JES_down ttbarplusw 0.997665 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf JES_up ttbarplusw 0.982739 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf JES_down ttbarplusw 0.980249 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_up ttbarplusw 1.00256 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_down ttbarplusw 0.999566 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 JES_up ttbarplusw 1.00021 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 JES_down ttbarplusw 1.02288 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf JES_up ttbarplusw 1.00546 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf JES_down ttbarplusw 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_up ttbarplusw 1.00124 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_down ttbarplusw 0.996146 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_up ttbarplusw 1.00173 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_down ttbarplusw 0.999702 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_up ttbarplusw 1.00536 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_down ttbarplusw 1.00207 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_up ttbarplusw 1.00238 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_down ttbarplusw 1.01086 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_up ttbarplusw 1.00277 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_down ttbarplusw 0.989772 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_up ttbarplusw 1.00073 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_down ttbarplusw 0.997004 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_up ttbarplusw 0.99827 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_down ttbarplusw 1.00344 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_up ttbarplusw 1.00372 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_down ttbarplusw 0.996643 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_up ttbarplusw 0.997025 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_down ttbarplusw 1.00457 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_up ttbarplusw 1.00165 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_down ttbarplusw 1.00154 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_up ttbarplusw 0.999612 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_down ttbarplusw 0.996428 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_up ttbarplusw 0.992097 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_down ttbarplusw 0.996781 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_up ttbarplusw 0.995466 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_down ttbarplusw 0.993582 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_up ttbarplusw 0.989909 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_down ttbarplusw 1.0007 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_up ttbarplusw 1.00616 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_down ttbarplusw 0.997712 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_up ttbarplusw 1.00406 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_down ttbarplusw 0.998879 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 JES_up ttbarplusw 0.996416 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 JES_down ttbarplusw 1.0392 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 JES_up ttbarplusw 1.00435 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 JES_down ttbarplusw 0.995948 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf JES_up ttbarplusw 1.00129 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf JES_down ttbarplusw 0.999438 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_up ttbarplusw 0.999472 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_down ttbarplusw 1.00333 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_up ttbarplusw 1.00197 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_down ttbarplusw 1.00113 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_up ttbarplusw 1.00207 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_down ttbarplusw 0.990857 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 JES_up ttbarplusw 0.999333 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 JES_down ttbarplusw 0.959291 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 JES_up ttbarplusw 1.00097 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 JES_down ttbarplusw 0.999399 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf JES_up ttbarplusw 0.991419 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf JES_down ttbarplusw 0.99912 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 JES_up ttbarplusw 0.998477 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 JES_down ttbarplusw 1.01806 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 JES_up ttbarplusw 1.00416 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 JES_down ttbarplusw 1.00117 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf JES_up ttbarplusw 1.00376 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf JES_down ttbarplusw 0.995769 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 JES_up ttbarplusw 1.00707 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 JES_down ttbarplusw 1.02267 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 JES_up ttbarplusw 1.00185 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 JES_down ttbarplusw 1.00032 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf JES_up ttbarplusw 1.00097 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf JES_down ttbarplusw 0.993931 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 JES_up ttbarplusw 1.00037 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 JES_down ttbarplusw 0.993111 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 JES_up ttbarplusw 1.00138 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 JES_down ttbarplusw 0.99931 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 JES_up ttbarplusw 0.997069 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 JES_down ttbarplusw 0.996295 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 JES_up ttbarplusw 1.00435 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 JES_down ttbarplusw 0.995948 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf JES_up ttbarplusw 1.00129 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf JES_down ttbarplusw 0.999438 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 JES_up ttbarplusw 0.99539 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 JES_down ttbarplusw 1.01691 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 JES_up ttbarplusw 1.0038 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 JES_down ttbarplusw 0.996495 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 JES_up ttbarplusw 0.998882 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 JES_down ttbarplusw 0.993737 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 JES_up ttbarplusw 1.00197 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 JES_down ttbarplusw 0.99952 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf JES_up ttbarplusw 1.00207 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf JES_down ttbarplusw 0.9927 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 JES_up ttbarplusw 1.00872 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 JES_down ttbarplusw 0.955485 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 JES_up ttbarplusw 1.00472 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 JES_down ttbarplusw 1.00164 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 JES_up ttbarplusw 1.00075 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 JES_down ttbarplusw 0.990586 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 JES_up ttbarplusw 0.92076 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 JES_down ttbarplusw 0.997485 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf JES_up ttbarplusw 1.00057 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf JES_down ttbarplusw 0.999535 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 JES_up ttbarplusw 1.00222 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 JES_down ttbarplusw 1.01409 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf JES_up ttbarplusw 1.00266 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf JES_down ttbarplusw 0.996364 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 JES_up ttbarplusw 1.0032 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 JES_down ttbarplusw 1.06051 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf JES_up ttbarplusw 1.00266 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf JES_down ttbarplusw 0.996364 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 JES_up ttbarplusw 0.997092 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 JES_down ttbarplusw 1.00205 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf JES_up ttbarplusw 1.00266 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf JES_down ttbarplusw 0.996364 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 JES_up ttbarplusw 0.99834 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 JES_down ttbarplusw 1.04285 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 JES_up ttbarplusw 0.998309 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 JES_down ttbarplusw 1.01385 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf JES_up ttbarplusw 1.00015 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf JES_down ttbarplusw 0.993457 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_up ttbarplusw 0.997836 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_down ttbarplusw 0.996059 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_up ttbarplusw 1.00113 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_up ttbarplusw 0.999691 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_down ttbarplusw 0.995136 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 JES_up ttbarplusw 1.00673 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 JES_down ttbarplusw 0.995561 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 JES_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 JES_down ttbarplusw 0.999754 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf JES_up ttbarplusw 1.02518 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf JES_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 JES_up ttbarplusw 0.985133 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 JES_down ttbarplusw 1.00651 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 JES_up ttbarplusw 1.00309 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 JES_down ttbarplusw 0.99621 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf JES_up ttbarplusw 1.00177 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf JES_down ttbarplusw 0.993078 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 JES_up ttbarplusw 1.00785 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 JES_down ttbarplusw 1.02214 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 JES_up ttbarplusw 1.0002 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 JES_down ttbarplusw 0.999234 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf JES_up ttbarplusw 1.00722 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf JES_down ttbarplusw 0.99956 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_up ttbarplusw 0.998923 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_down ttbarplusw 0.985073 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 JES_up ttbarplusw 1.0011 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 JES_down ttbarplusw 0.99585 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 JES_up ttbarplusw 0.99651 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 JES_down ttbarplusw 0.996794 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 JES_up ttbarplusw 0.999972 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 JES_down ttbarplusw 0.973726 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf JES_up ttbarplusw 1.00015 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf JES_down ttbarplusw 0.993457 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_up ttbarplusw 1.0005 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_down ttbarplusw 0.98402 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 JES_up ttbarplusw 1.00297 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 JES_down ttbarplusw 1.01265 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 JES_up ttbarplusw 1.00861 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 JES_down ttbarplusw 0.997695 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 JES_up ttbarplusw 1.00113 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 JES_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf JES_up ttbarplusw 1.00255 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf JES_down ttbarplusw 0.995136 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_up ttbarplusw 0.973286 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_down ttbarplusw 0.995332 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 JES_up ttbarplusw 0.999651 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 JES_down ttbarplusw 0.999927 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 JES_up ttbarplusw 1.00529 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 JES_down ttbarplusw 0.999819 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 JES_up ttbarplusw 1.00668 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 JES_down ttbarplusw 0.999754 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf JES_up ttbarplusw 1.00629 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf JES_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 JES_up ttbarplusw 0.935981 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 JES_down ttbarplusw 1.03189 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf JES_up ttbarplusw 1.0027 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf JES_down ttbarplusw 0.98884 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 JES_up ttbarplusw 1.00418 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 JES_down ttbarplusw 1.00971 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 JES_up ttbarplusw 0.995561 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 JES_down ttbarplusw 0.99621 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf JES_up ttbarplusw 1.00177 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf JES_down ttbarplusw 0.993078 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 JES_up ttbarplusw 1.00785 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 JES_down ttbarplusw 1.02116 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 JES_up ttbarplusw 1.0002 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 JES_down ttbarplusw 0.999234 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf JES_up ttbarplusw 1.00722 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf JES_down ttbarplusw 0.99956 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 JES_up ttbarplusw 1.00445 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 JES_down ttbarplusw 1.02647 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf JES_up ttbarplusw 1.0027 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf JES_down ttbarplusw 0.98884 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 JES_up ttbarplusw 0.997245 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 JES_down ttbarplusw 1.05059 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf JES_up ttbarplusw 1.00262 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf JES_down ttbarplusw 0.994084 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_up ttbarplusw 1.00393 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_down ttbarplusw 1.04606 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 JES_up ttbarplusw 1.00363 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 JES_down ttbarplusw 0.97886 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf JES_up ttbarplusw 1.00177 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf JES_down ttbarplusw 1.00632 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 JES_up ttbarplusw 1.00559 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 JES_down ttbarplusw 0.967363 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf JES_up ttbarplusw 1.00722 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf JES_down ttbarplusw 0.99956 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf JES_up ttbarplusw 1.00393 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf JES_down ttbarplusw 1.06016 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 JES_up ttbarplusw 1.00624 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 JES_down ttbarplusw 1.02338 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 JES_up ttbarplusw 1.00151 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 JES_down ttbarplusw 0.997354 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf JES_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf JES_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 JES_up ttbarplusw 1.00421 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 JES_down ttbarplusw 0.963539 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 JES_up ttbarplusw 1.00442 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 JES_down ttbarplusw 0.998995 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf JES_up ttbarplusw 1.00094 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf JES_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 JES_up ttbarplusw 1.00595 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 JES_down ttbarplusw 1.08084 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 JES_up ttbarplusw 1.00015 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 JES_down ttbarplusw 0.999114 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf JES_up ttbarplusw 1.00004 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf JES_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 JES_up ttbarplusw 0.988333 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 JES_down ttbarplusw 0.978795 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 JES_up ttbarplusw 1.00183 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 JES_down ttbarplusw 0.997764 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf JES_up ttbarplusw 1.00033 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf JES_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_up ttbarplusw 1.00331 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_down ttbarplusw 0.991379 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 JES_up ttbarplusw 0.996522 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 JES_down ttbarplusw 0.997354 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf JES_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf JES_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_up ttbarplusw 1.00474 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_down ttbarplusw 0.995728 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 JES_up ttbarplusw 0.996214 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 JES_down ttbarplusw 1.00659 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf JES_up ttbarplusw 1.00094 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf JES_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_up ttbarplusw 1.00595 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_down ttbarplusw 0.754066 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 JES_up ttbarplusw 1.00015 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 JES_down ttbarplusw 1.00013 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf JES_up ttbarplusw 1.00004 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf JES_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf JES_up ttbarplusw 1.00496 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf JES_down ttbarplusw 1.0377 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 JES_up ttbarplusw 1.00391 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 JES_down ttbarplusw 1.04979 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf JES_up ttbarplusw 1.00186 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf JES_down ttbarplusw 0.997971 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf JES_up ttbarplusw 1.00496 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf JES_down ttbarplusw 1.0377 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf JES_up ttbarplusw 1.00496 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf JES_down ttbarplusw 1.0377 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_up ttbarplusw 1.00496 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_down ttbarplusw 1.0377 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 JES_up ttbarplusw 1.00603 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 JES_down ttbarplusw 1.05208 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf JES_up ttbarplusw 1.00186 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf JES_down ttbarplusw 0.997971 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf JES_up ttbarplusw 1.00496 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf JES_down ttbarplusw 1.0377 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 err_mu_up ttbarplusw 0.99718 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 err_mu_down ttbarplusw 1.00282 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 err_mu_up ttbarplusw 0.997526 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 err_mu_down ttbarplusw 1.00248 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 err_mu_up ttbarplusw 0.997617 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 err_mu_down ttbarplusw 1.00239 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf err_mu_up ttbarplusw 0.997658 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf err_mu_down ttbarplusw 1.00235 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 err_mu_up ttbarplusw 0.996406 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 err_mu_down ttbarplusw 1.0036 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 err_mu_up ttbarplusw 0.996748 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 err_mu_down ttbarplusw 1.00326 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 err_mu_up ttbarplusw 0.996606 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 err_mu_down ttbarplusw 1.0034 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf err_mu_up ttbarplusw 0.996771 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf err_mu_down ttbarplusw 1.00323 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 err_mu_up ttbarplusw 0.997957 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 err_mu_down ttbarplusw 1.00205 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 err_mu_up ttbarplusw 0.998252 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 err_mu_down ttbarplusw 1.00175 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 err_mu_up ttbarplusw 0.99819 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 err_mu_down ttbarplusw 1.00181 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf err_mu_up ttbarplusw 0.998362 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf err_mu_down ttbarplusw 1.00164 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 err_mu_up ttbarplusw 0.997201 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 err_mu_down ttbarplusw 1.0028 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 err_mu_up ttbarplusw 0.997708 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 err_mu_down ttbarplusw 1.00229 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 err_mu_up ttbarplusw 0.998212 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 err_mu_down ttbarplusw 1.00179 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf err_mu_up ttbarplusw 0.997514 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf err_mu_down ttbarplusw 1.00249 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 err_mu_up ttbarplusw 0.997311 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 err_mu_down ttbarplusw 1.00269 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 err_mu_up ttbarplusw 0.997266 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 err_mu_down ttbarplusw 1.00274 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 err_mu_up ttbarplusw 0.99748 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 err_mu_down ttbarplusw 1.00253 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf err_mu_up ttbarplusw 0.996881 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf err_mu_down ttbarplusw 1.00313 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 err_mu_up ttbarplusw 0.997829 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 err_mu_down ttbarplusw 1.00217 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 err_mu_up ttbarplusw 0.998284 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 err_mu_down ttbarplusw 1.00172 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 err_mu_up ttbarplusw 0.997924 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 err_mu_down ttbarplusw 1.00208 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf err_mu_up ttbarplusw 0.998134 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf err_mu_down ttbarplusw 1.00187 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 err_mu_up ttbarplusw 0.997099 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 err_mu_down ttbarplusw 1.00291 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 err_mu_up ttbarplusw 0.997623 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 err_mu_down ttbarplusw 1.00238 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 err_mu_up ttbarplusw 0.997085 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 err_mu_down ttbarplusw 1.00292 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf err_mu_up ttbarplusw 0.99719 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf err_mu_down ttbarplusw 1.00281 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 err_mu_up ttbarplusw 0.998014 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 err_mu_down ttbarplusw 1.00199 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 err_mu_up ttbarplusw 0.998153 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 err_mu_down ttbarplusw 1.00185 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 err_mu_up ttbarplusw 0.998129 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 err_mu_down ttbarplusw 1.00187 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf err_mu_up ttbarplusw 0.998556 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf err_mu_down ttbarplusw 1.00145 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 err_mu_up ttbarplusw 0.997592 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 err_mu_down ttbarplusw 1.00241 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 err_mu_up ttbarplusw 0.997636 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 err_mu_down ttbarplusw 1.00237 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf err_mu_up ttbarplusw 0.998053 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf err_mu_down ttbarplusw 1.00195 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 err_mu_up ttbarplusw 0.99691 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 err_mu_down ttbarplusw 1.0031 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 err_mu_up ttbarplusw 0.996652 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 err_mu_down ttbarplusw 1.00336 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf err_mu_up ttbarplusw 0.997204 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf err_mu_down ttbarplusw 1.0028 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 err_mu_up ttbarplusw 0.997041 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 err_mu_down ttbarplusw 1.00296 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 err_mu_up ttbarplusw 0.997405 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 err_mu_down ttbarplusw 1.0026 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf err_mu_up ttbarplusw 0.997082 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf err_mu_down ttbarplusw 1.00292 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 err_mu_up ttbarplusw 0.997233 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 err_mu_down ttbarplusw 1.00277 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 err_mu_up ttbarplusw 0.996839 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 err_mu_down ttbarplusw 1.00316 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf err_mu_up ttbarplusw 0.997518 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf err_mu_down ttbarplusw 1.00249 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 err_mu_up ttbarplusw 0.995875 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 err_mu_down ttbarplusw 1.00413 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 err_mu_up ttbarplusw 0.995745 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 err_mu_down ttbarplusw 1.00426 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf err_mu_up ttbarplusw 0.996386 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf err_mu_down ttbarplusw 1.00362 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 err_mu_up ttbarplusw 0.996832 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 err_mu_down ttbarplusw 1.00317 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 err_mu_up ttbarplusw 0.997261 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 err_mu_down ttbarplusw 1.00274 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf err_mu_up ttbarplusw 0.997753 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf err_mu_down ttbarplusw 1.00225 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 err_mu_up ttbarplusw 0.996635 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 err_mu_down ttbarplusw 1.00337 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 err_mu_up ttbarplusw 0.997119 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 err_mu_down ttbarplusw 1.00289 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf err_mu_up ttbarplusw 0.997964 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf err_mu_down ttbarplusw 1.00204 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_up ttbarplusw 0.997616 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_down ttbarplusw 1.00239 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_up ttbarplusw 0.99779 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_down ttbarplusw 1.00221 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_up ttbarplusw 0.997593 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_down ttbarplusw 1.00241 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_up ttbarplusw 0.997927 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_down ttbarplusw 1.00208 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_up ttbarplusw 0.997766 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_down ttbarplusw 1.00224 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_up ttbarplusw 0.997829 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_down ttbarplusw 1.00217 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_up ttbarplusw 0.997906 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_down ttbarplusw 1.0021 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_up ttbarplusw 0.998046 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_down ttbarplusw 1.00196 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_up ttbarplusw 0.996816 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_down ttbarplusw 1.00319 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_up ttbarplusw 0.996764 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_down ttbarplusw 1.00324 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_up ttbarplusw 0.99666 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_down ttbarplusw 1.00335 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_up ttbarplusw 0.996948 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_down ttbarplusw 1.00306 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_up ttbarplusw 0.996215 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_down ttbarplusw 1.00379 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_up ttbarplusw 0.996463 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_down ttbarplusw 1.00354 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_up ttbarplusw 0.996278 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_down ttbarplusw 1.00373 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_up ttbarplusw 0.996808 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_down ttbarplusw 1.0032 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_up ttbarplusw 0.997744 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_down ttbarplusw 1.00226 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_up ttbarplusw 0.996504 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_down ttbarplusw 1.0035 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_up ttbarplusw 0.998213 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_down ttbarplusw 1.00179 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_up ttbarplusw 0.997816 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_down ttbarplusw 1.00219 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_up ttbarplusw 0.997779 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_down ttbarplusw 1.00222 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_up ttbarplusw 0.997166 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_down ttbarplusw 1.00284 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_up ttbarplusw 0.997324 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_down ttbarplusw 1.00268 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_up ttbarplusw 0.998236 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_down ttbarplusw 1.00177 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_up ttbarplusw 0.997932 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_down ttbarplusw 1.00207 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 err_mu_up ttbarplusw 0.997066 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 err_mu_down ttbarplusw 1.00294 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 err_mu_up ttbarplusw 0.997357 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 err_mu_down ttbarplusw 1.00265 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf err_mu_up ttbarplusw 0.997254 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf err_mu_down ttbarplusw 1.00275 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 err_mu_up ttbarplusw 0.997235 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 err_mu_down ttbarplusw 1.00277 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 err_mu_up ttbarplusw 0.995154 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 err_mu_down ttbarplusw 1.00485 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf err_mu_up ttbarplusw 0.996271 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf err_mu_down ttbarplusw 1.00373 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 err_mu_up ttbarplusw 0.997627 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 err_mu_down ttbarplusw 1.00238 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 err_mu_up ttbarplusw 0.997879 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 err_mu_down ttbarplusw 1.00212 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 err_mu_up ttbarplusw 0.997741 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 err_mu_down ttbarplusw 1.00226 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 err_mu_up ttbarplusw 0.997603 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 err_mu_down ttbarplusw 1.0024 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf err_mu_up ttbarplusw 0.997999 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf err_mu_down ttbarplusw 1.002 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 err_mu_up ttbarplusw 0.997555 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 err_mu_down ttbarplusw 1.00245 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 err_mu_up ttbarplusw 0.99756 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 err_mu_down ttbarplusw 1.00244 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 err_mu_up ttbarplusw 0.99747 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 err_mu_down ttbarplusw 1.00253 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 err_mu_up ttbarplusw 0.998316 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 err_mu_down ttbarplusw 1.00169 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf err_mu_up ttbarplusw 0.997837 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf err_mu_down ttbarplusw 1.00217 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 err_mu_up ttbarplusw 0.99735 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 err_mu_down ttbarplusw 1.00266 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 err_mu_up ttbarplusw 0.997911 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 err_mu_down ttbarplusw 1.00209 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 err_mu_up ttbarplusw 0.997645 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 err_mu_down ttbarplusw 1.00236 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 err_mu_up ttbarplusw 0.99818 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 err_mu_down ttbarplusw 1.00182 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf err_mu_up ttbarplusw 0.997577 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf err_mu_down ttbarplusw 1.00243 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 err_mu_up ttbarplusw 0.997816 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 err_mu_down ttbarplusw 1.00219 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf err_mu_up ttbarplusw 0.991769 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf err_mu_down ttbarplusw 1.00824 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 err_mu_up ttbarplusw 0.997958 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 err_mu_down ttbarplusw 1.00205 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf err_mu_up ttbarplusw 0.998531 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf err_mu_down ttbarplusw 1.00147 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 err_mu_up ttbarplusw 0.998094 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 err_mu_down ttbarplusw 1.00191 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf err_mu_up ttbarplusw 0.998033 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf err_mu_down ttbarplusw 1.00197 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_up ttbarplusw 0.998004 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_down ttbarplusw 1.002 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_up ttbarplusw 0.997927 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_down ttbarplusw 1.00208 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_up ttbarplusw 0.998367 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_down ttbarplusw 1.00164 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_up ttbarplusw 0.997675 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_down ttbarplusw 1.00233 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_up ttbarplusw 0.993919 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_down ttbarplusw 1.00609 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_up ttbarplusw 0.995398 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_down ttbarplusw 1.00461 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_up ttbarplusw 0.997553 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_down ttbarplusw 1.00245 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_up ttbarplusw 0.997578 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_down ttbarplusw 1.00242 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_up ttbarplusw 0.999 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_down ttbarplusw 1.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 err_mu_up ttbarplusw 0.997298 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 err_mu_down ttbarplusw 1.00271 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 err_mu_up ttbarplusw 0.997288 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 err_mu_down ttbarplusw 1.00272 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf err_mu_up ttbarplusw 0.997713 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf err_mu_down ttbarplusw 1.00229 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 err_mu_up ttbarplusw 0.996672 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 err_mu_down ttbarplusw 1.00333 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 err_mu_up ttbarplusw 0.996523 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 err_mu_down ttbarplusw 1.00348 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf err_mu_up ttbarplusw 0.998792 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf err_mu_down ttbarplusw 1.00121 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_up ttbarplusw 0.9977 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_down ttbarplusw 1.0023 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 err_mu_up ttbarplusw 0.997689 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 err_mu_down ttbarplusw 1.00231 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 err_mu_up ttbarplusw 0.997521 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 err_mu_down ttbarplusw 1.00248 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 err_mu_up ttbarplusw 0.997719 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 err_mu_down ttbarplusw 1.00228 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf err_mu_up ttbarplusw 0.997629 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf err_mu_down ttbarplusw 1.00237 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_up ttbarplusw 0.997658 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_down ttbarplusw 1.00235 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 err_mu_up ttbarplusw 0.997336 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 err_mu_down ttbarplusw 1.00267 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 err_mu_up ttbarplusw 0.997757 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 err_mu_down ttbarplusw 1.00225 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 err_mu_up ttbarplusw 0.998215 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 err_mu_down ttbarplusw 1.00179 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf err_mu_up ttbarplusw 0.997203 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf err_mu_down ttbarplusw 1.0028 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_up ttbarplusw 0.997625 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_down ttbarplusw 1.00238 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 err_mu_up ttbarplusw 0.994728 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 err_mu_down ttbarplusw 1.00528 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 err_mu_up ttbarplusw 0.997825 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 err_mu_down ttbarplusw 1.00218 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 err_mu_up ttbarplusw 0.998786 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 err_mu_down ttbarplusw 1.00122 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf err_mu_up ttbarplusw 0.994556 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf err_mu_down ttbarplusw 1.00545 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 err_mu_up ttbarplusw 0.996723 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 err_mu_down ttbarplusw 1.00328 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf err_mu_up ttbarplusw 0.999377 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf err_mu_down ttbarplusw 1.00062 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 err_mu_up ttbarplusw 0.998525 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 err_mu_down ttbarplusw 1.00148 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 err_mu_up ttbarplusw 0.998222 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 err_mu_down ttbarplusw 1.00178 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf err_mu_up ttbarplusw 0.998079 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf err_mu_down ttbarplusw 1.00192 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 err_mu_up ttbarplusw 0.997672 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 err_mu_down ttbarplusw 1.00233 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 err_mu_up ttbarplusw 0.996391 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 err_mu_down ttbarplusw 1.00361 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf err_mu_up ttbarplusw 0.999033 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf err_mu_down ttbarplusw 1.00097 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 err_mu_up ttbarplusw 0.998249 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 err_mu_down ttbarplusw 1.00175 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf err_mu_up ttbarplusw 0.992753 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf err_mu_down ttbarplusw 1.00726 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 err_mu_up ttbarplusw 0.998573 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 err_mu_down ttbarplusw 1.00143 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf err_mu_up ttbarplusw 0.998953 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf err_mu_down ttbarplusw 1.00105 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_up ttbarplusw 0.999071 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_down ttbarplusw 1.00093 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 err_mu_up ttbarplusw 0.998433 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 err_mu_down ttbarplusw 1.00157 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf err_mu_up ttbarplusw 0.998602 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf err_mu_down ttbarplusw 1.0014 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 err_mu_up ttbarplusw 0.996503 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 err_mu_down ttbarplusw 1.0035 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf err_mu_up ttbarplusw 0.999269 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf err_mu_down ttbarplusw 1.00073 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_up ttbarplusw 0.998852 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_down ttbarplusw 1.00115 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 err_mu_up ttbarplusw 0.997639 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 err_mu_down ttbarplusw 1.00236 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 err_mu_up ttbarplusw 0.997921 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 err_mu_down ttbarplusw 1.00208 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf err_mu_up ttbarplusw 0.998956 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf err_mu_down ttbarplusw 1.00105 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 err_mu_up ttbarplusw 0.99734 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 err_mu_down ttbarplusw 1.00266 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 err_mu_up ttbarplusw 0.997473 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 err_mu_down ttbarplusw 1.00253 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf err_mu_up ttbarplusw 0.997777 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf err_mu_down ttbarplusw 1.00223 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 err_mu_up ttbarplusw 0.997671 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 err_mu_down ttbarplusw 1.00233 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 err_mu_up ttbarplusw 0.997602 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 err_mu_down ttbarplusw 1.0024 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf err_mu_up ttbarplusw 0.998281 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf err_mu_down ttbarplusw 1.00172 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 err_mu_up ttbarplusw 0.997927 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 err_mu_down ttbarplusw 1.00208 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 err_mu_up ttbarplusw 0.994984 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 err_mu_down ttbarplusw 1.00502 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf err_mu_up ttbarplusw 0.998515 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf err_mu_down ttbarplusw 1.00149 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_up ttbarplusw 0.997827 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_down ttbarplusw 1.00218 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 err_mu_up ttbarplusw 0.997599 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 err_mu_down ttbarplusw 1.00241 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf err_mu_up ttbarplusw 0.997998 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf err_mu_down ttbarplusw 1.002 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_up ttbarplusw 0.997226 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_down ttbarplusw 1.00278 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 err_mu_up ttbarplusw 0.997818 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 err_mu_down ttbarplusw 1.00219 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf err_mu_up ttbarplusw 0.996528 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf err_mu_down ttbarplusw 1.00348 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_up ttbarplusw 0.996774 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_down ttbarplusw 1.00323 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 err_mu_up ttbarplusw 0.994948 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 err_mu_down ttbarplusw 1.00507 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf err_mu_up ttbarplusw 0.998823 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf err_mu_down ttbarplusw 1.00118 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf err_mu_up ttbarplusw 0.998398 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf err_mu_down ttbarplusw 1.0016 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 err_mu_up ttbarplusw 0.998537 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 err_mu_down ttbarplusw 1.00147 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf err_mu_up ttbarplusw 0.9983 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf err_mu_down ttbarplusw 1.0017 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf err_mu_up ttbarplusw 0.997608 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf err_mu_down ttbarplusw 1.0024 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf err_mu_up ttbarplusw 0.996665 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf err_mu_down ttbarplusw 1.00334 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_up ttbarplusw 0.997011 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_down ttbarplusw 1.00299 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 err_mu_up ttbarplusw 0.996872 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 err_mu_down ttbarplusw 1.00313 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf err_mu_up ttbarplusw 0.996907 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf err_mu_down ttbarplusw 1.0031 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_up ttbarplusw 0.992148 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_down ttbarplusw 1.00787 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_up ttbarplusw 0.999845 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_down ttbarplusw 1.00015 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_up ttbarplusw 1.00004 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_down ttbarplusw 0.999957 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_up ttbarplusw 1.00013 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_down ttbarplusw 0.999858 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_up ttbarplusw 1.00001 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_down ttbarplusw 0.999991 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 Prefire_Weight_up ttbarplusw 0.999326 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 Prefire_Weight_down ttbarplusw 1.00066 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 Prefire_Weight_up ttbarplusw 1.00028 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 Prefire_Weight_down ttbarplusw 0.999689 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 Prefire_Weight_up ttbarplusw 0.999566 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 Prefire_Weight_down ttbarplusw 1.00037 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf Prefire_Weight_up ttbarplusw 1.00006 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf Prefire_Weight_down ttbarplusw 0.999956 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_up ttbarplusw 0.999769 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_down ttbarplusw 1.00022 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_up ttbarplusw 1.00004 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_down ttbarplusw 0.999979 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_up ttbarplusw 1.00002 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_down ttbarplusw 0.999934 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_up ttbarplusw 1.00032 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_down ttbarplusw 0.999713 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 Prefire_Weight_up ttbarplusw 0.999014 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 Prefire_Weight_down ttbarplusw 1.00107 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 Prefire_Weight_up ttbarplusw 0.999793 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 Prefire_Weight_down ttbarplusw 0.999908 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 Prefire_Weight_up ttbarplusw 0.999153 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 Prefire_Weight_down ttbarplusw 1.00087 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf Prefire_Weight_up ttbarplusw 1.00093 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf Prefire_Weight_down ttbarplusw 0.999215 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 Prefire_Weight_up ttbarplusw 0.999934 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 Prefire_Weight_down ttbarplusw 1.00006 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 Prefire_Weight_up ttbarplusw 0.99975 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 Prefire_Weight_down ttbarplusw 1.00029 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 Prefire_Weight_up ttbarplusw 1.00089 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 Prefire_Weight_down ttbarplusw 0.999182 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf Prefire_Weight_up ttbarplusw 1.0026 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf Prefire_Weight_down ttbarplusw 0.997364 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 Prefire_Weight_up ttbarplusw 1.00064 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 Prefire_Weight_down ttbarplusw 0.999374 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 Prefire_Weight_up ttbarplusw 1.00137 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 Prefire_Weight_down ttbarplusw 0.998586 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 Prefire_Weight_up ttbarplusw 1.00109 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 Prefire_Weight_down ttbarplusw 0.998924 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf Prefire_Weight_up ttbarplusw 1.0035 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf Prefire_Weight_down ttbarplusw 0.996575 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 Prefire_Weight_up ttbarplusw 1.00027 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 Prefire_Weight_down ttbarplusw 0.999757 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 Prefire_Weight_up ttbarplusw 1.00113 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 Prefire_Weight_down ttbarplusw 0.99896 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 Prefire_Weight_up ttbarplusw 1.00052 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 Prefire_Weight_down ttbarplusw 0.99948 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf Prefire_Weight_up ttbarplusw 1.00034 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf Prefire_Weight_down ttbarplusw 0.999682 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 Prefire_Weight_up ttbarplusw 1.00022 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 Prefire_Weight_down ttbarplusw 0.999783 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 Prefire_Weight_up ttbarplusw 1.00019 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 Prefire_Weight_down ttbarplusw 0.99991 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 Prefire_Weight_up ttbarplusw 0.998924 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 Prefire_Weight_down ttbarplusw 1.00109 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf Prefire_Weight_up ttbarplusw 1.00097 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf Prefire_Weight_down ttbarplusw 0.999104 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 Prefire_Weight_up ttbarplusw 1.00082 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 Prefire_Weight_down ttbarplusw 0.999088 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 Prefire_Weight_up ttbarplusw 1.00051 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 Prefire_Weight_down ttbarplusw 0.999301 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf Prefire_Weight_up ttbarplusw 1.00272 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf Prefire_Weight_down ttbarplusw 0.997393 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 Prefire_Weight_up ttbarplusw 1.00027 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 Prefire_Weight_down ttbarplusw 0.999771 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 Prefire_Weight_up ttbarplusw 1.00169 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 Prefire_Weight_down ttbarplusw 0.998262 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf Prefire_Weight_up ttbarplusw 1.00358 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf Prefire_Weight_down ttbarplusw 0.996823 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 Prefire_Weight_up ttbarplusw 1.00003 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 Prefire_Weight_down ttbarplusw 0.99997 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 Prefire_Weight_up ttbarplusw 1.00051 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 Prefire_Weight_down ttbarplusw 0.999436 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf Prefire_Weight_up ttbarplusw 0.993124 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf Prefire_Weight_down ttbarplusw 1.00689 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 Prefire_Weight_up ttbarplusw 1.00018 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 Prefire_Weight_down ttbarplusw 0.999814 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 Prefire_Weight_up ttbarplusw 1.00226 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 Prefire_Weight_down ttbarplusw 0.997785 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf Prefire_Weight_up ttbarplusw 1.00328 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf Prefire_Weight_down ttbarplusw 0.996702 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 Prefire_Weight_up ttbarplusw 0.9988 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 Prefire_Weight_down ttbarplusw 1.00111 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 Prefire_Weight_up ttbarplusw 1.00049 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 Prefire_Weight_down ttbarplusw 0.999614 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf Prefire_Weight_up ttbarplusw 1.00063 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf Prefire_Weight_down ttbarplusw 0.999346 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 Prefire_Weight_up ttbarplusw 1.00055 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 Prefire_Weight_down ttbarplusw 0.999371 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 Prefire_Weight_up ttbarplusw 0.999915 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 Prefire_Weight_down ttbarplusw 1.00008 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf Prefire_Weight_up ttbarplusw 1.00198 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf Prefire_Weight_down ttbarplusw 0.997985 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 Prefire_Weight_up ttbarplusw 0.997117 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 Prefire_Weight_down ttbarplusw 1.00255 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 Prefire_Weight_up ttbarplusw 1.0011 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 Prefire_Weight_down ttbarplusw 0.998964 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf Prefire_Weight_up ttbarplusw 1.00262 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf Prefire_Weight_down ttbarplusw 0.997287 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_up ttbarplusw 1.00083 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_down ttbarplusw 0.999164 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_up ttbarplusw 0.999131 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_down ttbarplusw 1.00089 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_up ttbarplusw 0.99951 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_down ttbarplusw 1.00047 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_up ttbarplusw 1.00335 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_down ttbarplusw 0.996761 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_up ttbarplusw 1.00014 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_down ttbarplusw 0.999854 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_up ttbarplusw 1.00012 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_down ttbarplusw 0.999862 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_up ttbarplusw 0.999453 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_down ttbarplusw 1.00056 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_up ttbarplusw 1.00103 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_down ttbarplusw 0.998898 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_up ttbarplusw 1.00026 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_down ttbarplusw 0.999747 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_up ttbarplusw 1.00027 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_down ttbarplusw 0.999728 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_up ttbarplusw 0.99955 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_down ttbarplusw 1.00046 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_up ttbarplusw 1.00106 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_down ttbarplusw 0.998918 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_up ttbarplusw 1.00067 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_down ttbarplusw 0.999365 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_up ttbarplusw 1.00167 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_down ttbarplusw 0.998486 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_up ttbarplusw 1.00035 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_down ttbarplusw 0.999663 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_up ttbarplusw 0.999842 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_down ttbarplusw 1.00018 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_up ttbarplusw 1.00154 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_down ttbarplusw 0.998465 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_up ttbarplusw 1.00019 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_down ttbarplusw 0.999637 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_up ttbarplusw 0.996807 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_down ttbarplusw 1.00346 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_up ttbarplusw 1.00001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_down ttbarplusw 0.999987 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_up ttbarplusw 1.00087 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_down ttbarplusw 0.999162 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_up ttbarplusw 0.993367 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_down ttbarplusw 1.00729 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_up ttbarplusw 0.999243 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_down ttbarplusw 1.00066 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_up ttbarplusw 0.995798 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_down ttbarplusw 1.00425 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_up ttbarplusw 1.00201 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_down ttbarplusw 0.997731 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 Prefire_Weight_up ttbarplusw 1.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 Prefire_Weight_down ttbarplusw 0.998989 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 Prefire_Weight_up ttbarplusw 1.00034 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 Prefire_Weight_down ttbarplusw 0.999668 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf Prefire_Weight_up ttbarplusw 1.00121 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf Prefire_Weight_down ttbarplusw 0.998766 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 Prefire_Weight_up ttbarplusw 1.00062 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 Prefire_Weight_down ttbarplusw 0.998979 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 Prefire_Weight_up ttbarplusw 0.997599 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 Prefire_Weight_down ttbarplusw 1.00243 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf Prefire_Weight_up ttbarplusw 0.999862 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf Prefire_Weight_down ttbarplusw 0.999805 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_up ttbarplusw 1.00054 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_down ttbarplusw 0.999432 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_up ttbarplusw 1.00018 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_down ttbarplusw 0.999796 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_up ttbarplusw 0.999984 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_up ttbarplusw 1.00183 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_down ttbarplusw 0.998202 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_up ttbarplusw 0.999024 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_down ttbarplusw 1.00101 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_up ttbarplusw 1.00004 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_down ttbarplusw 0.999912 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_up ttbarplusw 0.998878 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_down ttbarplusw 1.00114 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_up ttbarplusw 0.999917 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_down ttbarplusw 1.00004 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_up ttbarplusw 0.998987 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_down ttbarplusw 1.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_up ttbarplusw 1.00372 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_down ttbarplusw 0.996285 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_up ttbarplusw 1.00144 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_down ttbarplusw 0.998579 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_up ttbarplusw 0.996295 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_down ttbarplusw 1.0036 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_up ttbarplusw 0.995883 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_down ttbarplusw 1.00419 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_up ttbarplusw 1.00272 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_down ttbarplusw 0.997301 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_up ttbarplusw 0.983369 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_down ttbarplusw 1.01653 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 Prefire_Weight_up ttbarplusw 1.00259 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 Prefire_Weight_down ttbarplusw 0.997136 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf Prefire_Weight_up ttbarplusw 0.992786 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf Prefire_Weight_down ttbarplusw 1.00719 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 Prefire_Weight_up ttbarplusw 0.996106 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 Prefire_Weight_down ttbarplusw 1.00392 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf Prefire_Weight_up ttbarplusw 1.00331 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf Prefire_Weight_down ttbarplusw 0.996749 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 Prefire_Weight_up ttbarplusw 1.00161 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 Prefire_Weight_down ttbarplusw 0.998443 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf Prefire_Weight_up ttbarplusw 0.992876 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf Prefire_Weight_down ttbarplusw 1.0072 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_up ttbarplusw 1.00203 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_down ttbarplusw 0.997924 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_up ttbarplusw 1.0027 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_down ttbarplusw 0.997366 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_up ttbarplusw 1.00206 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_down ttbarplusw 0.997953 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_up ttbarplusw 1.00069 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_down ttbarplusw 0.999305 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_up ttbarplusw 1.00203 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_down ttbarplusw 0.997946 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_up ttbarplusw 1.00274 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_down ttbarplusw 0.997177 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_up ttbarplusw 0.999601 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_down ttbarplusw 1.00047 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_up ttbarplusw 0.997796 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_down ttbarplusw 1.00222 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_up ttbarplusw 0.993343 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_down ttbarplusw 1.0067 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 Prefire_Weight_up ttbarplusw 1.00099 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 Prefire_Weight_down ttbarplusw 0.999034 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 Prefire_Weight_up ttbarplusw 0.998059 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 Prefire_Weight_down ttbarplusw 1.00217 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf Prefire_Weight_up ttbarplusw 1.0016 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf Prefire_Weight_down ttbarplusw 0.998471 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 Prefire_Weight_up ttbarplusw 0.999329 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 Prefire_Weight_down ttbarplusw 1.0008 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 Prefire_Weight_up ttbarplusw 1.00352 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 Prefire_Weight_down ttbarplusw 0.996672 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf Prefire_Weight_up ttbarplusw 1.00494 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf Prefire_Weight_down ttbarplusw 0.995121 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_up ttbarplusw 1.00056 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_down ttbarplusw 0.999441 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_up ttbarplusw 1.00056 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_down ttbarplusw 0.999406 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_up ttbarplusw 0.999547 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_down ttbarplusw 1.00037 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_up ttbarplusw 1.00126 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_down ttbarplusw 0.998818 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_up ttbarplusw 1.00299 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_down ttbarplusw 0.997017 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_up ttbarplusw 1.00003 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_down ttbarplusw 0.999986 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_up ttbarplusw 1.00195 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_down ttbarplusw 0.998162 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_up ttbarplusw 0.999686 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_down ttbarplusw 1.00035 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_up ttbarplusw 1.00435 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_down ttbarplusw 0.995907 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_up ttbarplusw 1.00356 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_down ttbarplusw 0.996296 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_up ttbarplusw 0.99949 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_down ttbarplusw 1.00058 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_up ttbarplusw 1.0024 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_down ttbarplusw 0.997466 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_up ttbarplusw 1.00268 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_down ttbarplusw 0.997362 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_up ttbarplusw 1.00078 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_down ttbarplusw 0.99925 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_up ttbarplusw 1.00278 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_down ttbarplusw 0.997329 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 Prefire_Weight_up ttbarplusw 1.00465 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 Prefire_Weight_down ttbarplusw 0.995369 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf Prefire_Weight_up ttbarplusw 1.0043 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf Prefire_Weight_down ttbarplusw 0.995798 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 Prefire_Weight_up ttbarplusw 1.00389 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 Prefire_Weight_down ttbarplusw 0.996214 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 Prefire_Weight_up ttbarplusw 1.00531 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 Prefire_Weight_down ttbarplusw 0.994788 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf Prefire_Weight_up ttbarplusw 1.00451 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf Prefire_Weight_down ttbarplusw 0.995542 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 Prefire_Weight_up ttbarplusw 0.99228 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 Prefire_Weight_down ttbarplusw 1.00765 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 Prefire_Weight_up ttbarplusw 1.0023 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 Prefire_Weight_down ttbarplusw 0.997869 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf Prefire_Weight_up ttbarplusw 0.998008 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf Prefire_Weight_down ttbarplusw 1.00198 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 Prefire_Weight_up ttbarplusw 1.00286 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 Prefire_Weight_down ttbarplusw 0.997141 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf Prefire_Weight_up ttbarplusw 1.00017 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf Prefire_Weight_down ttbarplusw 0.999885 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 Prefire_Weight_up ttbarplusw 0.988443 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 Prefire_Weight_down ttbarplusw 1.0115 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf Prefire_Weight_up ttbarplusw 1.00486 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf Prefire_Weight_down ttbarplusw 0.995201 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_up ttbarplusw 1.00281 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_down ttbarplusw 0.997399 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 Prefire_Weight_up ttbarplusw 1.00203 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 Prefire_Weight_down ttbarplusw 0.997942 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf Prefire_Weight_up ttbarplusw 0.994712 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf Prefire_Weight_down ttbarplusw 1.00531 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 Prefire_Weight_up ttbarplusw 0.987587 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 Prefire_Weight_down ttbarplusw 1.01222 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf Prefire_Weight_up ttbarplusw 1.00325 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf Prefire_Weight_down ttbarplusw 0.996791 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_up ttbarplusw 1.00464 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_down ttbarplusw 0.995344 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 Prefire_Weight_up ttbarplusw 1.00051 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 Prefire_Weight_down ttbarplusw 0.999511 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 Prefire_Weight_up ttbarplusw 1.00204 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 Prefire_Weight_down ttbarplusw 0.998019 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf Prefire_Weight_up ttbarplusw 1.00283 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf Prefire_Weight_down ttbarplusw 0.995948 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_up ttbarplusw 0.999827 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_down ttbarplusw 1.0002 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_up ttbarplusw 1.00254 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_down ttbarplusw 0.997586 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_up ttbarplusw 1.00264 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_down ttbarplusw 0.997392 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 Prefire_Weight_up ttbarplusw 0.998114 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 Prefire_Weight_down ttbarplusw 1.00185 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 Prefire_Weight_up ttbarplusw 1.00586 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 Prefire_Weight_down ttbarplusw 0.994334 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf Prefire_Weight_up ttbarplusw 0.985821 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf Prefire_Weight_down ttbarplusw 1.01414 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 Prefire_Weight_up ttbarplusw 1.00087 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 Prefire_Weight_down ttbarplusw 0.9991 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 Prefire_Weight_up ttbarplusw 1.00301 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 Prefire_Weight_down ttbarplusw 0.996545 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf Prefire_Weight_up ttbarplusw 1.00348 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf Prefire_Weight_down ttbarplusw 0.996644 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_up ttbarplusw 1.00061 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_down ttbarplusw 0.99935 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 Prefire_Weight_up ttbarplusw 1.00202 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 Prefire_Weight_down ttbarplusw 0.997963 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf Prefire_Weight_up ttbarplusw 1.00146 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf Prefire_Weight_down ttbarplusw 0.998812 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_up ttbarplusw 1.00398 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_down ttbarplusw 0.995995 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_up ttbarplusw 0.999439 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_down ttbarplusw 1.00065 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_up ttbarplusw 0.99692 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_down ttbarplusw 1.00299 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_up ttbarplusw 0.998863 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_down ttbarplusw 1.0011 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 Prefire_Weight_up ttbarplusw 1.00268 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 Prefire_Weight_down ttbarplusw 0.99742 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf Prefire_Weight_up ttbarplusw 0.994801 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf Prefire_Weight_down ttbarplusw 1.0052 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf Prefire_Weight_up ttbarplusw 0.998515 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf Prefire_Weight_down ttbarplusw 1.00155 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 Prefire_Weight_up ttbarplusw 1.00187 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 Prefire_Weight_down ttbarplusw 0.997788 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf Prefire_Weight_up ttbarplusw 1.00363 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf Prefire_Weight_down ttbarplusw 0.996432 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf Prefire_Weight_up ttbarplusw 1.0033 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf Prefire_Weight_down ttbarplusw 0.996782 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf Prefire_Weight_up ttbarplusw 1.00292 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf Prefire_Weight_down ttbarplusw 0.997153 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_up ttbarplusw 1.00323 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_down ttbarplusw 0.996846 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 Prefire_Weight_up ttbarplusw 1.00361 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 Prefire_Weight_down ttbarplusw 0.996243 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf Prefire_Weight_up ttbarplusw 1.00153 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf Prefire_Weight_down ttbarplusw 0.998502 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_up ttbarplusw 0.967543 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_down ttbarplusw 1.03268 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restop_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restop_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restop_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restop_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restop_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restop_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restop_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restop_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restop_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restop_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restop_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restop_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restop_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restop_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restop_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restop_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restop_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restop_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restop_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restop_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_restop_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_restop_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_restop_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_restop_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_restop_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_restop_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_restop_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_restop_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_restop_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_restop_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_restop_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_restop_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restop_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restop_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_restop_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_restop_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_restop_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_restop_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_restop_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_restop_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restop_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restop_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_restop_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_restop_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_restop_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_restop_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_restop_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_restop_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restop_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restop_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restop_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restop_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_restop_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_restop_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_restop_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_restop_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restop_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restop_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restop_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restop_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_restop_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_restop_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_restop_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_restop_down ttbarplusw 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restop_up ttbarplusw 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restop_down ttbarplusw 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_restop_up ttbarplusw 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_restop_down ttbarplusw 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_restop_up ttbarplusw 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_restop_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_restop_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_restop_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_restop_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_restop_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_restop_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_restop_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restop_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restop_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_restop_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_restop_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_restop_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_restop_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restop_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restop_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_restop_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_restop_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_restop_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_restop_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_restop_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_restop_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_restop_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_restop_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_restop_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_restop_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_restop_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_restop_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_restop_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_restop_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_restop_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_restop_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restop_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restop_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_restop_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_restop_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_restop_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_restop_down ttbarplusw 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restop_up ttbarplusw 1.09268 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restop_down ttbarplusw 0.901178 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restop_up ttbarplusw 1.09903 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restop_down ttbarplusw 0.894413 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restop_up ttbarplusw 1.10978 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restop_down ttbarplusw 0.88383 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restop_up ttbarplusw 1.1132 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restop_down ttbarplusw 0.879497 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restop_up ttbarplusw 1.06436 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restop_down ttbarplusw 0.929745 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restop_up ttbarplusw 1.06619 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restop_down ttbarplusw 0.927927 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restop_up ttbarplusw 1.08268 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restop_down ttbarplusw 0.910428 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restop_up ttbarplusw 1.07092 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restop_down ttbarplusw 0.922419 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restop_up ttbarplusw 0.987828 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restop_down ttbarplusw 1.01249 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restop_up ttbarplusw 0.986537 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restop_down ttbarplusw 1.01385 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restop_up ttbarplusw 0.987196 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restop_down ttbarplusw 1.01316 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restop_up ttbarplusw 0.989474 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restop_down ttbarplusw 1.01076 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restop_up ttbarplusw 0.975658 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restop_down ttbarplusw 1.02561 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restop_up ttbarplusw 0.977133 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restop_down ttbarplusw 1.02399 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restop_up ttbarplusw 0.981061 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restop_down ttbarplusw 1.01972 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restop_up ttbarplusw 0.984959 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restop_down ttbarplusw 1.01552 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restop_up ttbarplusw 0.980769 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restop_down ttbarplusw 1.02003 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restop_up ttbarplusw 0.990394 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restop_down ttbarplusw 1.00982 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restop_up ttbarplusw 0.992711 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restop_down ttbarplusw 1.00741 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restop_up ttbarplusw 0.987074 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restop_down ttbarplusw 1.01328 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restop_up ttbarplusw 0.988241 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restop_down ttbarplusw 1.01205 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restop_up ttbarplusw 0.987488 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restop_down ttbarplusw 1.01285 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restop_up ttbarplusw 0.989048 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restop_down ttbarplusw 1.01121 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restop_up ttbarplusw 0.995179 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restop_down ttbarplusw 1.00487 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restop_up ttbarplusw 0.993838 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restop_down ttbarplusw 1.00624 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_restop_up ttbarplusw 0.980367 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_restop_down ttbarplusw 1.02046 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_restop_up ttbarplusw 0.983653 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_restop_down ttbarplusw 1.01693 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_restop_up ttbarplusw 0.987398 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_restop_down ttbarplusw 1.01295 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_restop_up ttbarplusw 0.989842 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_restop_down ttbarplusw 1.01038 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_restop_up ttbarplusw 0.987338 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_restop_down ttbarplusw 1.01301 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_restop_up ttbarplusw 0.989195 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_restop_down ttbarplusw 1.01106 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_restop_up ttbarplusw 1.03072 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_restop_down ttbarplusw 0.967949 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_restop_up ttbarplusw 1.03598 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_restop_down ttbarplusw 0.962702 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_restop_up ttbarplusw 1.04319 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_restop_down ttbarplusw 0.955507 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_restop_up ttbarplusw 1.04638 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_restop_down ttbarplusw 0.952594 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_restop_up ttbarplusw 1.06721 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_restop_down ttbarplusw 0.931617 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_restop_up ttbarplusw 1.07163 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_restop_down ttbarplusw 0.926428 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_restop_up ttbarplusw 1.0772 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_restop_down ttbarplusw 0.920515 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_restop_up ttbarplusw 1.06596 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_restop_down ttbarplusw 0.93227 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_restop_up ttbarplusw 1.05995 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_restop_down ttbarplusw 0.938519 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_restop_up ttbarplusw 1.06711 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_restop_down ttbarplusw 0.93097 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_restop_up ttbarplusw 1.10357 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_restop_down ttbarplusw 0.894249 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_restop_up ttbarplusw 1.06637 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_restop_down ttbarplusw 0.931985 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_restop_up ttbarplusw 1.13143 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_restop_down ttbarplusw 0.864393 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_restop_up ttbarplusw 1.07762 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_restop_down ttbarplusw 0.921506 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_restop_up ttbarplusw 1.12647 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_restop_down ttbarplusw 0.871907 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_restop_up ttbarplusw 0.981334 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_restop_down ttbarplusw 1.01942 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_restop_up ttbarplusw 0.990199 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_restop_down ttbarplusw 1.01002 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_restop_up ttbarplusw 1.09678 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_restop_down ttbarplusw 0.899299 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_restop_up ttbarplusw 1.1825 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_restop_down ttbarplusw 0.81369 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_restop_up ttbarplusw 1.08118 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_restop_down ttbarplusw 0.915244 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_restop_up ttbarplusw 1.03173 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_restop_down ttbarplusw 0.967615 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restop_up ttbarplusw 0.981462 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restop_down ttbarplusw 1.0193 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restop_up ttbarplusw 0.987612 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restop_down ttbarplusw 1.01272 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restop_up ttbarplusw 0.976416 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restop_down ttbarplusw 1.02479 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restop_up ttbarplusw 0.978764 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restop_down ttbarplusw 1.0222 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restop_up ttbarplusw 0.98302 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restop_down ttbarplusw 1.0176 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restop_up ttbarplusw 0.991476 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restop_down ttbarplusw 1.00869 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restop_up ttbarplusw 0.983414 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restop_down ttbarplusw 1.01717 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restop_up ttbarplusw 0.994762 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restop_down ttbarplusw 1.0053 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restop_up ttbarplusw 0.980523 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restop_down ttbarplusw 1.02027 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_restop_up ttbarplusw 0.981139 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_restop_down ttbarplusw 1.01964 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_restop_up ttbarplusw 0.981411 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_restop_down ttbarplusw 1.01935 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_restop_up ttbarplusw 0.98328 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_restop_down ttbarplusw 1.01733 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_restop_up ttbarplusw 0.979299 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_restop_down ttbarplusw 1.02162 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_restop_up ttbarplusw 0.987679 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_restop_down ttbarplusw 1.01265 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_restop_up ttbarplusw 0.983579 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_restop_down ttbarplusw 1.017 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restop_up ttbarplusw 1.04052 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restop_down ttbarplusw 0.957795 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_restop_up ttbarplusw 1.04473 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_restop_down ttbarplusw 0.953538 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_restop_up ttbarplusw 1.0454 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_restop_down ttbarplusw 0.952735 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_restop_up ttbarplusw 1.0522 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_restop_down ttbarplusw 0.946412 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_restop_up ttbarplusw 1.02854 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_restop_down ttbarplusw 0.969947 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restop_up ttbarplusw 1.06529 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restop_down ttbarplusw 0.931606 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_restop_up ttbarplusw 1.08012 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_restop_down ttbarplusw 0.916196 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_restop_up ttbarplusw 1.09018 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_restop_down ttbarplusw 0.90689 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_restop_up ttbarplusw 1.13268 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_restop_down ttbarplusw 0.862433 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_restop_up ttbarplusw 1.07042 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_restop_down ttbarplusw 0.928307 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restop_up ttbarplusw 1.08742 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restop_down ttbarplusw 0.909733 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_restop_up ttbarplusw 1.06249 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_restop_down ttbarplusw 0.935575 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_restop_up ttbarplusw 1.13742 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_restop_down ttbarplusw 0.855226 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_restop_up ttbarplusw 1.25215 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_restop_down ttbarplusw 0.745146 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_restop_up ttbarplusw 1.09841 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_restop_down ttbarplusw 0.897509 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_restop_up ttbarplusw 0.981249 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_restop_down ttbarplusw 1.01952 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_restop_up ttbarplusw 0.985858 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_restop_down ttbarplusw 1.01457 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_restop_up ttbarplusw 1.12512 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_restop_down ttbarplusw 0.869639 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_restop_up ttbarplusw 1.16685 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_restop_down ttbarplusw 0.826612 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_restop_up ttbarplusw 1.11485 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_restop_down ttbarplusw 0.881096 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_restop_up ttbarplusw 1.11944 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_restop_down ttbarplusw 0.875318 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_restop_up ttbarplusw 1.16744 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_restop_down ttbarplusw 0.828191 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_restop_up ttbarplusw 1.13976 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_restop_down ttbarplusw 0.85543 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_restop_up ttbarplusw 1.08532 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_restop_down ttbarplusw 0.911173 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_restop_up ttbarplusw 1.04513 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_restop_down ttbarplusw 0.952753 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_restop_up ttbarplusw 0.981211 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_restop_down ttbarplusw 1.01957 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_restop_up ttbarplusw 0.983326 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_restop_down ttbarplusw 1.01728 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restop_up ttbarplusw 0.981371 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restop_down ttbarplusw 1.01939 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_restop_up ttbarplusw 1.15539 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_restop_down ttbarplusw 0.838148 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_restop_up ttbarplusw 1.22843 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_restop_down ttbarplusw 0.763502 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_restop_up ttbarplusw 1.24918 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_restop_down ttbarplusw 0.741446 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_restop_up ttbarplusw 1.20696 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_restop_down ttbarplusw 0.785883 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restop_up ttbarplusw 1.27473 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restop_down ttbarplusw 0.714552 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_restop_up ttbarplusw 0.978503 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_restop_down ttbarplusw 1.0225 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_restop_up ttbarplusw 0.981565 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_restop_down ttbarplusw 1.01916 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_restop_up ttbarplusw 0.967961 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_restop_down ttbarplusw 1.03426 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_restop_up ttbarplusw 0.962916 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_restop_down ttbarplusw 1.04009 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_restop_up ttbarplusw 0.970127 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_restop_down ttbarplusw 1.0318 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_restop_up ttbarplusw 0.977163 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_restop_down ttbarplusw 1.02394 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_restop_up ttbarplusw 0.97556 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_restop_down ttbarplusw 1.02571 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_restop_up ttbarplusw 0.973065 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_restop_down ttbarplusw 1.02851 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_restop_up ttbarplusw 0.977249 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_restop_down ttbarplusw 1.02382 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_restop_up ttbarplusw 0.976821 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_restop_down ttbarplusw 1.02435 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_restop_up ttbarplusw 0.978861 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_restop_down ttbarplusw 1.02209 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_restop_up ttbarplusw 0.972589 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_restop_down ttbarplusw 1.02901 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restop_up ttbarplusw 1.05137 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restop_down ttbarplusw 0.946207 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_restop_up ttbarplusw 1.06822 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_restop_down ttbarplusw 0.929031 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_restop_up ttbarplusw 1.10794 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_restop_down ttbarplusw 0.884536 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restop_up ttbarplusw 1.05675 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restop_down ttbarplusw 0.938686 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_restop_up ttbarplusw 1.05368 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_restop_down ttbarplusw 0.942877 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_restop_up ttbarplusw 1.02072 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_restop_down ttbarplusw 0.978277 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restop_up ttbarplusw 1.10653 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restop_down ttbarplusw 0.888018 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_restop_up ttbarplusw 1.10166 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_restop_down ttbarplusw 0.892522 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_restop_up ttbarplusw 1.0675 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_restop_down ttbarplusw 0.929234 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_restop_up ttbarplusw 0.977192 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_restop_down ttbarplusw 1.02393 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_restop_up ttbarplusw 1.12501 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_restop_down ttbarplusw 0.868757 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_restop_up ttbarplusw 1.07861 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_restop_down ttbarplusw 0.917279 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_restop_up ttbarplusw 1.08366 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_restop_down ttbarplusw 0.911907 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_restop_up ttbarplusw 0.977192 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_restop_down ttbarplusw 1.02393 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restop_up ttbarplusw 0.977192 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restop_down ttbarplusw 1.02393 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_restop_up ttbarplusw 1.1879 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_restop_down ttbarplusw 0.802753 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_restop_up ttbarplusw 1.30001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_restop_down ttbarplusw 0.686295 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restop_up ttbarplusw 0.677895 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restop_down ttbarplusw 1.33754 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_up ttbarplusw 0.999701 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_down ttbarplusw 1.00033 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_up ttbarplusw 1.00025 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_down ttbarplusw 0.999724 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ivfunc_up ttbarplusw 0.999877 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ivfunc_down ttbarplusw 1.00014 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ivfunc_up ttbarplusw 1.00036 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ivfunc_down ttbarplusw 0.9996 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ivfunc_up ttbarplusw 1.00035 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ivfunc_down ttbarplusw 0.999608 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ivfunc_up ttbarplusw 1.00008 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ivfunc_down ttbarplusw 0.999916 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ivfunc_up ttbarplusw 0.998892 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ivfunc_down ttbarplusw 1.00123 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ivfunc_up ttbarplusw 1.00099 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ivfunc_down ttbarplusw 0.998896 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ivfunc_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ivfunc_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ivfunc_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ivfunc_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ivfunc_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ivfunc_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ivfunc_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ivfunc_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ivfunc_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ivfunc_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ivfunc_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ivfunc_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ivfunc_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ivfunc_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ivfunc_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ivfunc_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ivfunc_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ivfunc_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ivfunc_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ivfunc_down ttbarplusw 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_up ttbarplusw 0.999956 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_down ttbarplusw 1.00005 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ivfunc_up ttbarplusw 0.998227 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ivfunc_down ttbarplusw 1.00197 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ivfunc_up ttbarplusw 1.00039 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ivfunc_down ttbarplusw 0.99957 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ivfunc_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ivfunc_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ivfunc_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ivfunc_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ivfunc_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ivfunc_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ivfunc_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ivfunc_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ivfunc_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ivfunc_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ivfunc_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ivfunc_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ivfunc_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ivfunc_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ivfunc_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ivfunc_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ivfunc_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ivfunc_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ivfunc_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ivfunc_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ivfunc_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ivfunc_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ivfunc_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ivfunc_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ivfunc_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ivfunc_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ivfunc_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ivfunc_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ivfunc_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ivfunc_down ttbarplusw 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_up ttbarplusw 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_down ttbarplusw 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_up ttbarplusw 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_down ttbarplusw 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_up ttbarplusw 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_down ttbarplusw 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_up ttbarplusw 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_down ttbarplusw 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_up ttbarplusw 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_down ttbarplusw 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_up ttbarplusw 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_down ttbarplusw 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_up ttbarplusw 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_down ttbarplusw 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_up ttbarplusw 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_down ttbarplusw 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_up ttbarplusw 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_down ttbarplusw 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_up ttbarplusw 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_down ttbarplusw 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_up ttbarplusw 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_down ttbarplusw 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_up ttbarplusw 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ivfunc_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ivfunc_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ivfunc_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ivfunc_down ttbarplusw 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_up ttbarplusw 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_tau_up ttbarplusw 0.954522 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_tau_down ttbarplusw 0.954522 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_tau_up ttbarplusw 0.959445 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_tau_down ttbarplusw 0.959445 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_tau_up ttbarplusw 0.961255 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_tau_down ttbarplusw 0.961255 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_tau_up ttbarplusw 0.960584 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_tau_down ttbarplusw 0.960584 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_tau_up ttbarplusw 0.93334 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_tau_down ttbarplusw 0.93334 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_tau_up ttbarplusw 0.932023 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_tau_down ttbarplusw 0.932023 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_tau_up ttbarplusw 0.920484 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_tau_down ttbarplusw 0.920484 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_tau_up ttbarplusw 0.914833 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_tau_down ttbarplusw 0.914833 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_tau_up ttbarplusw 0.963534 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_tau_down ttbarplusw 0.963534 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_tau_up ttbarplusw 0.96902 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_tau_down ttbarplusw 0.96902 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_tau_up ttbarplusw 0.971072 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_tau_down ttbarplusw 0.971072 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_tau_up ttbarplusw 0.974342 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_tau_down ttbarplusw 0.974342 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_tau_up ttbarplusw 0.956842 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_tau_down ttbarplusw 0.956842 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_tau_up ttbarplusw 0.948077 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_tau_down ttbarplusw 0.948077 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_tau_up ttbarplusw 0.972079 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_tau_down ttbarplusw 0.972079 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_tau_up ttbarplusw 0.94364 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_tau_down ttbarplusw 0.94364 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_tau_up ttbarplusw 0.950753 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_tau_down ttbarplusw 0.950753 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_tau_up ttbarplusw 0.948738 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_tau_down ttbarplusw 0.948738 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_tau_up ttbarplusw 0.954014 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_tau_down ttbarplusw 0.954014 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_tau_up ttbarplusw 0.926253 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_tau_down ttbarplusw 0.926253 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_tau_up ttbarplusw 0.927006 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_tau_down ttbarplusw 0.927006 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_tau_up ttbarplusw 0.926123 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_tau_down ttbarplusw 0.926123 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_tau_up ttbarplusw 0.891439 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_tau_down ttbarplusw 0.891439 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_tau_up ttbarplusw 0.867028 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_tau_down ttbarplusw 0.867028 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_tau_up ttbarplusw 0.946922 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_tau_down ttbarplusw 0.946922 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_tau_up ttbarplusw 0.947797 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_tau_down ttbarplusw 0.947797 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_tau_up ttbarplusw 0.929311 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_tau_down ttbarplusw 0.929311 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_tau_up ttbarplusw 0.933469 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_tau_down ttbarplusw 0.933469 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_tau_up ttbarplusw 0.921507 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_tau_down ttbarplusw 0.921507 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_tau_up ttbarplusw 0.904827 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_tau_down ttbarplusw 0.904827 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_tau_up ttbarplusw 0.877989 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_tau_down ttbarplusw 0.877989 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_tau_up ttbarplusw 0.88027 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_tau_down ttbarplusw 0.88027 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_tau_up ttbarplusw 0.959238 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_tau_down ttbarplusw 0.959238 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_tau_up ttbarplusw 0.950339 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_tau_down ttbarplusw 0.950339 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_tau_up ttbarplusw 0.959606 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_tau_down ttbarplusw 0.959606 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_tau_up ttbarplusw 0.949867 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_tau_down ttbarplusw 0.949867 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_tau_up ttbarplusw 0.95597 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_tau_down ttbarplusw 0.95597 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_tau_up ttbarplusw 0.969011 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_tau_down ttbarplusw 0.969011 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_tau_up ttbarplusw 0.952877 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_tau_down ttbarplusw 0.952877 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_tau_up ttbarplusw 0.954189 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_tau_down ttbarplusw 0.954189 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_tau_up ttbarplusw 0.942174 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_tau_down ttbarplusw 0.942174 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_tau_up ttbarplusw 0.945334 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_tau_down ttbarplusw 0.945334 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_tau_up ttbarplusw 0.941563 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_tau_down ttbarplusw 0.941563 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_tau_up ttbarplusw 0.960045 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_tau_down ttbarplusw 0.960045 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_tau_up ttbarplusw 0.93488 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_tau_down ttbarplusw 0.93488 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_tau_up ttbarplusw 0.939412 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_tau_down ttbarplusw 0.939412 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_tau_up ttbarplusw 0.952409 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_tau_down ttbarplusw 0.952409 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_tau_up ttbarplusw 0.932467 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_tau_down ttbarplusw 0.932467 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_tau_up ttbarplusw 0.945602 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_tau_down ttbarplusw 0.945602 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_tau_up ttbarplusw 0.940659 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_tau_down ttbarplusw 0.940659 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_tau_up ttbarplusw 0.958398 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_tau_down ttbarplusw 0.958398 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_tau_up ttbarplusw 0.974015 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_tau_down ttbarplusw 0.974015 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_tau_up ttbarplusw 0.972249 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_tau_down ttbarplusw 0.972249 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_up ttbarplusw 0.954865 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_down ttbarplusw 0.954865 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_up ttbarplusw 0.957752 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_down ttbarplusw 0.957752 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_up ttbarplusw 0.965683 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_down ttbarplusw 0.965683 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_up ttbarplusw 0.948752 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_down ttbarplusw 0.948752 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_up ttbarplusw 0.952178 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_down ttbarplusw 0.952178 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_up ttbarplusw 0.95083 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_down ttbarplusw 0.95083 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_up ttbarplusw 0.954773 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_down ttbarplusw 0.954773 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_up ttbarplusw 0.944279 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_down ttbarplusw 0.944279 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_up ttbarplusw 0.966549 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_down ttbarplusw 0.966549 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_up ttbarplusw 0.959765 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_down ttbarplusw 0.959765 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_up ttbarplusw 0.952204 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_down ttbarplusw 0.952204 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_up ttbarplusw 0.933943 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_down ttbarplusw 0.933943 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_up ttbarplusw 0.967508 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_down ttbarplusw 0.967508 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_up ttbarplusw 0.959521 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_down ttbarplusw 0.959521 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_up ttbarplusw 0.952112 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_down ttbarplusw 0.952112 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_up ttbarplusw 0.923974 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_down ttbarplusw 0.923974 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_up ttbarplusw 0.95973 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_down ttbarplusw 0.95973 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_up ttbarplusw 0.939936 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_down ttbarplusw 0.939936 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_up ttbarplusw 0.953358 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_down ttbarplusw 0.953358 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_up ttbarplusw 0.965351 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_down ttbarplusw 0.965351 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_up ttbarplusw 0.958053 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_down ttbarplusw 0.958053 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_up ttbarplusw 0.947806 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_down ttbarplusw 0.947806 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_up ttbarplusw 0.968221 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_down ttbarplusw 0.968221 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_up ttbarplusw 0.991631 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_down ttbarplusw 0.991631 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_up ttbarplusw 0.964272 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_down ttbarplusw 0.964272 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_tau_up ttbarplusw 0.952264 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_tau_down ttbarplusw 0.952264 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_tau_up ttbarplusw 0.955134 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_tau_down ttbarplusw 0.955134 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_tau_up ttbarplusw 0.952929 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_tau_down ttbarplusw 0.952929 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_tau_up ttbarplusw 0.980871 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_tau_down ttbarplusw 0.980871 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_tau_up ttbarplusw 0.983923 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_tau_down ttbarplusw 0.983923 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_tau_up ttbarplusw 0.97308 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_tau_down ttbarplusw 0.97308 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_tau_up ttbarplusw 0.964459 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_tau_down ttbarplusw 0.964459 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_tau_up ttbarplusw 0.963699 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_tau_down ttbarplusw 0.963699 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_tau_up ttbarplusw 0.960212 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_tau_down ttbarplusw 0.960212 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_tau_up ttbarplusw 0.958808 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_tau_down ttbarplusw 0.958808 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_tau_up ttbarplusw 0.956638 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_tau_down ttbarplusw 0.956638 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_tau_up ttbarplusw 0.967434 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_tau_down ttbarplusw 0.967434 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_tau_up ttbarplusw 0.958018 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_tau_down ttbarplusw 0.958018 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_tau_up ttbarplusw 0.93599 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_tau_down ttbarplusw 0.93599 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_tau_up ttbarplusw 0.962905 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_tau_down ttbarplusw 0.962905 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_tau_up ttbarplusw 0.946456 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_tau_down ttbarplusw 0.946456 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_tau_up ttbarplusw 0.978124 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_tau_down ttbarplusw 0.978124 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_tau_up ttbarplusw 0.966942 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_tau_down ttbarplusw 0.966942 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_tau_up ttbarplusw 0.957334 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_tau_down ttbarplusw 0.957334 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_tau_up ttbarplusw 0.971924 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_tau_down ttbarplusw 0.971924 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_tau_up ttbarplusw 0.910722 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_tau_down ttbarplusw 0.910722 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_tau_up ttbarplusw 0.950233 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_tau_down ttbarplusw 0.950233 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_tau_up ttbarplusw 0.990099 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_tau_down ttbarplusw 0.990099 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_tau_up ttbarplusw 0.95917 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_tau_down ttbarplusw 0.95917 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_tau_up ttbarplusw 0.985 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_tau_down ttbarplusw 0.985 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_tau_up ttbarplusw 0.955669 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_tau_down ttbarplusw 0.955669 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_tau_up ttbarplusw 0.821461 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_tau_down ttbarplusw 0.821461 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_up ttbarplusw 0.963008 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_down ttbarplusw 0.963008 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_up ttbarplusw 0.911405 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_down ttbarplusw 0.911405 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_up ttbarplusw 0.937921 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_down ttbarplusw 0.937921 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_up ttbarplusw 0.969132 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_down ttbarplusw 0.969132 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_up ttbarplusw 0.871566 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_down ttbarplusw 0.871566 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_up ttbarplusw 0.876078 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_down ttbarplusw 0.876078 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_up ttbarplusw 0.975272 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_down ttbarplusw 0.975272 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_up ttbarplusw 0.919182 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_down ttbarplusw 0.919182 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_up ttbarplusw 0.95393 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_down ttbarplusw 0.95393 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_tau_up ttbarplusw 0.965736 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_tau_down ttbarplusw 0.965736 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_tau_up ttbarplusw 0.964383 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_tau_down ttbarplusw 0.964383 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_tau_up ttbarplusw 0.907256 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_tau_down ttbarplusw 0.907256 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_tau_up ttbarplusw 0.991218 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_tau_down ttbarplusw 0.991218 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_tau_up ttbarplusw 0.99368 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_tau_down ttbarplusw 0.99368 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_tau_up ttbarplusw 0.991487 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_tau_down ttbarplusw 0.991487 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_up ttbarplusw 0.965646 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_down ttbarplusw 0.965646 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_tau_up ttbarplusw 0.961424 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_tau_down ttbarplusw 0.961424 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_tau_up ttbarplusw 0.933674 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_tau_down ttbarplusw 0.933674 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_tau_up ttbarplusw 0.950018 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_tau_down ttbarplusw 0.950018 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_tau_up ttbarplusw 0.953286 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_tau_down ttbarplusw 0.953286 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_up ttbarplusw 0.977529 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_down ttbarplusw 0.977529 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_tau_up ttbarplusw 0.932204 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_tau_down ttbarplusw 0.932204 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_tau_up ttbarplusw 0.949454 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_tau_down ttbarplusw 0.949454 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_tau_up ttbarplusw 0.92841 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_tau_down ttbarplusw 0.92841 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_tau_up ttbarplusw 0.938202 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_tau_down ttbarplusw 0.938202 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_up ttbarplusw 0.987586 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_down ttbarplusw 0.987586 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_tau_up ttbarplusw 0.990596 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_tau_down ttbarplusw 0.990596 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_tau_up ttbarplusw 0.958428 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_tau_down ttbarplusw 0.958428 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_tau_up ttbarplusw 0.992501 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_tau_down ttbarplusw 0.992501 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_tau_up ttbarplusw 0.870082 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_tau_down ttbarplusw 0.870082 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_tau_up ttbarplusw 0.802684 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_tau_down ttbarplusw 0.802684 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_tau_up ttbarplusw 0.995013 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_tau_down ttbarplusw 0.995013 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_tau_up ttbarplusw 0.963204 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_tau_down ttbarplusw 0.963204 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_tau_up ttbarplusw 0.962675 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_tau_down ttbarplusw 0.962675 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_tau_up ttbarplusw 0.966947 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_tau_down ttbarplusw 0.966947 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_tau_up ttbarplusw 0.989933 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_tau_down ttbarplusw 0.989933 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_tau_up ttbarplusw 0.873622 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_tau_down ttbarplusw 0.873622 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_tau_up ttbarplusw 0.936977 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_tau_down ttbarplusw 0.936977 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_tau_up ttbarplusw 0.96944 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_tau_down ttbarplusw 0.96944 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_tau_up ttbarplusw 0.817122 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_tau_down ttbarplusw 0.817122 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_tau_up ttbarplusw 0.995176 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_tau_down ttbarplusw 0.995176 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_tau_up ttbarplusw 0.986075 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_tau_down ttbarplusw 0.986075 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_up ttbarplusw 0.9989 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_down ttbarplusw 0.9989 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_tau_up ttbarplusw 0.963001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_tau_down ttbarplusw 0.963001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_tau_up ttbarplusw 0.977226 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_tau_down ttbarplusw 0.977226 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_tau_up ttbarplusw 0.870148 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_tau_down ttbarplusw 0.870148 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_tau_up ttbarplusw 0.995216 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_tau_down ttbarplusw 0.995216 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_up ttbarplusw 0.998721 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_down ttbarplusw 0.998721 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_tau_up ttbarplusw 0.955617 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_tau_down ttbarplusw 0.955617 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_tau_up ttbarplusw 0.95013 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_tau_down ttbarplusw 0.95013 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_tau_up ttbarplusw 0.959207 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_tau_down ttbarplusw 0.959207 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_tau_up ttbarplusw 0.961234 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_tau_down ttbarplusw 0.961234 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_tau_up ttbarplusw 0.942925 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_tau_down ttbarplusw 0.942925 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_tau_up ttbarplusw 0.889252 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_tau_down ttbarplusw 0.889252 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_tau_up ttbarplusw 0.949431 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_tau_down ttbarplusw 0.949431 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_tau_up ttbarplusw 0.927179 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_tau_down ttbarplusw 0.927179 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_tau_up ttbarplusw 0.872823 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_tau_down ttbarplusw 0.872823 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_tau_up ttbarplusw 0.967003 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_tau_down ttbarplusw 0.967003 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_tau_up ttbarplusw 0.932829 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_tau_down ttbarplusw 0.932829 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_tau_up ttbarplusw 0.947154 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_tau_down ttbarplusw 0.947154 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_up ttbarplusw 0.966906 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_down ttbarplusw 0.966906 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_tau_up ttbarplusw 0.957667 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_tau_down ttbarplusw 0.957667 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_tau_up ttbarplusw 0.946149 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_tau_down ttbarplusw 0.946149 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_up ttbarplusw 0.959221 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_down ttbarplusw 0.959221 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_tau_up ttbarplusw 0.959606 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_tau_down ttbarplusw 0.959606 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_tau_up ttbarplusw 0.983623 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_tau_down ttbarplusw 0.983623 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_up ttbarplusw 0.934776 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_down ttbarplusw 0.934776 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_tau_up ttbarplusw 0.910058 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_tau_down ttbarplusw 0.910058 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_tau_up ttbarplusw 0.988376 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_tau_down ttbarplusw 0.988376 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_tau_up ttbarplusw 0.967552 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_tau_down ttbarplusw 0.967552 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_tau_up ttbarplusw 0.969049 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_tau_down ttbarplusw 0.969049 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_tau_up ttbarplusw 0.978835 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_tau_down ttbarplusw 0.978835 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_tau_up ttbarplusw 0.947253 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_tau_down ttbarplusw 0.947253 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_tau_up ttbarplusw 0.942131 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_tau_down ttbarplusw 0.942131 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_up ttbarplusw 0.965444 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_down ttbarplusw 0.965444 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_tau_up ttbarplusw 0.963505 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_tau_down ttbarplusw 0.963505 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_tau_up ttbarplusw 0.980153 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_tau_down ttbarplusw 0.980153 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_up ttbarplusw 1.00548 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_down ttbarplusw 1.00548 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_toptag_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_toptag_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_toptag_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_toptag_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_toptag_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_toptag_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_toptag_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_toptag_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_toptag_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_toptag_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_toptag_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_toptag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_toptag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_toptag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_toptag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_toptag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_toptag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_toptag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_toptag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_toptag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_toptag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_toptag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_toptag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_toptag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_toptag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_toptag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_toptag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_toptag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_toptag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_toptag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_toptag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_toptag_down ttbarplusw 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_up ttbarplusw 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_down ttbarplusw 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_toptag_up ttbarplusw 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_toptag_down ttbarplusw 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_toptag_up ttbarplusw 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_toptag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_toptag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_toptag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_toptag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_toptag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_toptag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_toptag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_toptag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_toptag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_toptag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_toptag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_toptag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_toptag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_toptag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_toptag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_toptag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_toptag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_toptag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_toptag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_toptag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_toptag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_toptag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_toptag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_toptag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_toptag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_toptag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_toptag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_toptag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_toptag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_toptag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_toptag_down ttbarplusw 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_up ttbarplusw 0.997825 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_down ttbarplusw 1.00219 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_up ttbarplusw 0.997319 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_down ttbarplusw 1.00271 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_up ttbarplusw 0.993818 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_down ttbarplusw 1.00629 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_up ttbarplusw 0.994114 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_down ttbarplusw 1.006 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_up ttbarplusw 0.995871 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_down ttbarplusw 1.00417 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_up ttbarplusw 0.993367 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_down ttbarplusw 1.00676 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_up ttbarplusw 0.989656 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_down ttbarplusw 1.01063 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_up ttbarplusw 0.991004 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_down ttbarplusw 1.00925 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_up ttbarplusw 0.986692 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_down ttbarplusw 1.01367 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_up ttbarplusw 0.988964 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_down ttbarplusw 1.01128 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_up ttbarplusw 0.991975 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_down ttbarplusw 1.00816 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_up ttbarplusw 0.993407 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_down ttbarplusw 1.00668 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_up ttbarplusw 0.984525 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_down ttbarplusw 1.01597 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_up ttbarplusw 0.986629 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_down ttbarplusw 1.01374 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_up ttbarplusw 0.988965 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_down ttbarplusw 1.01128 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_up ttbarplusw 0.988447 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_down ttbarplusw 1.01183 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_up ttbarplusw 1.07185 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_down ttbarplusw 0.927457 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_up ttbarplusw 1.05197 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_down ttbarplusw 0.946652 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_up ttbarplusw 1.06263 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_down ttbarplusw 0.936362 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_up ttbarplusw 1.0546 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_down ttbarplusw 0.944076 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_up ttbarplusw 1.05869 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_down ttbarplusw 0.940387 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_up ttbarplusw 1.05447 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_down ttbarplusw 0.944862 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_up ttbarplusw 1.0475 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_down ttbarplusw 0.951175 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_up ttbarplusw 1.05877 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_down ttbarplusw 0.940375 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_up ttbarplusw 1.05646 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_down ttbarplusw 0.942967 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_toptag_up ttbarplusw 0.99589 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_toptag_down ttbarplusw 1.00414 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_toptag_up ttbarplusw 0.990844 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_toptag_down ttbarplusw 1.00933 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_toptag_up ttbarplusw 0.988789 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_toptag_down ttbarplusw 1.01147 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_toptag_up ttbarplusw 0.985716 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_toptag_down ttbarplusw 1.0147 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_toptag_up ttbarplusw 0.987843 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_toptag_down ttbarplusw 1.01246 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_toptag_up ttbarplusw 0.992929 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_toptag_down ttbarplusw 1.00717 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_toptag_up ttbarplusw 0.996312 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_toptag_down ttbarplusw 1.00372 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_toptag_up ttbarplusw 0.99097 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_toptag_down ttbarplusw 1.0092 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_toptag_up ttbarplusw 0.987514 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_toptag_down ttbarplusw 1.01281 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_toptag_up ttbarplusw 0.98711 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_toptag_down ttbarplusw 1.01323 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_toptag_up ttbarplusw 0.992069 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_toptag_down ttbarplusw 1.00806 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_up ttbarplusw 0.986999 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_down ttbarplusw 1.01335 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_up ttbarplusw 0.989411 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_down ttbarplusw 1.01082 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_up ttbarplusw 0.992187 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_down ttbarplusw 1.00794 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_up ttbarplusw 0.992302 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_down ttbarplusw 1.00782 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_up ttbarplusw 0.993967 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_down ttbarplusw 1.00611 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_toptag_up ttbarplusw 0.985201 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_toptag_down ttbarplusw 1.01525 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_toptag_up ttbarplusw 0.987127 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_toptag_down ttbarplusw 1.01321 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_toptag_up ttbarplusw 0.991073 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_toptag_down ttbarplusw 1.00909 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_toptag_up ttbarplusw 0.992862 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_toptag_down ttbarplusw 1.00724 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_toptag_up ttbarplusw 0.995013 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_toptag_down ttbarplusw 1.00504 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_toptag_up ttbarplusw 1.06823 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_toptag_down ttbarplusw 0.931023 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_toptag_up ttbarplusw 1.07116 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_toptag_down ttbarplusw 0.927513 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_toptag_up ttbarplusw 1.06959 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_toptag_down ttbarplusw 0.929646 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_toptag_up ttbarplusw 1.05889 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_toptag_down ttbarplusw 0.940012 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_toptag_up ttbarplusw 0.994567 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_toptag_down ttbarplusw 1.00549 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_toptag_up ttbarplusw 0.990849 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_toptag_down ttbarplusw 1.00932 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_up ttbarplusw 1.07069 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_down ttbarplusw 0.928665 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_up ttbarplusw 1.04681 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_down ttbarplusw 0.952066 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_up ttbarplusw 1.06273 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_down ttbarplusw 0.936858 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_up ttbarplusw 1.05292 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_down ttbarplusw 0.945557 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_up ttbarplusw 1.05317 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_down ttbarplusw 0.945546 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_up ttbarplusw 1.04804 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_down ttbarplusw 0.950826 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_up ttbarplusw 1.04995 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_down ttbarplusw 0.948544 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_up ttbarplusw 1.0581 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_down ttbarplusw 0.940001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_up ttbarplusw 1.06134 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_down ttbarplusw 0.937491 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_toptag_up ttbarplusw 0.995897 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_toptag_down ttbarplusw 1.00414 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_toptag_up ttbarplusw 0.991259 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_toptag_down ttbarplusw 1.0089 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_toptag_up ttbarplusw 0.989081 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_toptag_down ttbarplusw 1.01116 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_toptag_up ttbarplusw 0.983528 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_toptag_down ttbarplusw 1.01703 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_toptag_up ttbarplusw 0.985966 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_toptag_down ttbarplusw 1.01444 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_toptag_up ttbarplusw 0.98798 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_toptag_down ttbarplusw 1.01232 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_up ttbarplusw 0.996612 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_down ttbarplusw 1.00341 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_toptag_up ttbarplusw 0.991705 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_toptag_down ttbarplusw 1.00843 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_toptag_up ttbarplusw 0.988686 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_toptag_down ttbarplusw 1.01158 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_toptag_up ttbarplusw 0.988324 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_toptag_down ttbarplusw 1.01196 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_toptag_up ttbarplusw 0.996732 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_toptag_down ttbarplusw 1.00329 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_up ttbarplusw 0.984948 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_down ttbarplusw 1.01552 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_up ttbarplusw 0.98731 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_down ttbarplusw 1.01302 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_up ttbarplusw 0.988484 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_down ttbarplusw 1.01179 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_up ttbarplusw 0.988189 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_down ttbarplusw 1.0121 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_up ttbarplusw 0.988492 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_down ttbarplusw 1.01178 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_up ttbarplusw 0.983495 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_down ttbarplusw 1.01707 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_toptag_up ttbarplusw 0.986991 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_toptag_down ttbarplusw 1.01336 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_toptag_up ttbarplusw 0.991101 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_toptag_down ttbarplusw 1.00906 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_toptag_up ttbarplusw 0.984167 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_toptag_down ttbarplusw 1.01635 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_toptag_up ttbarplusw 0.990626 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_toptag_down ttbarplusw 1.00955 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_toptag_up ttbarplusw 1.05241 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_toptag_down ttbarplusw 0.94699 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_toptag_up ttbarplusw 1.06047 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_toptag_down ttbarplusw 0.938196 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_toptag_up ttbarplusw 1.07194 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_toptag_down ttbarplusw 0.927467 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_toptag_up ttbarplusw 1.05853 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_toptag_down ttbarplusw 0.940425 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_toptag_up ttbarplusw 1.05134 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_toptag_down ttbarplusw 0.947516 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_toptag_up ttbarplusw 1.04387 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_toptag_down ttbarplusw 0.954631 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_toptag_up ttbarplusw 1.04557 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_toptag_down ttbarplusw 0.953112 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_toptag_up ttbarplusw 1.0618 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_toptag_down ttbarplusw 0.936682 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_toptag_up ttbarplusw 0.994327 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_toptag_down ttbarplusw 1.00574 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_toptag_up ttbarplusw 0.989172 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_toptag_down ttbarplusw 1.01107 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_toptag_up ttbarplusw 1.09095 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_toptag_down ttbarplusw 0.908066 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_toptag_up ttbarplusw 1.0625 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_toptag_down ttbarplusw 0.936079 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_up ttbarplusw 0.994189 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_down ttbarplusw 1.00588 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_toptag_up ttbarplusw 0.995042 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_toptag_down ttbarplusw 1.00501 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_toptag_up ttbarplusw 0.989081 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_toptag_down ttbarplusw 1.01116 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_toptag_up ttbarplusw 0.984245 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_toptag_down ttbarplusw 1.01627 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_toptag_up ttbarplusw 0.98798 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_toptag_down ttbarplusw 1.01232 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_up ttbarplusw 1.00317 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_down ttbarplusw 0.996796 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_toptag_up ttbarplusw 1.07307 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_toptag_down ttbarplusw 0.926401 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_toptag_up ttbarplusw 1.05929 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_toptag_down ttbarplusw 0.939475 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_toptag_up ttbarplusw 1.06079 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_toptag_down ttbarplusw 0.938548 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_toptag_up ttbarplusw 1.0523 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_toptag_down ttbarplusw 0.94592 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_toptag_up ttbarplusw 1.05355 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_toptag_down ttbarplusw 0.945157 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_toptag_up ttbarplusw 1.06139 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_toptag_down ttbarplusw 0.937109 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_toptag_up ttbarplusw 1.0538 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_toptag_down ttbarplusw 0.944664 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_toptag_up ttbarplusw 1.03314 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_toptag_down ttbarplusw 0.96525 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_toptag_up ttbarplusw 1.03974 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_toptag_down ttbarplusw 0.959554 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_toptag_up ttbarplusw 0.994855 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_toptag_down ttbarplusw 1.0052 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_toptag_up ttbarplusw 0.988854 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_toptag_down ttbarplusw 1.0114 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_toptag_up ttbarplusw 0.991857 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_toptag_down ttbarplusw 1.00828 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_up ttbarplusw 0.996413 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_down ttbarplusw 1.00361 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_toptag_up ttbarplusw 0.989805 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_toptag_down ttbarplusw 1.01041 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_toptag_up ttbarplusw 0.994651 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_toptag_down ttbarplusw 1.00541 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_up ttbarplusw 0.983563 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_down ttbarplusw 1.017 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_toptag_up ttbarplusw 0.988205 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_toptag_down ttbarplusw 1.01208 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_toptag_up ttbarplusw 0.988068 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_toptag_down ttbarplusw 1.01222 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_up ttbarplusw 0.986102 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_down ttbarplusw 1.01429 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_toptag_up ttbarplusw 0.97682 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_toptag_down ttbarplusw 1.02431 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_toptag_up ttbarplusw 0.99132 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_toptag_down ttbarplusw 1.00883 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_toptag_up ttbarplusw 1.07904 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_toptag_down ttbarplusw 0.919896 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_toptag_up ttbarplusw 1.0658 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_toptag_down ttbarplusw 0.933513 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_toptag_up ttbarplusw 1.05781 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_toptag_down ttbarplusw 0.940902 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_toptag_up ttbarplusw 0.993386 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_toptag_down ttbarplusw 1.0067 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_toptag_up ttbarplusw 1.10753 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_toptag_down ttbarplusw 0.89103 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_up ttbarplusw 0.993386 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_down ttbarplusw 1.0067 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_toptag_up ttbarplusw 0.994855 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_toptag_down ttbarplusw 1.0052 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_toptag_up ttbarplusw 0.989132 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_toptag_down ttbarplusw 1.01111 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_up ttbarplusw 1.08399 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_down ttbarplusw 0.914888 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_up ttbarplusw 0.999996 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_down ttbarplusw 0.99999 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_up ttbarplusw 0.999998 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_up ttbarplusw 0.999996 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_up ttbarplusw 1.00004 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_down ttbarplusw 0.99996 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_up ttbarplusw 0.99995 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_down ttbarplusw 1.00005 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_up ttbarplusw 1.00003 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_down ttbarplusw 0.999974 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_up ttbarplusw 1.00012 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_down ttbarplusw 0.999888 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_up ttbarplusw 1.00003 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_down ttbarplusw 0.99994 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_up ttbarplusw 1.00003 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_down ttbarplusw 0.999977 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 trigger_err_up ttbarplusw 1.00005 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 trigger_err_down ttbarplusw 0.999954 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf trigger_err_up ttbarplusw 1.00004 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf trigger_err_down ttbarplusw 0.999966 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 trigger_err_up ttbarplusw 1.00011 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 trigger_err_down ttbarplusw 0.999941 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 trigger_err_up ttbarplusw 1.00027 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 trigger_err_down ttbarplusw 0.999739 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 trigger_err_up ttbarplusw 1.00007 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 trigger_err_down ttbarplusw 0.999921 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf trigger_err_up ttbarplusw 0.999676 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf trigger_err_down ttbarplusw 1.00027 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_up ttbarplusw 0.999988 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_down ttbarplusw 1.00001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 trigger_err_up ttbarplusw 0.999962 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 trigger_err_down ttbarplusw 1.00004 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 trigger_err_up ttbarplusw 0.999801 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 trigger_err_down ttbarplusw 1.00019 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf trigger_err_up ttbarplusw 0.999735 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf trigger_err_down ttbarplusw 1.00026 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 trigger_err_up ttbarplusw 0.999913 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 trigger_err_down ttbarplusw 1.00009 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 trigger_err_up ttbarplusw 1.00006 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 trigger_err_down ttbarplusw 0.999934 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf trigger_err_up ttbarplusw 0.999915 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf trigger_err_down ttbarplusw 1.00006 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_up ttbarplusw 0.999904 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_down ttbarplusw 1.0001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_up ttbarplusw 0.999822 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_down ttbarplusw 1.00017 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 trigger_err_up ttbarplusw 1.00003 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 trigger_err_down ttbarplusw 0.99997 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf trigger_err_up ttbarplusw 0.99985 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf trigger_err_down ttbarplusw 1.00013 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_up ttbarplusw 1.00005 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_down ttbarplusw 0.999971 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_up ttbarplusw 0.99995 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_down ttbarplusw 1.00005 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 trigger_err_up ttbarplusw 0.999832 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 trigger_err_down ttbarplusw 1.00016 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf trigger_err_up ttbarplusw 1.00009 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf trigger_err_down ttbarplusw 0.999924 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_up ttbarplusw 0.999999 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_down ttbarplusw 0.999999 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 trigger_err_up ttbarplusw 1.00005 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 trigger_err_down ttbarplusw 0.999951 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf trigger_err_up ttbarplusw 0.999671 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf trigger_err_down ttbarplusw 1.00029 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 trigger_err_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 trigger_err_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 trigger_err_up ttbarplusw 0.99994 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 trigger_err_down ttbarplusw 1.00006 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf trigger_err_up ttbarplusw 1.0001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf trigger_err_down ttbarplusw 0.999887 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_up ttbarplusw 0.999998 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 trigger_err_up ttbarplusw 1.00004 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 trigger_err_down ttbarplusw 0.999962 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf trigger_err_up ttbarplusw 1.00009 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf trigger_err_down ttbarplusw 0.999912 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_up ttbarplusw 0.999998 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 trigger_err_up ttbarplusw 1.00004 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 trigger_err_down ttbarplusw 0.999956 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf trigger_err_up ttbarplusw 0.999905 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf trigger_err_down ttbarplusw 1.00009 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 trigger_err_up ttbarplusw 1.00009 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 trigger_err_down ttbarplusw 1.00001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 trigger_err_up ttbarplusw 0.999889 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 trigger_err_down ttbarplusw 1.00009 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf trigger_err_up ttbarplusw 0.999855 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf trigger_err_down ttbarplusw 1.00014 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 trigger_err_up ttbarplusw 1.00002 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 trigger_err_down ttbarplusw 0.999963 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 trigger_err_up ttbarplusw 0.999846 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 trigger_err_down ttbarplusw 1.00014 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf trigger_err_up ttbarplusw 0.99995 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf trigger_err_down ttbarplusw 1.00004 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_up ttbarplusw 1.00014 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_down ttbarplusw 0.999884 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 trigger_err_up ttbarplusw 0.999874 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 trigger_err_down ttbarplusw 1.00012 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf trigger_err_up ttbarplusw 0.999846 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf trigger_err_down ttbarplusw 1.00013 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_up ttbarplusw 1.00001 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_down ttbarplusw 0.999995 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_up ttbarplusw 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_down ttbarplusw 0.999997 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_up ttbarplusw 1.00002 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_down ttbarplusw 0.999983 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_up ttbarplusw 1.00019 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_down ttbarplusw 0.999819 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_up ttbarplusw 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_down ttbarplusw 0.999996 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_up ttbarplusw 0.999999 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_down ttbarplusw 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_up ttbarplusw 0.999981 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_down ttbarplusw 1.00002 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_up ttbarplusw 1.0001 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_down ttbarplusw 0.999902 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_up ttbarplusw 0.999993 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_down ttbarplusw 1.00001 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_up ttbarplusw 1.00004 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_down ttbarplusw 0.999955 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_up ttbarplusw 1.00006 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_down ttbarplusw 0.999951 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_up ttbarplusw 0.999896 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_down ttbarplusw 1.0001 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_up ttbarplusw 1.00001 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_down ttbarplusw 0.999988 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_up ttbarplusw 0.999958 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_down ttbarplusw 1.00004 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_up ttbarplusw 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_down ttbarplusw 1.00001 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_up ttbarplusw 0.999864 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_down ttbarplusw 1.00012 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_up ttbarplusw 0.999776 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_down ttbarplusw 1.0002 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_up ttbarplusw 0.999679 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_down ttbarplusw 1.00031 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_up ttbarplusw 0.999708 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_down ttbarplusw 1.0003 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_up ttbarplusw 0.999986 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_down ttbarplusw 1.00003 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_up ttbarplusw 0.999954 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_down ttbarplusw 1.00005 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_up ttbarplusw 1.00005 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_down ttbarplusw 0.999933 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_up ttbarplusw 1.00007 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_down ttbarplusw 0.999961 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_up ttbarplusw 0.99969 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_down ttbarplusw 1.00035 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_up ttbarplusw 0.999516 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_down ttbarplusw 1.00048 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 trigger_err_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 trigger_err_down ttbarplusw 0.999993 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 trigger_err_up ttbarplusw 1.00006 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 trigger_err_down ttbarplusw 0.99994 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf trigger_err_up ttbarplusw 1.00053 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf trigger_err_down ttbarplusw 0.999526 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 trigger_err_up ttbarplusw 1.00006 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 trigger_err_down ttbarplusw 0.999937 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 trigger_err_up ttbarplusw 0.999994 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 trigger_err_down ttbarplusw 1.00001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf trigger_err_up ttbarplusw 0.999753 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf trigger_err_down ttbarplusw 1.00026 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 trigger_err_up ttbarplusw 1.00001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 trigger_err_down ttbarplusw 0.999987 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 trigger_err_up ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 trigger_err_down ttbarplusw 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 trigger_err_up ttbarplusw 0.99997 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 trigger_err_down ttbarplusw 1.00005 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 trigger_err_up ttbarplusw 1.0001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 trigger_err_down ttbarplusw 0.999903 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf trigger_err_up ttbarplusw 0.99984 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf trigger_err_down ttbarplusw 1.00015 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 trigger_err_up ttbarplusw 0.999971 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 trigger_err_down ttbarplusw 1.00003 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 trigger_err_up ttbarplusw 0.999984 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 trigger_err_down ttbarplusw 1.00002 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 trigger_err_up ttbarplusw 1.00007 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 trigger_err_down ttbarplusw 0.999911 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 trigger_err_up ttbarplusw 1.00019 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 trigger_err_down ttbarplusw 0.999799 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf trigger_err_up ttbarplusw 0.999499 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf trigger_err_down ttbarplusw 1.00046 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 trigger_err_up ttbarplusw 1.00002 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 trigger_err_down ttbarplusw 0.999981 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 trigger_err_up ttbarplusw 0.999925 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 trigger_err_down ttbarplusw 1.00008 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 trigger_err_up ttbarplusw 0.9997 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 trigger_err_down ttbarplusw 1.00039 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 trigger_err_up ttbarplusw 0.9996 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 trigger_err_down ttbarplusw 1.00042 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf trigger_err_up ttbarplusw 1.00037 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf trigger_err_down ttbarplusw 0.999684 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 trigger_err_up ttbarplusw 1.00004 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 trigger_err_down ttbarplusw 0.999937 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf trigger_err_up ttbarplusw 1.00059 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf trigger_err_down ttbarplusw 0.999509 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 trigger_err_up ttbarplusw 0.999831 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 trigger_err_down ttbarplusw 1.00013 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf trigger_err_up ttbarplusw 0.999632 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf trigger_err_down ttbarplusw 1.00033 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 trigger_err_up ttbarplusw 1.00005 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 trigger_err_down ttbarplusw 0.999943 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf trigger_err_up ttbarplusw 1.00281 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf trigger_err_down ttbarplusw 0.997357 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_up ttbarplusw 0.999766 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_down ttbarplusw 1.00022 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_up ttbarplusw 0.999456 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_down ttbarplusw 1.00048 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_up ttbarplusw 0.999942 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_down ttbarplusw 1.00006 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_up ttbarplusw 0.999962 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_down ttbarplusw 1.00005 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_up ttbarplusw 0.999866 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_down ttbarplusw 1.00015 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_up ttbarplusw 1.0002 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_down ttbarplusw 0.999819 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_up ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_down ttbarplusw 1.00003 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_up ttbarplusw 1.0013 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_down ttbarplusw 0.998702 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_up ttbarplusw 0.99978 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_down ttbarplusw 1.00026 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 trigger_err_up ttbarplusw 1.00003 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 trigger_err_down ttbarplusw 0.999961 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 trigger_err_up ttbarplusw 1.00006 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 trigger_err_down ttbarplusw 0.999942 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf trigger_err_up ttbarplusw 1.00041 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf trigger_err_down ttbarplusw 0.999537 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 trigger_err_up ttbarplusw 0.999984 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 trigger_err_down ttbarplusw 1.00004 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 trigger_err_up ttbarplusw 1.00031 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 trigger_err_down ttbarplusw 0.999669 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf trigger_err_up ttbarplusw 0.999995 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf trigger_err_down ttbarplusw 1.0001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_up ttbarplusw 1.00003 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_down ttbarplusw 0.999972 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 trigger_err_up ttbarplusw 1.00001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 trigger_err_down ttbarplusw 0.999991 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 trigger_err_up ttbarplusw 1.00008 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 trigger_err_down ttbarplusw 0.999955 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 trigger_err_up ttbarplusw 1.00028 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 trigger_err_down ttbarplusw 0.999728 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf trigger_err_up ttbarplusw 1.00056 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf trigger_err_down ttbarplusw 0.999481 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_up ttbarplusw 1.00001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_down ttbarplusw 0.999985 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 trigger_err_up ttbarplusw 0.999965 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 trigger_err_down ttbarplusw 1.00004 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 trigger_err_up ttbarplusw 1.0001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 trigger_err_down ttbarplusw 0.999979 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 trigger_err_up ttbarplusw 0.999509 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 trigger_err_down ttbarplusw 1.00045 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf trigger_err_up ttbarplusw 0.998976 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf trigger_err_down ttbarplusw 1.00097 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_up ttbarplusw 1.00009 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_down ttbarplusw 0.999897 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 trigger_err_up ttbarplusw 0.999838 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 trigger_err_down ttbarplusw 1.00017 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 trigger_err_up ttbarplusw 0.999388 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 trigger_err_down ttbarplusw 1.00066 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 trigger_err_up ttbarplusw 0.998724 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 trigger_err_down ttbarplusw 1.00119 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf trigger_err_up ttbarplusw 0.999963 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf trigger_err_down ttbarplusw 1.00008 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 trigger_err_up ttbarplusw 0.999396 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 trigger_err_down ttbarplusw 1.00056 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf trigger_err_up ttbarplusw 1.00038 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf trigger_err_down ttbarplusw 0.99976 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 trigger_err_up ttbarplusw 0.999844 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 trigger_err_down ttbarplusw 1.00017 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 trigger_err_up ttbarplusw 0.999804 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 trigger_err_down ttbarplusw 1.0002 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf trigger_err_up ttbarplusw 1.00075 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf trigger_err_down ttbarplusw 0.999228 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 trigger_err_up ttbarplusw 1.00039 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 trigger_err_down ttbarplusw 0.999568 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 trigger_err_up ttbarplusw 1.00012 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 trigger_err_down ttbarplusw 0.999878 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf trigger_err_up ttbarplusw 1.00053 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf trigger_err_down ttbarplusw 0.999634 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 trigger_err_up ttbarplusw 0.999952 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 trigger_err_down ttbarplusw 1.00004 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf trigger_err_up ttbarplusw 1.00077 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf trigger_err_down ttbarplusw 0.999412 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 trigger_err_up ttbarplusw 0.999706 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 trigger_err_down ttbarplusw 1.00033 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf trigger_err_up ttbarplusw 0.998674 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf trigger_err_down ttbarplusw 1.00104 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_up ttbarplusw 0.999696 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_down ttbarplusw 1.00033 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 trigger_err_up ttbarplusw 0.999994 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 trigger_err_down ttbarplusw 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf trigger_err_up ttbarplusw 0.99931 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf trigger_err_down ttbarplusw 1.00062 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 trigger_err_up ttbarplusw 1.00017 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 trigger_err_down ttbarplusw 0.999788 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf trigger_err_up ttbarplusw 0.999996 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf trigger_err_down ttbarplusw 1.00016 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_up ttbarplusw 0.999772 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_down ttbarplusw 1.00022 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 trigger_err_up ttbarplusw 0.999866 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 trigger_err_down ttbarplusw 1.00015 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 trigger_err_up ttbarplusw 0.999822 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 trigger_err_down ttbarplusw 1.00019 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf trigger_err_up ttbarplusw 1.00001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf trigger_err_down ttbarplusw 1.00001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 trigger_err_up ttbarplusw 1.00015 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 trigger_err_down ttbarplusw 0.99984 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 trigger_err_up ttbarplusw 1.00012 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 trigger_err_down ttbarplusw 0.999917 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf trigger_err_up ttbarplusw 0.998785 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf trigger_err_down ttbarplusw 1.00112 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 trigger_err_up ttbarplusw 0.99993 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 trigger_err_down ttbarplusw 1.00008 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 trigger_err_up ttbarplusw 1.00008 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 trigger_err_down ttbarplusw 0.999904 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf trigger_err_up ttbarplusw 1.00125 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf trigger_err_down ttbarplusw 0.998784 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 trigger_err_up ttbarplusw 1.00003 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 trigger_err_down ttbarplusw 0.999968 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 trigger_err_up ttbarplusw 1.00004 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 trigger_err_down ttbarplusw 0.999944 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf trigger_err_up ttbarplusw 0.999532 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf trigger_err_down ttbarplusw 1.00041 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_up ttbarplusw 1.00006 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_down ttbarplusw 0.999934 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 trigger_err_up ttbarplusw 0.999898 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 trigger_err_down ttbarplusw 1.00012 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf trigger_err_up ttbarplusw 1.00009 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf trigger_err_down ttbarplusw 0.999969 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_up ttbarplusw 0.999868 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_down ttbarplusw 1.00014 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 trigger_err_up ttbarplusw 0.999897 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 trigger_err_down ttbarplusw 1.00011 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf trigger_err_up ttbarplusw 1.00055 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf trigger_err_down ttbarplusw 0.999492 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_up ttbarplusw 0.999891 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_down ttbarplusw 1.00013 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 trigger_err_up ttbarplusw 1.0005 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 trigger_err_down ttbarplusw 0.999514 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf trigger_err_up ttbarplusw 1.00146 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf trigger_err_down ttbarplusw 0.998573 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf trigger_err_up ttbarplusw 0.999926 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf trigger_err_down ttbarplusw 1.00008 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 trigger_err_up ttbarplusw 0.999593 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 trigger_err_down ttbarplusw 1.00046 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf trigger_err_up ttbarplusw 0.999882 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf trigger_err_down ttbarplusw 1.00006 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf trigger_err_up ttbarplusw 1.00023 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf trigger_err_down ttbarplusw 0.999762 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf trigger_err_up ttbarplusw 1.00021 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf trigger_err_down ttbarplusw 0.999801 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_up ttbarplusw 1.00019 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_down ttbarplusw 0.999676 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 trigger_err_up ttbarplusw 0.999883 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 trigger_err_down ttbarplusw 1.00014 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf trigger_err_up ttbarplusw 1.00009 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf trigger_err_down ttbarplusw 1.00002 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_up ttbarplusw 0.999552 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_down ttbarplusw 1.00057 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_down ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_up ttbarplusw 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_wtag_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_wtag_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_wtag_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_wtag_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_wtag_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_wtag_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_wtag_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_wtag_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_wtag_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_wtag_down ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_wtag_up ttbarplusw 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_wtag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_wtag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_wtag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_wtag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_wtag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_wtag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_wtag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_wtag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_wtag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_wtag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_wtag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_wtag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_wtag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_wtag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_wtag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_wtag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_wtag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_wtag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_wtag_down ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_wtag_up ttbarplusw 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_wtag_down ttbarplusw 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_up ttbarplusw 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_down ttbarplusw 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_wtag_up ttbarplusw 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_wtag_down ttbarplusw 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_wtag_up ttbarplusw 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_wtag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_wtag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_wtag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_wtag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_wtag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_wtag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_wtag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_wtag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_wtag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_wtag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_wtag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_wtag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_wtag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_wtag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_wtag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_wtag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_wtag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_wtag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_wtag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_wtag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_wtag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_wtag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_wtag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_wtag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_wtag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_wtag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_wtag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_wtag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_wtag_down ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_wtag_up ttbarplusw 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_wtag_down ttbarplusw 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_up ttbarplusw 0.996776 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_down ttbarplusw 1.00325 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_up ttbarplusw 0.997315 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_down ttbarplusw 1.00271 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_up ttbarplusw 0.997862 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_down ttbarplusw 1.00215 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_up ttbarplusw 0.99852 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_down ttbarplusw 1.00149 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_up ttbarplusw 0.997575 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_down ttbarplusw 1.00244 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_up ttbarplusw 0.997531 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_down ttbarplusw 1.00249 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_up ttbarplusw 0.997278 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_down ttbarplusw 1.00274 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_up ttbarplusw 0.998747 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_down ttbarplusw 1.00126 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_up ttbarplusw 0.996862 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_down ttbarplusw 1.00316 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_up ttbarplusw 0.997131 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_down ttbarplusw 1.00289 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_up ttbarplusw 0.99693 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_down ttbarplusw 1.00309 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_up ttbarplusw 0.997628 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_down ttbarplusw 1.00238 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_up ttbarplusw 0.996374 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_down ttbarplusw 1.00365 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_up ttbarplusw 0.997105 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_down ttbarplusw 1.00291 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_up ttbarplusw 0.998635 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_down ttbarplusw 1.00137 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_up ttbarplusw 0.998128 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_down ttbarplusw 1.00188 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_up ttbarplusw 0.996357 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_down ttbarplusw 1.00367 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_up ttbarplusw 0.997299 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_down ttbarplusw 1.00272 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_up ttbarplusw 0.996994 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_down ttbarplusw 1.00302 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_up ttbarplusw 0.996705 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_down ttbarplusw 1.00332 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_up ttbarplusw 0.99746 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_down ttbarplusw 1.00255 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_up ttbarplusw 0.99771 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_down ttbarplusw 1.0023 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_up ttbarplusw 0.998011 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_down ttbarplusw 1.002 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_up ttbarplusw 0.998769 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_down ttbarplusw 1.00123 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_up ttbarplusw 0.997147 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_down ttbarplusw 1.00287 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_wtag_up ttbarplusw 1.07902 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_wtag_down ttbarplusw 0.920384 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_wtag_up ttbarplusw 1.07479 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_wtag_down ttbarplusw 0.924707 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_wtag_up ttbarplusw 1.08886 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_wtag_down ttbarplusw 0.910685 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_wtag_up ttbarplusw 1.06747 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_wtag_down ttbarplusw 0.932236 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_wtag_up ttbarplusw 1.06225 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_wtag_down ttbarplusw 0.937407 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_wtag_up ttbarplusw 1.04249 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_wtag_down ttbarplusw 0.957272 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_wtag_up ttbarplusw 0.99625 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_wtag_down ttbarplusw 1.00378 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_wtag_up ttbarplusw 0.996653 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_wtag_down ttbarplusw 1.00337 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_wtag_up ttbarplusw 0.997603 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_wtag_down ttbarplusw 1.00241 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_wtag_up ttbarplusw 0.997299 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_wtag_down ttbarplusw 1.00272 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_wtag_up ttbarplusw 0.996994 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_wtag_down ttbarplusw 1.00302 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_up ttbarplusw 0.996625 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_down ttbarplusw 1.0034 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_up ttbarplusw 0.996921 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_down ttbarplusw 1.0031 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_up ttbarplusw 0.996676 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_down ttbarplusw 1.00335 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_up ttbarplusw 0.99746 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_down ttbarplusw 1.00255 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_up ttbarplusw 0.99771 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_down ttbarplusw 1.0023 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_wtag_up ttbarplusw 0.998017 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_wtag_down ttbarplusw 1.00199 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_wtag_up ttbarplusw 0.997998 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_wtag_down ttbarplusw 1.00201 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_wtag_up ttbarplusw 0.998013 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_wtag_down ttbarplusw 1.00199 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_wtag_up ttbarplusw 0.998769 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_wtag_down ttbarplusw 1.00123 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_wtag_up ttbarplusw 0.997147 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_wtag_down ttbarplusw 1.00287 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_wtag_up ttbarplusw 1.08262 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_wtag_down ttbarplusw 0.916786 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_wtag_up ttbarplusw 1.06252 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_wtag_down ttbarplusw 0.937161 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_wtag_up ttbarplusw 0.996407 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_wtag_down ttbarplusw 1.00362 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_wtag_up ttbarplusw 0.99743 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_wtag_down ttbarplusw 1.00258 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_wtag_up ttbarplusw 1.08274 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_wtag_down ttbarplusw 0.916662 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_wtag_up ttbarplusw 1.15383 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_wtag_down ttbarplusw 0.845377 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_up ttbarplusw 0.99682 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_down ttbarplusw 1.0032 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_up ttbarplusw 0.997268 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_down ttbarplusw 1.00275 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_up ttbarplusw 0.999357 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_down ttbarplusw 1.00064 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_up ttbarplusw 0.996772 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_down ttbarplusw 1.00325 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_up ttbarplusw 0.999255 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_down ttbarplusw 1.00075 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_up ttbarplusw 0.996842 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_down ttbarplusw 1.00318 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_up ttbarplusw 0.997425 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_down ttbarplusw 1.00259 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_up ttbarplusw 0.999355 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_down ttbarplusw 1.00065 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_up ttbarplusw 0.999697 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_down ttbarplusw 1.0003 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_wtag_up ttbarplusw 1.07278 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_wtag_down ttbarplusw 0.926741 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_wtag_up ttbarplusw 1.07337 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_wtag_down ttbarplusw 0.926157 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_wtag_up ttbarplusw 1.08752 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_wtag_down ttbarplusw 0.912145 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_wtag_up ttbarplusw 1.05845 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_wtag_down ttbarplusw 0.941165 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_wtag_up ttbarplusw 1.09317 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_wtag_down ttbarplusw 0.906536 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_wtag_up ttbarplusw 1.04644 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_wtag_down ttbarplusw 0.953511 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_up ttbarplusw 0.996742 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_down ttbarplusw 1.00328 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_wtag_up ttbarplusw 0.996873 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_wtag_down ttbarplusw 1.00315 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_wtag_up ttbarplusw 0.998072 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_wtag_down ttbarplusw 1.00194 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_wtag_up ttbarplusw 0.997268 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_wtag_down ttbarplusw 1.00275 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_wtag_up ttbarplusw 0.999357 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_wtag_down ttbarplusw 1.00064 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_up ttbarplusw 0.99628 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_down ttbarplusw 1.00375 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_up ttbarplusw 0.996867 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_down ttbarplusw 1.00315 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_up ttbarplusw 0.999159 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_down ttbarplusw 1.00084 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_up ttbarplusw 0.999255 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_down ttbarplusw 1.00075 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_up ttbarplusw 0.996842 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_down ttbarplusw 1.00318 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_up ttbarplusw 0.99654 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_down ttbarplusw 1.00348 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_wtag_up ttbarplusw 0.99843 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_wtag_down ttbarplusw 1.00158 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_wtag_up ttbarplusw 0.999484 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_wtag_down ttbarplusw 1.00052 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_wtag_up ttbarplusw 0.999355 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_wtag_down ttbarplusw 1.00065 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_wtag_up ttbarplusw 0.999697 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_wtag_down ttbarplusw 1.0003 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_wtag_up ttbarplusw 1.07689 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_wtag_down ttbarplusw 0.922616 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_wtag_up ttbarplusw 1.04636 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_wtag_down ttbarplusw 0.953466 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_wtag_up ttbarplusw 0.996702 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_wtag_down ttbarplusw 1.00332 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_wtag_up ttbarplusw 0.99683 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_wtag_down ttbarplusw 1.00319 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_wtag_up ttbarplusw 0.998092 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_wtag_down ttbarplusw 1.00192 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_wtag_up ttbarplusw 0.996735 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_wtag_down ttbarplusw 1.00329 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_wtag_up ttbarplusw 0.99844 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_wtag_down ttbarplusw 1.00156 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_wtag_up ttbarplusw 0.999518 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_wtag_down ttbarplusw 1.00048 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_wtag_up ttbarplusw 1.09341 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_wtag_down ttbarplusw 0.905993 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_wtag_up ttbarplusw 1.04945 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_wtag_down ttbarplusw 0.950369 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_wtag_up ttbarplusw 0.996745 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_wtag_down ttbarplusw 1.00328 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_wtag_up ttbarplusw 0.998314 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_wtag_down ttbarplusw 1.00169 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_up ttbarplusw 1.08371 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_down ttbarplusw 0.915767 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_wtag_up ttbarplusw 0.996726 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_wtag_down ttbarplusw 1.0033 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_wtag_up ttbarplusw 0.998092 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_wtag_down ttbarplusw 1.00192 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_wtag_up ttbarplusw 0.997237 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_wtag_down ttbarplusw 1.00278 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_wtag_up ttbarplusw 0.999518 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_wtag_down ttbarplusw 1.00048 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_up ttbarplusw 1.03294 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_down ttbarplusw 0.966854 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_wtag_up ttbarplusw 0.996983 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_wtag_down ttbarplusw 1.00303 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_wtag_up ttbarplusw 0.995865 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_wtag_down ttbarplusw 1.00417 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_wtag_up ttbarplusw 0.999885 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_wtag_down ttbarplusw 1.00012 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_wtag_up ttbarplusw 0.996285 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_wtag_down ttbarplusw 1.00374 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_wtag_up ttbarplusw 0.996286 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_wtag_down ttbarplusw 1.00374 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_wtag_up ttbarplusw 0.999739 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_wtag_down ttbarplusw 1.00026 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_wtag_up ttbarplusw 0.997657 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_wtag_down ttbarplusw 1.00235 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_wtag_up ttbarplusw 0.998995 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_wtag_down ttbarplusw 1.00101 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_wtag_up ttbarplusw 0.987854 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_wtag_down ttbarplusw 1.01245 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_wtag_up ttbarplusw 1.0712 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_wtag_down ttbarplusw 0.928362 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_wtag_up ttbarplusw 1.07221 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_wtag_down ttbarplusw 0.92722 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_wtag_up ttbarplusw 1.0745 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_wtag_down ttbarplusw 0.925183 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_up ttbarplusw 0.996983 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_down ttbarplusw 1.00303 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_wtag_up ttbarplusw 0.995865 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_wtag_down ttbarplusw 1.00417 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_wtag_up ttbarplusw 0.999885 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_wtag_down ttbarplusw 1.00012 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_up ttbarplusw 0.996285 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_down ttbarplusw 1.00374 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_wtag_up ttbarplusw 0.996286 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_wtag_down ttbarplusw 1.00374 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_wtag_up ttbarplusw 0.999739 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_wtag_down ttbarplusw 1.00026 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_up ttbarplusw 0.997657 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_down ttbarplusw 1.00235 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_wtag_up ttbarplusw 0.998995 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_wtag_down ttbarplusw 1.00101 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_wtag_up ttbarplusw 0.987854 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_wtag_down ttbarplusw 1.01245 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_wtag_up ttbarplusw 1.08722 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_wtag_down ttbarplusw 0.912209 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_wtag_up ttbarplusw 0.996927 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_wtag_down ttbarplusw 1.00309 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_wtag_up ttbarplusw 0.996261 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_wtag_down ttbarplusw 1.00377 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_wtag_up ttbarplusw 1.0698 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_wtag_down ttbarplusw 0.929746 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_wtag_up ttbarplusw 0.996757 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_wtag_down ttbarplusw 1.00326 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_up ttbarplusw 1.11625 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_down ttbarplusw 0.882989 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_wtag_up ttbarplusw 0.996927 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_wtag_down ttbarplusw 1.00309 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_wtag_up ttbarplusw 0.996261 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_wtag_down ttbarplusw 1.00377 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_up ttbarplusw 1.05584 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_down ttbarplusw 0.943797 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_Up ttbarplusw 1.00166 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_Down ttbarplusw 0.998403 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_Up ttbarplusw 1.00228 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_Down ttbarplusw 0.998061 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_Up ttbarplusw 1.00152 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_Down ttbarplusw 0.998747 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_Up ttbarplusw 1.00118 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_Down ttbarplusw 0.998894 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_Up ttbarplusw 0.999146 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_Down ttbarplusw 1.0012 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_Up ttbarplusw 0.999878 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_Down ttbarplusw 0.999723 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_Up ttbarplusw 1.00844 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_Down ttbarplusw 0.990861 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_Up ttbarplusw 1.0003 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_Down ttbarplusw 0.998771 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_Up ttbarplusw 0.995875 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_Down ttbarplusw 1.00383 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_Up ttbarplusw 1.01093 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_Down ttbarplusw 0.98977 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PU_Weight_Up ttbarplusw 1.00741 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PU_Weight_Down ttbarplusw 0.992777 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PU_Weight_Up ttbarplusw 0.994111 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PU_Weight_Down ttbarplusw 1.00552 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PU_Weight_Up ttbarplusw 1.00771 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PU_Weight_Down ttbarplusw 0.995984 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PU_Weight_Up ttbarplusw 0.992356 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PU_Weight_Down ttbarplusw 1.0114 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PU_Weight_Up ttbarplusw 1.03802 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PU_Weight_Down ttbarplusw 0.966908 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PU_Weight_Up ttbarplusw 1.00313 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PU_Weight_Down ttbarplusw 0.998765 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_Up ttbarplusw 0.995045 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_Down ttbarplusw 1.00526 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PU_Weight_Up ttbarplusw 1.007 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PU_Weight_Down ttbarplusw 0.994155 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PU_Weight_Up ttbarplusw 0.994161 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PU_Weight_Down ttbarplusw 1.00551 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PU_Weight_Up ttbarplusw 0.99472 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PU_Weight_Down ttbarplusw 1.00467 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_Up ttbarplusw 0.997852 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_Down ttbarplusw 1.00175 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PU_Weight_Up ttbarplusw 0.988979 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PU_Weight_Down ttbarplusw 1.01047 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PU_Weight_Up ttbarplusw 0.981492 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PU_Weight_Down ttbarplusw 1.01379 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PU_Weight_Up ttbarplusw 0.99576 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PU_Weight_Down ttbarplusw 0.999918 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_Up ttbarplusw 1.00029 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_Down ttbarplusw 0.999633 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_Up ttbarplusw 1.00214 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_Down ttbarplusw 0.997147 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PU_Weight_Up ttbarplusw 1.00507 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PU_Weight_Down ttbarplusw 0.994339 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PU_Weight_Up ttbarplusw 0.998391 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PU_Weight_Down ttbarplusw 1.002 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_Up ttbarplusw 1.00228 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_Down ttbarplusw 0.998341 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_Up ttbarplusw 0.988505 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_Down ttbarplusw 1.00786 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PU_Weight_Up ttbarplusw 0.99042 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PU_Weight_Down ttbarplusw 1.01063 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PU_Weight_Up ttbarplusw 0.992938 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PU_Weight_Down ttbarplusw 1.00695 +bin_lm_nb1_nivf1_lowmtb_lowptb_MET_pt300to400 PU_Weight_Up ttbarplusw 1.00201 +bin_lm_nb1_nivf1_lowmtb_lowptb_MET_pt300to400 PU_Weight_Down ttbarplusw 0.998825 +bin_lm_nb1_nivf1_lowmtb_lowptb_MET_pt400to500 PU_Weight_Up ttbarplusw 1.01123 +bin_lm_nb1_nivf1_lowmtb_lowptb_MET_pt400to500 PU_Weight_Down ttbarplusw 0.994832 +bin_lm_nb1_nivf1_lowmtb_lowptb_MET_pt500toinf PU_Weight_Up ttbarplusw 0.977466 +bin_lm_nb1_nivf1_lowmtb_lowptb_MET_pt500toinf PU_Weight_Down ttbarplusw 1.02272 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PU_Weight_Up ttbarplusw 1.00049 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PU_Weight_Down ttbarplusw 1.00014 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PU_Weight_Up ttbarplusw 1.00406 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PU_Weight_Down ttbarplusw 0.998082 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PU_Weight_Up ttbarplusw 0.987306 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PU_Weight_Down ttbarplusw 1.01142 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_Up ttbarplusw 0.998793 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_Down ttbarplusw 1.00176 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PU_Weight_Up ttbarplusw 0.995635 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PU_Weight_Down ttbarplusw 1.00403 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PU_Weight_Up ttbarplusw 0.988709 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PU_Weight_Down ttbarplusw 1.01716 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_Up ttbarplusw 1.00352 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_Down ttbarplusw 0.996456 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PU_Weight_Up ttbarplusw 1.0189 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PU_Weight_Down ttbarplusw 0.983529 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PU_Weight_Up ttbarplusw 0.99566 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PU_Weight_Down ttbarplusw 1.01069 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PU_Weight_Up ttbarplusw 1.01842 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PU_Weight_Down ttbarplusw 0.981953 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PU_Weight_Up ttbarplusw 1.03221 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PU_Weight_Down ttbarplusw 0.969136 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PU_Weight_Up ttbarplusw 1.00617 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PU_Weight_Down ttbarplusw 0.995587 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PU_Weight_Up ttbarplusw 1.00326 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PU_Weight_Down ttbarplusw 0.996406 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PU_Weight_Up ttbarplusw 0.99569 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PU_Weight_Down ttbarplusw 1.00411 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PU_Weight_Up ttbarplusw 0.99215 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PU_Weight_Down ttbarplusw 1.00652 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_Up ttbarplusw 1.00486 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_Down ttbarplusw 0.997385 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PU_Weight_Up ttbarplusw 0.991806 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PU_Weight_Down ttbarplusw 1.01027 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PU_Weight_Up ttbarplusw 0.984518 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PU_Weight_Down ttbarplusw 1.01854 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Up ttbarplusw 1.0001 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Down ttbarplusw 1.00023 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Up ttbarplusw 0.99753 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Down ttbarplusw 1.00202 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Up ttbarplusw 0.992731 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Down ttbarplusw 1.00566 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Up ttbarplusw 1.00015 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Down ttbarplusw 1.00118 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Up ttbarplusw 0.998487 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Down ttbarplusw 1.00157 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Up ttbarplusw 0.998425 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Down ttbarplusw 1.00133 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Up ttbarplusw 1.00373 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Down ttbarplusw 0.995578 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Up ttbarplusw 0.996471 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Down ttbarplusw 1.00393 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_Up ttbarplusw 1.00017 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_Down ttbarplusw 1.00042 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_Up ttbarplusw 1.00002 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_Down ttbarplusw 1.00068 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_Up ttbarplusw 1.00698 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_Down ttbarplusw 0.992979 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_Up ttbarplusw 1.00628 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_Down ttbarplusw 0.995208 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_Up ttbarplusw 1.00522 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_Down ttbarplusw 0.996 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_Up ttbarplusw 0.995182 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_Down ttbarplusw 1.00522 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_Up ttbarplusw 1.01959 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_Down ttbarplusw 0.977617 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_Up ttbarplusw 1.00406 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_Down ttbarplusw 0.994929 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_Up ttbarplusw 0.995693 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_Down ttbarplusw 1.00435 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_Up ttbarplusw 0.994957 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_Down ttbarplusw 1.00553 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_Up ttbarplusw 0.986254 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_Down ttbarplusw 1.01204 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_Up ttbarplusw 0.995619 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_Down ttbarplusw 1.00453 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Up ttbarplusw 1.00851 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Down ttbarplusw 0.993739 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Up ttbarplusw 0.974997 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Down ttbarplusw 1.02279 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_Up ttbarplusw 0.996842 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_Down ttbarplusw 1.00294 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_Up ttbarplusw 1.04922 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_Down ttbarplusw 0.953224 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_Up ttbarplusw 1.01721 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_Down ttbarplusw 0.981874 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PU_Weight_Up ttbarplusw 1.00213 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PU_Weight_Down ttbarplusw 0.998369 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PU_Weight_Up ttbarplusw 1.00912 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PU_Weight_Down ttbarplusw 0.989599 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PU_Weight_Up ttbarplusw 1.00585 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PU_Weight_Down ttbarplusw 0.997317 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PU_Weight_Up ttbarplusw 0.99274 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PU_Weight_Down ttbarplusw 1.00755 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PU_Weight_Up ttbarplusw 1.02996 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PU_Weight_Down ttbarplusw 0.98152 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PU_Weight_Up ttbarplusw 1.00436 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PU_Weight_Down ttbarplusw 0.995828 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PU_Weight_Up ttbarplusw 0.999068 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PU_Weight_Down ttbarplusw 1.00111 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PU_Weight_Up ttbarplusw 0.995665 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PU_Weight_Down ttbarplusw 1.00387 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PU_Weight_Up ttbarplusw 0.999914 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PU_Weight_Down ttbarplusw 1.00092 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PU_Weight_Up ttbarplusw 1.00944 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PU_Weight_Down ttbarplusw 0.993487 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PU_Weight_Up ttbarplusw 0.98591 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PU_Weight_Down ttbarplusw 1.01589 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Up ttbarplusw 0.996251 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Down ttbarplusw 1.00297 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_Up ttbarplusw 0.995516 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_Down ttbarplusw 1.00573 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_Up ttbarplusw 0.998092 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_Down ttbarplusw 1.00426 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Up ttbarplusw 0.985836 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Down ttbarplusw 1.01143 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Up ttbarplusw 0.991957 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Down ttbarplusw 1.0112 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PU_Weight_Up ttbarplusw 0.99797 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PU_Weight_Down ttbarplusw 1.00252 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PU_Weight_Up ttbarplusw 1.00568 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PU_Weight_Down ttbarplusw 0.994571 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PU_Weight_Up ttbarplusw 0.971406 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PU_Weight_Down ttbarplusw 1.03281 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PU_Weight_Up ttbarplusw 1.00706 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PU_Weight_Down ttbarplusw 0.986157 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PU_Weight_Up ttbarplusw 1.04529 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PU_Weight_Down ttbarplusw 0.956477 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PU_Weight_Up ttbarplusw 1.01234 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PU_Weight_Down ttbarplusw 0.984752 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PU_Weight_Up ttbarplusw 1.01079 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PU_Weight_Down ttbarplusw 0.993409 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PU_Weight_Up ttbarplusw 0.999711 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PU_Weight_Down ttbarplusw 1.00379 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PU_Weight_Up ttbarplusw 0.993888 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PU_Weight_Down ttbarplusw 0.998971 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PU_Weight_Up ttbarplusw 1.00374 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PU_Weight_Down ttbarplusw 0.998123 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PU_Weight_Up ttbarplusw 1.0883 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PU_Weight_Down ttbarplusw 0.915216 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_Up ttbarplusw 1.00125 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_Down ttbarplusw 0.999438 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_Up ttbarplusw 1.00304 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_Down ttbarplusw 0.995333 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_Up ttbarplusw 1.03595 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_Down ttbarplusw 0.969334 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_Up ttbarplusw 1.00121 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_Down ttbarplusw 0.997483 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Up ttbarplusw 1.0617 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Down ttbarplusw 0.931441 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Up ttbarplusw 1.0122 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Down ttbarplusw 0.992811 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_Up ttbarplusw 0.985247 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_Down ttbarplusw 1.01419 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_Up ttbarplusw 0.950681 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_Down ttbarplusw 1.0538 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_Up ttbarplusw 1.02696 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_Down ttbarplusw 0.966716 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PU_Weight_Up ttbarplusw 0.997079 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PU_Weight_Down ttbarplusw 1.00425 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PU_Weight_Up ttbarplusw 1.01551 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PU_Weight_Down ttbarplusw 0.985344 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PU_Weight_Up ttbarplusw 0.974752 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PU_Weight_Down ttbarplusw 1.02123 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PU_Weight_Up ttbarplusw 0.993688 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PU_Weight_Down ttbarplusw 1.00994 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PU_Weight_Up ttbarplusw 0.987351 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PU_Weight_Down ttbarplusw 1.00918 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PU_Weight_Up ttbarplusw 0.98047 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PU_Weight_Down ttbarplusw 1.02307 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_Up ttbarplusw 1.00271 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_Down ttbarplusw 0.997061 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PU_Weight_Up ttbarplusw 1.00791 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PU_Weight_Down ttbarplusw 0.991702 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PU_Weight_Up ttbarplusw 1.00629 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PU_Weight_Down ttbarplusw 0.996273 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PU_Weight_Up ttbarplusw 1.00483 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PU_Weight_Down ttbarplusw 0.998075 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PU_Weight_Up ttbarplusw 0.929392 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PU_Weight_Down ttbarplusw 1.07805 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Up ttbarplusw 0.996762 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Down ttbarplusw 1.00272 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_Up ttbarplusw 1.00495 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_Down ttbarplusw 0.998953 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_Up ttbarplusw 1.01748 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_Down ttbarplusw 0.986185 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Up ttbarplusw 0.989776 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Down ttbarplusw 1.0047 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Up ttbarplusw 1.00098 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Down ttbarplusw 1.00452 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_Up ttbarplusw 1.00527 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_Down ttbarplusw 0.993721 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PU_Weight_Up ttbarplusw 1.02586 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PU_Weight_Down ttbarplusw 0.977046 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PU_Weight_Up ttbarplusw 0.957089 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PU_Weight_Down ttbarplusw 1.04922 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PU_Weight_Up ttbarplusw 1.05206 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PU_Weight_Down ttbarplusw 0.962839 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PU_Weight_Up ttbarplusw 1.11455 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PU_Weight_Down ttbarplusw 0.902019 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PU_Weight_Up ttbarplusw 1.06731 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PU_Weight_Down ttbarplusw 0.921883 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PU_Weight_Up ttbarplusw 1.0272 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PU_Weight_Down ttbarplusw 0.96807 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PU_Weight_Up ttbarplusw 0.982345 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PU_Weight_Down ttbarplusw 1.01451 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PU_Weight_Up ttbarplusw 1.0216 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PU_Weight_Down ttbarplusw 0.968408 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PU_Weight_Up ttbarplusw 0.984317 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PU_Weight_Down ttbarplusw 1.01983 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PU_Weight_Up ttbarplusw 0.989834 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PU_Weight_Down ttbarplusw 1.01246 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PU_Weight_Up ttbarplusw 0.967585 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PU_Weight_Down ttbarplusw 1.03064 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PU_Weight_Up ttbarplusw 1.05125 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PU_Weight_Down ttbarplusw 0.957938 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PU_Weight_Up ttbarplusw 1.01718 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PU_Weight_Down ttbarplusw 0.98115 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PU_Weight_Up ttbarplusw 0.989678 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PU_Weight_Down ttbarplusw 1.01824 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PU_Weight_Up ttbarplusw 0.996159 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PU_Weight_Down ttbarplusw 1.00994 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PU_Weight_Up ttbarplusw 0.968466 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PU_Weight_Down ttbarplusw 1.03218 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_Up ttbarplusw 1.10142 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_Down ttbarplusw 0.904981 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PU_Weight_Up ttbarplusw 0.997479 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PU_Weight_Down ttbarplusw 1.00235 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PU_Weight_Up ttbarplusw 0.973732 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PU_Weight_Down ttbarplusw 1.02535 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PU_Weight_Up ttbarplusw 0.961441 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PU_Weight_Down ttbarplusw 1.0395 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PU_Weight_Up ttbarplusw 1.06979 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PU_Weight_Down ttbarplusw 0.951327 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_Up ttbarplusw 1.19702 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_Down ttbarplusw 0.831709 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PU_Weight_Up ttbarplusw 1.01486 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PU_Weight_Down ttbarplusw 0.986172 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PU_Weight_Up ttbarplusw 0.99206 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PU_Weight_Down ttbarplusw 1.00434 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PU_Weight_Up ttbarplusw 1.07878 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PU_Weight_Down ttbarplusw 0.924205 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Up ttbarplusw 1.00133 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Down ttbarplusw 1.00146 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PU_Weight_Up ttbarplusw 1.00476 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PU_Weight_Down ttbarplusw 0.991511 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PU_Weight_Up ttbarplusw 0.884115 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PU_Weight_Down ttbarplusw 1.12483 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PU_Weight_Up ttbarplusw 0.977291 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PU_Weight_Down ttbarplusw 1.02763 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PU_Weight_Up ttbarplusw 1.04589 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PU_Weight_Down ttbarplusw 0.968425 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PU_Weight_Up ttbarplusw 0.989279 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PU_Weight_Down ttbarplusw 1.00152 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PU_Weight_Up ttbarplusw 0.994714 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PU_Weight_Down ttbarplusw 1.00553 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PU_Weight_Up ttbarplusw 1.00971 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PU_Weight_Down ttbarplusw 0.994187 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PU_Weight_Up ttbarplusw 1.08231 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PU_Weight_Down ttbarplusw 0.917589 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_Up ttbarplusw 0.995929 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_Down ttbarplusw 1.00323 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PU_Weight_Up ttbarplusw 0.994028 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PU_Weight_Down ttbarplusw 1.00274 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PU_Weight_Up ttbarplusw 0.993519 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PU_Weight_Down ttbarplusw 1.00974 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Up ttbarplusw 1.03036 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Down ttbarplusw 0.970066 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PU_Weight_Up ttbarplusw 0.970261 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PU_Weight_Down ttbarplusw 1.03034 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PU_Weight_Up ttbarplusw 0.963076 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PU_Weight_Down ttbarplusw 1.03749 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_Up ttbarplusw 1.00817 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_Down ttbarplusw 0.99363 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PU_Weight_Up ttbarplusw 1.04652 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PU_Weight_Down ttbarplusw 0.957232 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PU_Weight_Up ttbarplusw 0.9304 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PU_Weight_Down ttbarplusw 1.07013 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PU_Weight_Up ttbarplusw 1.01002 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PU_Weight_Down ttbarplusw 0.99141 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PU_Weight_Up ttbarplusw 0.988558 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PU_Weight_Down ttbarplusw 1.00798 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PU_Weight_Up ttbarplusw 1.00325 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PU_Weight_Down ttbarplusw 0.988544 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PU_Weight_Up ttbarplusw 0.977921 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PU_Weight_Down ttbarplusw 1.01937 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PU_Weight_Up ttbarplusw 0.979497 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PU_Weight_Down ttbarplusw 1.01805 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_Up ttbarplusw 0.979577 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_Down ttbarplusw 1.00719 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PU_Weight_Up ttbarplusw 0.99063 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PU_Weight_Down ttbarplusw 1.00599 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PU_Weight_Up ttbarplusw 1.00773 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PU_Weight_Down ttbarplusw 0.99658 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_Up ttbarplusw 0.843396 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_Down ttbarplusw 1.15304 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PDF_Weight_Up ttbarplusw 0.992679 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PDF_Weight_Down ttbarplusw 1.00769 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PDF_Weight_Up ttbarplusw 1.00065 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PDF_Weight_Down ttbarplusw 0.999309 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PDF_Weight_Up ttbarplusw 0.997084 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PDF_Weight_Down ttbarplusw 1.00308 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PDF_Weight_Up ttbarplusw 0.99691 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PDF_Weight_Down ttbarplusw 1.0033 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PDF_Weight_Up ttbarplusw 1.00494 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PDF_Weight_Down ttbarplusw 0.994638 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PDF_Weight_Up ttbarplusw 1.00835 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PDF_Weight_Down ttbarplusw 0.991009 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PDF_Weight_Up ttbarplusw 0.99882 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PDF_Weight_Down ttbarplusw 1.00128 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PDF_Weight_Up ttbarplusw 1.00352 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PDF_Weight_Down ttbarplusw 0.996206 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PDF_Weight_Up ttbarplusw 1.00121 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PDF_Weight_Down ttbarplusw 0.998731 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PDF_Weight_Up ttbarplusw 1.00397 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PDF_Weight_Down ttbarplusw 0.995866 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PDF_Weight_Up ttbarplusw 0.997974 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PDF_Weight_Down ttbarplusw 1.00213 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PDF_Weight_Up ttbarplusw 0.997161 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PDF_Weight_Down ttbarplusw 1.00298 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PDF_Weight_Up ttbarplusw 1.00441 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PDF_Weight_Down ttbarplusw 0.995226 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PDF_Weight_Up ttbarplusw 1.00411 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PDF_Weight_Down ttbarplusw 0.995596 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PDF_Weight_Up ttbarplusw 0.952544 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PDF_Weight_Down ttbarplusw 1.05616 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PDF_Weight_Up ttbarplusw 1.00063 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PDF_Weight_Down ttbarplusw 0.999308 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PDF_Weight_Up ttbarplusw 1.00011 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PDF_Weight_Down ttbarplusw 1.00192 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PDF_Weight_Up ttbarplusw 0.999443 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PDF_Weight_Down ttbarplusw 1.00059 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PDF_Weight_Up ttbarplusw 0.977194 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PDF_Weight_Down ttbarplusw 1.02479 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PDF_Weight_Up ttbarplusw 0.984803 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PDF_Weight_Down ttbarplusw 1.0167 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PDF_Weight_Up ttbarplusw 1.00363 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PDF_Weight_Down ttbarplusw 1.00841 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PDF_Weight_Up ttbarplusw 0.971326 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PDF_Weight_Down ttbarplusw 1.0327 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PDF_Weight_Up ttbarplusw 1.0818 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PDF_Weight_Down ttbarplusw 0.913197 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PDF_Weight_Up ttbarplusw 1.06579 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PDF_Weight_Down ttbarplusw 0.92827 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PDF_Weight_Up ttbarplusw 1.00098 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PDF_Weight_Down ttbarplusw 0.998945 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PDF_Weight_Up ttbarplusw 0.987829 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PDF_Weight_Down ttbarplusw 1.01333 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PDF_Weight_Up ttbarplusw 1.02938 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PDF_Weight_Down ttbarplusw 0.969009 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PDF_Weight_Up ttbarplusw 0.996158 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PDF_Weight_Down ttbarplusw 1.00419 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PDF_Weight_Up ttbarplusw 1.0003 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PDF_Weight_Down ttbarplusw 0.999671 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PDF_Weight_Up ttbarplusw 0.966837 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PDF_Weight_Down ttbarplusw 1.03839 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PDF_Weight_Up ttbarplusw 1.0006 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PDF_Weight_Down ttbarplusw 0.999339 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PDF_Weight_Up ttbarplusw 0.869584 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PDF_Weight_Down ttbarplusw 1.14295 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PDF_Weight_Up ttbarplusw 1.02617 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PDF_Weight_Down ttbarplusw 1.021 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PDF_Weight_Up ttbarplusw 1.0031 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PDF_Weight_Down ttbarplusw 0.996699 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PDF_Weight_Up ttbarplusw 1.00749 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PDF_Weight_Down ttbarplusw 0.992097 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PDF_Weight_Up ttbarplusw 1.0034 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PDF_Weight_Down ttbarplusw 0.995473 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PDF_Weight_Up ttbarplusw 0.961206 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PDF_Weight_Down ttbarplusw 1.04217 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PDF_Weight_Up ttbarplusw 0.980246 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PDF_Weight_Down ttbarplusw 1.02188 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PDF_Weight_Up ttbarplusw 1.01786 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PDF_Weight_Down ttbarplusw 1.00943 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PDF_Weight_Up ttbarplusw 0.996767 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PDF_Weight_Down ttbarplusw 1.00359 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PDF_Weight_Up ttbarplusw 0.985546 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PDF_Weight_Down ttbarplusw 1.01627 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PDF_Weight_Up ttbarplusw 0.998302 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PDF_Weight_Down ttbarplusw 0.996205 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PDF_Weight_Up ttbarplusw 1.01625 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PDF_Weight_Down ttbarplusw 0.982063 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PDF_Weight_Up ttbarplusw 1.00165 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PDF_Weight_Down ttbarplusw 0.998131 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PDF_Weight_Up ttbarplusw 0.988286 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PDF_Weight_Down ttbarplusw 1.01287 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PDF_Weight_Up ttbarplusw 1.01338 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PDF_Weight_Down ttbarplusw 0.985837 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PDF_Weight_Up ttbarplusw 1.00455 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PDF_Weight_Down ttbarplusw 0.995035 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PDF_Weight_Up ttbarplusw 1.01831 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PDF_Weight_Down ttbarplusw 0.980232 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PDF_Weight_Up ttbarplusw 0.93374 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PDF_Weight_Down ttbarplusw 1.08697 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PDF_Weight_Up ttbarplusw 0.977048 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PDF_Weight_Down ttbarplusw 1.0265 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PDF_Weight_Up ttbarplusw 0.973654 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PDF_Weight_Down ttbarplusw 1.03101 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PDF_Weight_Up ttbarplusw 1.04134 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PDF_Weight_Down ttbarplusw 0.951207 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PDF_Weight_Up ttbarplusw 1.02626 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PDF_Weight_Down ttbarplusw 0.96617 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PDF_Weight_Up ttbarplusw 0.997863 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PDF_Weight_Down ttbarplusw 1.00238 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PDF_Weight_Up ttbarplusw 1.00575 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PDF_Weight_Down ttbarplusw 1.00645 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PDF_Weight_Up ttbarplusw 0.975481 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PDF_Weight_Down ttbarplusw 1.02868 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PDF_Weight_Up ttbarplusw 1.00472 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PDF_Weight_Down ttbarplusw 0.994381 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PDF_Weight_Up ttbarplusw 1.00252 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PDF_Weight_Down ttbarplusw 0.99721 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PDF_Weight_Up ttbarplusw 1.00115 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PDF_Weight_Down ttbarplusw 1.00283 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PDF_Weight_Up ttbarplusw 0.99575 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PDF_Weight_Down ttbarplusw 1.00485 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PDF_Weight_Up ttbarplusw 0.992734 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PDF_Weight_Down ttbarplusw 1.00853 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PDF_Weight_Up ttbarplusw 1.00244 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PDF_Weight_Down ttbarplusw 0.997194 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PDF_Weight_Up ttbarplusw 1.02587 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PDF_Weight_Down ttbarplusw 0.989181 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PDF_Weight_Up ttbarplusw 0.976386 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PDF_Weight_Down ttbarplusw 1.02745 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PDF_Weight_Up ttbarplusw 0.999887 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PDF_Weight_Down ttbarplusw 1.00013 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PDF_Weight_Up ttbarplusw 1.00113 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PDF_Weight_Down ttbarplusw 0.998694 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PDF_Weight_Up ttbarplusw 1.01939 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PDF_Weight_Down ttbarplusw 1.02284 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PDF_Weight_Up ttbarplusw 1.00589 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PDF_Weight_Down ttbarplusw 0.993171 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PDF_Weight_Up ttbarplusw 0.986037 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PDF_Weight_Down ttbarplusw 1.01653 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PDF_Weight_Up ttbarplusw 1.06225 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PDF_Weight_Down ttbarplusw 0.94523 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PDF_Weight_Up ttbarplusw 1.03931 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PDF_Weight_Down ttbarplusw 0.956075 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PDF_Weight_Up ttbarplusw 0.990143 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PDF_Weight_Down ttbarplusw 1.01101 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PDF_Weight_Up ttbarplusw 1.00955 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PDF_Weight_Down ttbarplusw 0.997045 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_Up ttbarplusw 1.00027 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_Down ttbarplusw 0.999686 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_Up ttbarplusw 1.11856 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_Down ttbarplusw 0.866046 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PDF_Weight_Up ttbarplusw 1.03185 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PDF_Weight_Down ttbarplusw 0.984635 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PDF_Weight_Up ttbarplusw 1.0422 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PDF_Weight_Down ttbarplusw 0.95148 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PDF_Weight_Up ttbarplusw 1.02424 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PDF_Weight_Down ttbarplusw 0.971382 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PDF_Weight_Up ttbarplusw 1.0188 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PDF_Weight_Down ttbarplusw 0.979445 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PDF_Weight_Up ttbarplusw 1.00844 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PDF_Weight_Down ttbarplusw 0.971092 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PDF_Weight_Up ttbarplusw 1.01391 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PDF_Weight_Down ttbarplusw 0.984431 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PDF_Weight_Up ttbarplusw 1.00333 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PDF_Weight_Down ttbarplusw 0.996083 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PDF_Weight_Up ttbarplusw 0.889342 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PDF_Weight_Down ttbarplusw 0.973954 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PDF_Weight_Up ttbarplusw 0.988941 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PDF_Weight_Down ttbarplusw 1.01293 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PDF_Weight_Up ttbarplusw 1.00615 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PDF_Weight_Down ttbarplusw 0.993286 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PDF_Weight_Up ttbarplusw 1.00423 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PDF_Weight_Down ttbarplusw 0.988483 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PDF_Weight_Up ttbarplusw 1.00728 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PDF_Weight_Down ttbarplusw 0.991912 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PDF_Weight_Up ttbarplusw 1.03957 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PDF_Weight_Down ttbarplusw 0.955783 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PDF_Weight_Up ttbarplusw 0.988936 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PDF_Weight_Down ttbarplusw 1.01236 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_Up ttbarplusw 1.02703 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_Down ttbarplusw 0.969202 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PDF_Weight_Up ttbarplusw 1.01984 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PDF_Weight_Down ttbarplusw 1.00174 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PDF_Weight_Up ttbarplusw 0.987393 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PDF_Weight_Down ttbarplusw 1.01458 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_Up ttbarplusw 1.00401 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_Down ttbarplusw 0.995405 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_Up ttbarplusw 1.01676 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_Down ttbarplusw 0.98106 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PDF_Weight_Up ttbarplusw 0.984316 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PDF_Weight_Down ttbarplusw 1.01909 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PDF_Weight_Up ttbarplusw 0.967565 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PDF_Weight_Down ttbarplusw 1.05243 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PDF_Weight_Up ttbarplusw 1.08438 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PDF_Weight_Down ttbarplusw 0.899618 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PDF_Weight_Up ttbarplusw 1.02699 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PDF_Weight_Down ttbarplusw 0.968966 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PDF_Weight_Up ttbarplusw 0.965488 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PDF_Weight_Down ttbarplusw 1.04074 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PDF_Weight_Up ttbarplusw 1.04614 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PDF_Weight_Down ttbarplusw 0.974072 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PDF_Weight_Up ttbarplusw 0.97623 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PDF_Weight_Down ttbarplusw 1.02689 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PDF_Weight_Up ttbarplusw 0.974555 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PDF_Weight_Down ttbarplusw 0.949981 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PDF_Weight_Up ttbarplusw 1.14209 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PDF_Weight_Down ttbarplusw 0.839255 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PDF_Weight_Up ttbarplusw 1.02424 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PDF_Weight_Down ttbarplusw 0.980063 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PDF_Weight_Up ttbarplusw 0.972468 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PDF_Weight_Down ttbarplusw 1.03115 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PDF_Weight_Up ttbarplusw 1.04339 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PDF_Weight_Down ttbarplusw 1.01741 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PDF_Weight_Up ttbarplusw 1.00247 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PDF_Weight_Down ttbarplusw 0.997278 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PDF_Weight_Up ttbarplusw 0.974946 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PDF_Weight_Down ttbarplusw 1.02852 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PDF_Weight_Up ttbarplusw 1.06003 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PDF_Weight_Down ttbarplusw 0.990595 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_Up ttbarplusw 0.978999 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_Down ttbarplusw 1.02352 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_Up ttbarplusw 0.996757 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_Down ttbarplusw 1.00369 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PDF_Weight_Up ttbarplusw 1.00598 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PDF_Weight_Down ttbarplusw 0.999739 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PDF_Weight_Up ttbarplusw 1.01695 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PDF_Weight_Down ttbarplusw 0.980023 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PDF_Weight_Up ttbarplusw 1.02702 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PDF_Weight_Down ttbarplusw 0.968351 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PDF_Weight_Up ttbarplusw 0.998797 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PDF_Weight_Down ttbarplusw 1.00131 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PDF_Weight_Up ttbarplusw 1.04799 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PDF_Weight_Down ttbarplusw 1.02319 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PDF_Weight_Up ttbarplusw 0.962386 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PDF_Weight_Down ttbarplusw 1.04153 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PDF_Weight_Up ttbarplusw 0.96787 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PDF_Weight_Down ttbarplusw 1.03782 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PDF_Weight_Up ttbarplusw 0.986681 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PDF_Weight_Down ttbarplusw 1.10897 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PDF_Weight_Up ttbarplusw 0.967425 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PDF_Weight_Down ttbarplusw 1.0384 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PDF_Weight_Up ttbarplusw 1.00409 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PDF_Weight_Down ttbarplusw 0.995553 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PDF_Weight_Up ttbarplusw 1.02154 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PDF_Weight_Down ttbarplusw 0.987921 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PDF_Weight_Up ttbarplusw 1.01523 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PDF_Weight_Down ttbarplusw 0.983353 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PDF_Weight_Up ttbarplusw 0.882842 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PDF_Weight_Down ttbarplusw 1.12905 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PDF_Weight_Up ttbarplusw 0.95809 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PDF_Weight_Down ttbarplusw 1.0477 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_Up ttbarplusw 1.00826 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_Down ttbarplusw 0.990572 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PDF_Weight_Up ttbarplusw 1.06293 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PDF_Weight_Down ttbarplusw 1.0306 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PDF_Weight_Up ttbarplusw 1.04182 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PDF_Weight_Down ttbarplusw 0.952941 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_Up ttbarplusw 1.01926 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_Down ttbarplusw 0.978426 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_Up ttbarplusw 0.987932 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_Down ttbarplusw 1.01372 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PDF_Weight_Up ttbarplusw 1.03491 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PDF_Weight_Down ttbarplusw 0.958032 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PDF_Weight_Up ttbarplusw 1.87634 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PDF_Weight_Down ttbarplusw -0.038526 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PDF_Weight_Up ttbarplusw 1.0221 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PDF_Weight_Down ttbarplusw 0.97156 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PDF_Weight_Up ttbarplusw 1.02117 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PDF_Weight_Down ttbarplusw 0.975041 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PDF_Weight_Up ttbarplusw 1.01081 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PDF_Weight_Down ttbarplusw 0.987332 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PDF_Weight_Up ttbarplusw 1.07287 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PDF_Weight_Down ttbarplusw 0.971911 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PDF_Weight_Up ttbarplusw 0.960728 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PDF_Weight_Down ttbarplusw 1.04423 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PDF_Weight_Up ttbarplusw 1.00024 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PDF_Weight_Down ttbarplusw 0.999735 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PDF_Weight_Up ttbarplusw 1.03346 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PDF_Weight_Down ttbarplusw 1.05651 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PDF_Weight_Up ttbarplusw 0.998453 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PDF_Weight_Down ttbarplusw 1.00171 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PDF_Weight_Up ttbarplusw 1.06315 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PDF_Weight_Down ttbarplusw 0.92566 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PDF_Weight_Up ttbarplusw 1.25678 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PDF_Weight_Down ttbarplusw 0.774439 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PDF_Weight_Up ttbarplusw 1.02441 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PDF_Weight_Down ttbarplusw 0.971228 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PDF_Weight_Up ttbarplusw 1.03176 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PDF_Weight_Down ttbarplusw 1.02666 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PDF_Weight_Up ttbarplusw 0.977221 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PDF_Weight_Down ttbarplusw 1.02566 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PDF_Weight_Up ttbarplusw 1.07431 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PDF_Weight_Down ttbarplusw 1.00333 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PDF_Weight_Up ttbarplusw 0.987244 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PDF_Weight_Down ttbarplusw 1.01423 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PDF_Weight_Up ttbarplusw 1.02002 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PDF_Weight_Down ttbarplusw 1.06787 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PDF_Weight_Up ttbarplusw 0.9894 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PDF_Weight_Down ttbarplusw 0.987873 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PDF_Weight_Up ttbarplusw 0.978553 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PDF_Weight_Down ttbarplusw 1.02368 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PDF_Weight_Up ttbarplusw 0.960811 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PDF_Weight_Down ttbarplusw 0.964948 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PDF_Weight_Up ttbarplusw 0.983656 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PDF_Weight_Down ttbarplusw 1.01927 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PDF_Weight_Up ttbarplusw 1.01232 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PDF_Weight_Down ttbarplusw 1.07633 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PDF_Weight_Up ttbarplusw 1.00341 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PDF_Weight_Down ttbarplusw 0.996244 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PDF_Weight_Up ttbarplusw 1.03311 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PDF_Weight_Down ttbarplusw 1.02608 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PDF_Weight_Up ttbarplusw 1.03285 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PDF_Weight_Down ttbarplusw 0.963858 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_Up ttbarplusw 1.04361 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_Down ttbarplusw 0.949039 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PDF_Weight_Up ttbarplusw 1.03428 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PDF_Weight_Down ttbarplusw 0.892958 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PDF_Weight_Up ttbarplusw 1.02203 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PDF_Weight_Down ttbarplusw 0.97708 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PDF_Weight_Up ttbarplusw 1.02564 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PDF_Weight_Down ttbarplusw 0.968452 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PDF_Weight_Up ttbarplusw 1.00427 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PDF_Weight_Down ttbarplusw 1.0464 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PDF_Weight_Up ttbarplusw 0.97114 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PDF_Weight_Down ttbarplusw 1.08803 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PDF_Weight_Up ttbarplusw 1.00013 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PDF_Weight_Down ttbarplusw 0.99985 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PDF_Weight_Up ttbarplusw 0.938586 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PDF_Weight_Down ttbarplusw 0.933865 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PDF_Weight_Up ttbarplusw 0.963328 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PDF_Weight_Down ttbarplusw 1.04601 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PDF_Weight_Up ttbarplusw 0.997642 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PDF_Weight_Down ttbarplusw 1.00259 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PDF_Weight_Up ttbarplusw 1.02166 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PDF_Weight_Down ttbarplusw 1.02434 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PDF_Weight_Up ttbarplusw 1.04415 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PDF_Weight_Down ttbarplusw 0.951434 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_Up ttbarplusw 1.12887 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_Down ttbarplusw 0.849416 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PDF_Weight_Up ttbarplusw 1.03723 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PDF_Weight_Down ttbarplusw 1.00554 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PDF_Weight_Up ttbarplusw 1.15552 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PDF_Weight_Down ttbarplusw 0.838235 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PDF_Weight_Up ttbarplusw 1.10595 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PDF_Weight_Down ttbarplusw 0.869646 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PDF_Weight_Up ttbarplusw 0.854525 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PDF_Weight_Down ttbarplusw 0.803315 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PDF_Weight_Up ttbarplusw 0.694819 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PDF_Weight_Down ttbarplusw 1.93094 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PDF_Weight_Up ttbarplusw 1.07543 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PDF_Weight_Down ttbarplusw 0.973747 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PDF_Weight_Up ttbarplusw 1.00214 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PDF_Weight_Down ttbarplusw 0.997625 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PDF_Weight_Up ttbarplusw 1.06751 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PDF_Weight_Down ttbarplusw 0.987244 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PDF_Weight_Up ttbarplusw 1.03454 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PDF_Weight_Down ttbarplusw 0.996256 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PDF_Weight_Up ttbarplusw 1.03925 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PDF_Weight_Down ttbarplusw 1.01422 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PDF_Weight_Up ttbarplusw 1.05027 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PDF_Weight_Down ttbarplusw 1.00189 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PDF_Weight_Up ttbarplusw 1.03983 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PDF_Weight_Down ttbarplusw 0.955789 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PDF_Weight_Up ttbarplusw 1.00588 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PDF_Weight_Down ttbarplusw 1.04011 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PDF_Weight_Up ttbarplusw 1.03093 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PDF_Weight_Down ttbarplusw 1.02352 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 metres_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 metres_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 metres_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 metres_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 metres_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 metres_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf metres_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf metres_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 metres_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 metres_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 metres_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 metres_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 metres_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 metres_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf metres_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf metres_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 metres_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 metres_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 metres_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 metres_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 metres_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 metres_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf metres_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf metres_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 metres_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 metres_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 metres_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 metres_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 metres_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 metres_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf metres_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf metres_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 metres_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 metres_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 metres_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 metres_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 metres_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 metres_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf metres_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf metres_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 metres_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 metres_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 metres_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 metres_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 metres_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 metres_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf metres_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf metres_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 metres_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 metres_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 metres_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 metres_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 metres_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 metres_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf metres_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf metres_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 metres_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 metres_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 metres_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 metres_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 metres_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 metres_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf metres_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf metres_Down ttbarplusw 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 metres_Up ttbarplusw 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 metres_Down ttbarplusw 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 metres_Up ttbarplusw 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 metres_Down ttbarplusw 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf metres_Up ttbarplusw 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf metres_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 metres_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 metres_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 metres_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 metres_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf metres_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf metres_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 metres_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 metres_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 metres_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 metres_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf metres_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf metres_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 metres_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 metres_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 metres_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 metres_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf metres_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf metres_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 metres_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 metres_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 metres_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 metres_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf metres_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf metres_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 metres_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 metres_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 metres_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 metres_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf metres_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf metres_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 metres_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 metres_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 metres_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 metres_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf metres_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf metres_Down ttbarplusw 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Up ttbarplusw 0.993764 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Down ttbarplusw 0.998668 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Up ttbarplusw 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Down ttbarplusw 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Up ttbarplusw 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Down ttbarplusw 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Up ttbarplusw 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Down ttbarplusw 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Up ttbarplusw 1.00332 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Down ttbarplusw 1.00428 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Up ttbarplusw 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Down ttbarplusw 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Up ttbarplusw 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Down ttbarplusw 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Up ttbarplusw 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_Up ttbarplusw 1.00061 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_Down ttbarplusw 1.00686 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_Down ttbarplusw 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_Up ttbarplusw 0.99538 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_Down ttbarplusw 0.987455 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_Up ttbarplusw 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_Down ttbarplusw 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_Up ttbarplusw 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_Down ttbarplusw 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_Up ttbarplusw 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 metres_Up ttbarplusw 1.00981 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 metres_Down ttbarplusw 1.01621 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_Up ttbarplusw 1.00641 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_Down ttbarplusw 1.00393 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 metres_Up ttbarplusw 0.985349 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 metres_Down ttbarplusw 0.998193 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 metres_Up ttbarplusw 0.998311 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 metres_Down ttbarplusw 1.00005 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 metres_Up ttbarplusw 1.0144 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 metres_Down ttbarplusw 1.026 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 metres_Up ttbarplusw 0.999867 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 metres_Down ttbarplusw 0.997626 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 metres_Up ttbarplusw 1.01459 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 metres_Down ttbarplusw 1.00937 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 metres_Up ttbarplusw 0.988786 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 metres_Down ttbarplusw 0.985603 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 metres_Up ttbarplusw 1.02347 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 metres_Down ttbarplusw 1.0177 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 metres_Up ttbarplusw 1.0097 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 metres_Down ttbarplusw 1.01003 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf metres_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 metres_Up ttbarplusw 0.993198 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 metres_Down ttbarplusw 1.0219 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf metres_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 metres_Up ttbarplusw 1.02134 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 metres_Down ttbarplusw 1.01415 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_Up ttbarplusw 0.991455 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_Down ttbarplusw 0.986989 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 metres_Up ttbarplusw 0.982939 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 metres_Down ttbarplusw 0.988323 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 metres_Up ttbarplusw 1.00785 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 metres_Down ttbarplusw 1.00695 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 metres_Up ttbarplusw 1.01009 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 metres_Down ttbarplusw 1.01774 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_Up ttbarplusw 0.995915 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_Down ttbarplusw 0.990389 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_Up ttbarplusw 0.998622 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_Down ttbarplusw 1.00951 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_Up ttbarplusw 1.00624 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_Down ttbarplusw 0.977297 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 metres_Up ttbarplusw 0.99843 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 metres_Down ttbarplusw 1.03318 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 metres_Up ttbarplusw 1.01057 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 metres_Down ttbarplusw 0.983571 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 metres_Up ttbarplusw 1.01444 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 metres_Down ttbarplusw 1.00998 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 metres_Up ttbarplusw 1.02336 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 metres_Down ttbarplusw 1.00099 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 metres_Up ttbarplusw 1.02401 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 metres_Down ttbarplusw 1.02563 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_Up ttbarplusw 1.02214 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_Down ttbarplusw 1.04388 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 metres_Up ttbarplusw 0.988402 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 metres_Down ttbarplusw 1.00744 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 metres_Up ttbarplusw 0.95957 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 metres_Down ttbarplusw 1.01244 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf metres_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf metres_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf metres_Up ttbarplusw 1.02214 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf metres_Down ttbarplusw 1.02363 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 metres_Up ttbarplusw 1.00241 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 metres_Down ttbarplusw 1.01658 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 metres_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 metres_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf metres_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf metres_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 metres_Up ttbarplusw 0.991259 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 metres_Down ttbarplusw 0.958645 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 metres_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 metres_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf metres_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf metres_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 metres_Up ttbarplusw 1.03047 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 metres_Down ttbarplusw 0.911517 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 metres_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 metres_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf metres_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf metres_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 metres_Up ttbarplusw 1.01555 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 metres_Down ttbarplusw 0.97001 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 metres_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 metres_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf metres_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf metres_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_Up ttbarplusw 0.989963 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_Down ttbarplusw 0.998561 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 metres_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 metres_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf metres_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf metres_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_Up ttbarplusw 1.00342 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_Down ttbarplusw 0.999825 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 metres_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 metres_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf metres_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf metres_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_Up ttbarplusw 1.03047 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_Down ttbarplusw 1.00242 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 metres_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 metres_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf metres_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf metres_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf metres_Up ttbarplusw 1.01747 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf metres_Down ttbarplusw 1.01881 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 metres_Up ttbarplusw 1.02361 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 metres_Down ttbarplusw 1.02351 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf metres_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf metres_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf metres_Up ttbarplusw 1.01747 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf metres_Down ttbarplusw 1.01373 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf metres_Up ttbarplusw 1.01747 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf metres_Down ttbarplusw 1.01881 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_Up ttbarplusw 1.01747 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_Down ttbarplusw 1.01881 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 metres_Up ttbarplusw 1.02361 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 metres_Down ttbarplusw 0.976832 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf metres_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf metres_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf metres_Up ttbarplusw 1.01747 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf metres_Down ttbarplusw 1.01881 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_Up ttbarplusw 0.999633 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_Down ttbarplusw 1.00037 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_Up ttbarplusw 1.00014 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_Down ttbarplusw 0.999859 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_Up ttbarplusw 0.999627 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_Down ttbarplusw 1.00039 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_Up ttbarplusw 0.999786 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_Down ttbarplusw 1.00023 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_Up ttbarplusw 0.996932 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_Down ttbarplusw 1.00317 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_Up ttbarplusw 0.995554 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_Down ttbarplusw 1.00453 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_Up ttbarplusw 0.996897 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_Down ttbarplusw 1.00317 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_Up ttbarplusw 1.00082 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_Down ttbarplusw 0.999078 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_Up ttbarplusw 0.999345 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_Down ttbarplusw 1.00066 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_Up ttbarplusw 0.999931 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_Down ttbarplusw 1.00005 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 b_Up ttbarplusw 0.999723 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 b_Down ttbarplusw 1.00039 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf b_Up ttbarplusw 0.999931 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf b_Down ttbarplusw 1.0001 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 b_Up ttbarplusw 0.991753 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 b_Down ttbarplusw 1.00868 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 b_Up ttbarplusw 0.997385 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 b_Down ttbarplusw 1.00239 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 b_Up ttbarplusw 0.993029 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 b_Down ttbarplusw 1.0069 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf b_Up ttbarplusw 1.00467 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf b_Down ttbarplusw 0.995559 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_Up ttbarplusw 1.00337 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_Down ttbarplusw 0.996261 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 b_Up ttbarplusw 1.00225 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 b_Down ttbarplusw 0.99771 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 b_Up ttbarplusw 0.998543 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 b_Down ttbarplusw 1.00077 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf b_Up ttbarplusw 0.998482 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf b_Down ttbarplusw 1.00073 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_Up ttbarplusw 1.00701 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_Down ttbarplusw 0.992695 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 b_Up ttbarplusw 1.01248 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 b_Down ttbarplusw 0.986534 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 b_Up ttbarplusw 0.993865 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 b_Down ttbarplusw 1.00644 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf b_Up ttbarplusw 1.00415 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf b_Down ttbarplusw 0.99711 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_Up ttbarplusw 1.00674 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_Down ttbarplusw 0.992644 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_Up ttbarplusw 1.00294 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_Down ttbarplusw 0.996601 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 b_Up ttbarplusw 1.01025 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 b_Down ttbarplusw 0.988568 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf b_Up ttbarplusw 1.00042 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf b_Down ttbarplusw 0.998727 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_Up ttbarplusw 1.01009 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_Down ttbarplusw 0.989683 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_Up ttbarplusw 1.00418 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_Down ttbarplusw 0.995569 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 b_Up ttbarplusw 1.01779 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 b_Down ttbarplusw 0.981321 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf b_Up ttbarplusw 1.00638 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf b_Down ttbarplusw 0.992918 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_Up ttbarplusw 0.999016 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_Down ttbarplusw 1.00142 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 b_Up ttbarplusw 1.00164 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 b_Down ttbarplusw 0.997221 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf b_Up ttbarplusw 0.99516 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf b_Down ttbarplusw 1.00552 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 b_Up ttbarplusw 0.998592 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 b_Down ttbarplusw 1.00181 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 b_Up ttbarplusw 1.00687 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 b_Down ttbarplusw 0.993234 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf b_Up ttbarplusw 1.00339 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf b_Down ttbarplusw 0.995483 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_Up ttbarplusw 1.00569 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_Down ttbarplusw 0.99431 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 b_Up ttbarplusw 0.999256 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 b_Down ttbarplusw 1.00046 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf b_Up ttbarplusw 1.03479 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf b_Down ttbarplusw 0.96673 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_Up ttbarplusw 1.00189 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_Down ttbarplusw 0.998281 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 b_Up ttbarplusw 0.998552 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 b_Down ttbarplusw 1.00111 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf b_Up ttbarplusw 1.02307 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf b_Down ttbarplusw 0.976058 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 b_Up ttbarplusw 0.981134 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 b_Down ttbarplusw 1.02072 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 b_Up ttbarplusw 1.01112 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 b_Down ttbarplusw 0.988206 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf b_Up ttbarplusw 1.01324 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf b_Down ttbarplusw 0.983665 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 b_Up ttbarplusw 1.00022 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 b_Down ttbarplusw 0.998958 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 b_Up ttbarplusw 0.998226 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 b_Down ttbarplusw 1.00088 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf b_Up ttbarplusw 0.994899 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf b_Down ttbarplusw 1.00561 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_Up ttbarplusw 0.999802 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_Down ttbarplusw 1.00035 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 b_Up ttbarplusw 1.01399 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 b_Down ttbarplusw 0.984671 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf b_Up ttbarplusw 1.00932 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf b_Down ttbarplusw 0.990355 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Up ttbarplusw 0.99678 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Down ttbarplusw 1.00325 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Up ttbarplusw 0.996653 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Down ttbarplusw 1.00342 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Up ttbarplusw 0.997322 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Down ttbarplusw 1.0028 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Up ttbarplusw 0.988978 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Down ttbarplusw 1.01141 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Up ttbarplusw 0.997779 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Down ttbarplusw 1.00224 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Up ttbarplusw 0.997835 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Down ttbarplusw 1.00236 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Up ttbarplusw 0.996333 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Down ttbarplusw 1.00378 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Up ttbarplusw 1.00067 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Down ttbarplusw 1.00182 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_Up ttbarplusw 1.01087 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_Down ttbarplusw 0.988665 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_Up ttbarplusw 1.00955 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_Down ttbarplusw 0.989998 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_Up ttbarplusw 1.01006 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_Down ttbarplusw 0.989395 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_Up ttbarplusw 1.00993 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_Down ttbarplusw 0.989544 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_Up ttbarplusw 1.00545 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_Down ttbarplusw 0.993933 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_Up ttbarplusw 0.998101 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_Down ttbarplusw 1.00203 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_Up ttbarplusw 1.01492 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_Down ttbarplusw 0.983622 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_Up ttbarplusw 1.00177 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_Down ttbarplusw 0.997895 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 b_Up ttbarplusw 0.990788 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 b_Down ttbarplusw 1.00894 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 b_Up ttbarplusw 0.982847 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 b_Down ttbarplusw 1.01787 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf b_Up ttbarplusw 0.977575 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf b_Down ttbarplusw 1.02398 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_Up ttbarplusw 0.98418 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_Down ttbarplusw 1.01607 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_Up ttbarplusw 0.979197 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_Down ttbarplusw 1.01893 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_Up ttbarplusw 0.962626 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_Down ttbarplusw 1.03862 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 b_Up ttbarplusw 0.984018 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 b_Down ttbarplusw 1.01633 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 b_Up ttbarplusw 1.00366 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 b_Down ttbarplusw 0.991344 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf b_Up ttbarplusw 0.978318 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf b_Down ttbarplusw 1.0235 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 b_Up ttbarplusw 0.993463 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 b_Down ttbarplusw 1.00635 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 b_Up ttbarplusw 0.994014 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 b_Down ttbarplusw 1.00588 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf b_Up ttbarplusw 0.99607 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf b_Down ttbarplusw 1.00426 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 b_Up ttbarplusw 0.991659 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 b_Down ttbarplusw 1.00796 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 b_Up ttbarplusw 0.998222 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 b_Down ttbarplusw 1.00239 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf b_Up ttbarplusw 0.993888 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf b_Down ttbarplusw 1.00666 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 b_Up ttbarplusw 0.992179 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 b_Down ttbarplusw 1.00794 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 b_Up ttbarplusw 0.989789 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 b_Down ttbarplusw 1.01052 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 b_Up ttbarplusw 0.985357 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 b_Down ttbarplusw 1.01522 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 b_Up ttbarplusw 0.982447 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 b_Down ttbarplusw 1.01843 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf b_Up ttbarplusw 0.971072 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf b_Down ttbarplusw 1.03062 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 b_Up ttbarplusw 0.982518 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 b_Down ttbarplusw 1.0182 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 b_Up ttbarplusw 0.979118 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 b_Down ttbarplusw 1.02092 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 b_Up ttbarplusw 0.978686 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 b_Down ttbarplusw 1.0222 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 b_Up ttbarplusw 0.976475 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 b_Down ttbarplusw 1.02352 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf b_Up ttbarplusw 0.969231 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf b_Down ttbarplusw 1.03312 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 b_Up ttbarplusw 0.965912 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 b_Down ttbarplusw 1.03599 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 b_Up ttbarplusw 0.970241 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 b_Down ttbarplusw 1.03217 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 b_Up ttbarplusw 0.972487 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 b_Down ttbarplusw 1.03006 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 b_Up ttbarplusw 0.983189 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 b_Down ttbarplusw 1.01551 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf b_Up ttbarplusw 0.965618 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf b_Down ttbarplusw 1.03947 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 b_Up ttbarplusw 0.987497 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 b_Down ttbarplusw 1.01179 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf b_Up ttbarplusw 0.984868 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf b_Down ttbarplusw 1.01644 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 b_Up ttbarplusw 0.984405 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 b_Down ttbarplusw 1.01526 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf b_Up ttbarplusw 0.999775 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf b_Down ttbarplusw 0.997298 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 b_Up ttbarplusw 0.982848 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 b_Down ttbarplusw 1.01762 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf b_Up ttbarplusw 0.962533 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf b_Down ttbarplusw 1.04061 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 b_Up ttbarplusw 1.00737 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 b_Down ttbarplusw 0.991469 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 b_Up ttbarplusw 1.0014 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 b_Down ttbarplusw 0.999481 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf b_Up ttbarplusw 0.973672 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf b_Down ttbarplusw 1.02985 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_Up ttbarplusw 0.999307 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_Down ttbarplusw 1.0005 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_Up ttbarplusw 0.971277 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_Down ttbarplusw 1.02529 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_Up ttbarplusw 0.973607 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_Down ttbarplusw 1.02473 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 b_Up ttbarplusw 1.00607 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 b_Down ttbarplusw 0.992729 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 b_Up ttbarplusw 0.946653 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 b_Down ttbarplusw 1.05903 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf b_Up ttbarplusw 0.96381 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf b_Down ttbarplusw 1.03917 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 b_Up ttbarplusw 1.00658 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 b_Down ttbarplusw 0.992838 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 b_Up ttbarplusw 0.996002 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 b_Down ttbarplusw 1.00405 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf b_Up ttbarplusw 1.02592 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf b_Down ttbarplusw 0.972239 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 b_Up ttbarplusw 1.00426 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 b_Down ttbarplusw 0.996425 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 b_Up ttbarplusw 0.965261 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 b_Down ttbarplusw 1.03784 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf b_Up ttbarplusw 0.96981 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf b_Down ttbarplusw 1.02723 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_Up ttbarplusw 0.992996 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_Down ttbarplusw 1.00739 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 b_Up ttbarplusw 0.991239 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 b_Down ttbarplusw 1.00915 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 b_Up ttbarplusw 0.997602 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 b_Down ttbarplusw 1.00277 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 b_Up ttbarplusw 1.00982 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 b_Down ttbarplusw 0.987865 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf b_Up ttbarplusw 0.970409 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf b_Down ttbarplusw 1.03403 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_Up ttbarplusw 0.987034 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_Down ttbarplusw 1.01325 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 b_Up ttbarplusw 0.993284 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 b_Down ttbarplusw 1.00714 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 b_Up ttbarplusw 0.986706 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 b_Down ttbarplusw 1.01158 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 b_Up ttbarplusw 0.992368 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 b_Down ttbarplusw 1.00835 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf b_Up ttbarplusw 0.971525 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf b_Down ttbarplusw 1.03034 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_Up ttbarplusw 0.977832 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_Down ttbarplusw 1.02339 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 b_Up ttbarplusw 1.00829 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 b_Down ttbarplusw 0.990905 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 b_Up ttbarplusw 0.954242 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 b_Down ttbarplusw 1.05026 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 b_Up ttbarplusw 0.984493 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 b_Down ttbarplusw 1.01664 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf b_Up ttbarplusw 0.951199 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf b_Down ttbarplusw 1.05416 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 b_Up ttbarplusw 0.998888 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 b_Down ttbarplusw 0.998032 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf b_Up ttbarplusw 0.99397 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf b_Down ttbarplusw 1.00642 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 b_Up ttbarplusw 0.989034 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 b_Down ttbarplusw 1.01177 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 b_Up ttbarplusw 0.983152 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 b_Down ttbarplusw 1.01889 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf b_Up ttbarplusw 0.989242 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf b_Down ttbarplusw 1.01219 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 b_Up ttbarplusw 0.957325 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 b_Down ttbarplusw 1.04673 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 b_Up ttbarplusw 0.965964 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 b_Down ttbarplusw 1.03752 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf b_Up ttbarplusw 0.964471 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf b_Down ttbarplusw 1.03818 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 b_Up ttbarplusw 0.989122 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 b_Down ttbarplusw 1.00932 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf b_Up ttbarplusw 0.971049 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf b_Down ttbarplusw 1.03189 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 b_Up ttbarplusw 1.02681 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 b_Down ttbarplusw 0.971567 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf b_Up ttbarplusw 0.940949 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf b_Down ttbarplusw 1.06428 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_Up ttbarplusw 1.01566 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_Down ttbarplusw 0.97752 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 b_Up ttbarplusw 0.981679 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 b_Down ttbarplusw 1.0197 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf b_Up ttbarplusw 0.975872 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf b_Down ttbarplusw 1.02637 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 b_Up ttbarplusw 0.961235 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 b_Down ttbarplusw 1.04131 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf b_Up ttbarplusw 0.995582 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf b_Down ttbarplusw 1.00515 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf b_Up ttbarplusw 1.00099 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf b_Down ttbarplusw 0.999192 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 b_Up ttbarplusw 1.02368 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 b_Down ttbarplusw 0.973981 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 b_Up ttbarplusw 1.00178 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 b_Down ttbarplusw 0.998011 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf b_Up ttbarplusw 0.999458 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf b_Down ttbarplusw 1.00168 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 b_Up ttbarplusw 1.00824 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 b_Down ttbarplusw 0.990819 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 b_Up ttbarplusw 1.04853 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 b_Down ttbarplusw 0.959053 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf b_Up ttbarplusw 1.14268 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf b_Down ttbarplusw 0.844724 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 b_Up ttbarplusw 1.00322 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 b_Down ttbarplusw 0.996183 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 b_Up ttbarplusw 1.04485 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 b_Down ttbarplusw 0.949227 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf b_Up ttbarplusw 1.03714 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf b_Down ttbarplusw 0.94583 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 b_Up ttbarplusw 0.991413 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 b_Down ttbarplusw 1.00924 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 b_Up ttbarplusw 1.01482 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 b_Down ttbarplusw 0.98512 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf b_Up ttbarplusw 1.00251 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf b_Down ttbarplusw 0.99913 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_Up ttbarplusw 0.993394 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_Down ttbarplusw 1.00652 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 b_Up ttbarplusw 1.00719 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 b_Down ttbarplusw 0.992271 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf b_Up ttbarplusw 1.00585 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf b_Down ttbarplusw 0.99196 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_Up ttbarplusw 0.997871 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_Down ttbarplusw 1.00077 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 b_Up ttbarplusw 0.966323 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 b_Down ttbarplusw 1.03618 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf b_Up ttbarplusw 0.988754 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf b_Down ttbarplusw 1.01495 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_Up ttbarplusw 0.969862 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_Down ttbarplusw 1.0289 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 b_Up ttbarplusw 1.00232 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 b_Down ttbarplusw 0.995349 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf b_Up ttbarplusw 0.977553 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf b_Down ttbarplusw 1.01948 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf b_Up ttbarplusw 1.00404 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf b_Down ttbarplusw 0.992104 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 b_Up ttbarplusw 0.993466 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 b_Down ttbarplusw 1.00455 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf b_Up ttbarplusw 1.02471 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf b_Down ttbarplusw 0.971652 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf b_Up ttbarplusw 1.06023 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf b_Down ttbarplusw 0.936301 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf b_Up ttbarplusw 0.984026 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf b_Down ttbarplusw 1.01798 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_Up ttbarplusw 1.04288 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_Down ttbarplusw 0.949936 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 b_Up ttbarplusw 0.989878 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 b_Down ttbarplusw 1.01014 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf b_Up ttbarplusw 0.95847 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf b_Down ttbarplusw 1.04509 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf b_Up ttbarplusw 1.12035 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf b_Down ttbarplusw 0.865182 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_e_Up ttbarplusw 0.943808 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_e_Down ttbarplusw 1.05792 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_e_Up ttbarplusw 0.948677 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_e_Down ttbarplusw 1.05293 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_e_Up ttbarplusw 0.949111 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_e_Down ttbarplusw 1.05248 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_e_Up ttbarplusw 0.948821 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_e_Down ttbarplusw 1.05278 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_e_Up ttbarplusw 0.92968 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_e_Down ttbarplusw 1.07252 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_e_Up ttbarplusw 0.930966 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_e_Down ttbarplusw 1.07128 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_e_Up ttbarplusw 0.928438 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_e_Down ttbarplusw 1.07382 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_e_Up ttbarplusw 0.926799 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_e_Down ttbarplusw 1.07551 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_e_Up ttbarplusw 0.947766 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_e_Down ttbarplusw 1.05388 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_e_Up ttbarplusw 0.951746 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_e_Down ttbarplusw 1.04981 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_e_Up ttbarplusw 0.951827 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_e_Down ttbarplusw 1.04973 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_e_Up ttbarplusw 0.953884 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_e_Down ttbarplusw 1.04758 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_e_Up ttbarplusw 0.92493 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_e_Down ttbarplusw 1.07757 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_e_Up ttbarplusw 0.950977 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_e_Down ttbarplusw 1.05028 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_e_Up ttbarplusw 0.93961 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_e_Down ttbarplusw 1.06263 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_e_Up ttbarplusw 0.93516 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_e_Down ttbarplusw 1.06695 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_e_Up ttbarplusw 0.960733 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_e_Down ttbarplusw 1.04035 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_e_Up ttbarplusw 0.967229 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_e_Down ttbarplusw 1.03355 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_e_Up ttbarplusw 0.959843 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_e_Down ttbarplusw 1.04146 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_e_Up ttbarplusw 0.964951 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_e_Down ttbarplusw 1.03582 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_e_Up ttbarplusw 0.961721 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_e_Down ttbarplusw 1.03929 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_e_Up ttbarplusw 0.965028 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_e_Down ttbarplusw 1.03591 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_e_Up ttbarplusw 0.954022 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_e_Down ttbarplusw 1.04754 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_e_Up ttbarplusw 0.959129 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_e_Down ttbarplusw 1.04208 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_e_Up ttbarplusw 0.957262 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_e_Down ttbarplusw 1.04384 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_e_Up ttbarplusw 0.965862 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_e_Down ttbarplusw 1.03501 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_e_Up ttbarplusw 0.961698 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_e_Down ttbarplusw 1.03921 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_e_Up ttbarplusw 0.960927 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_e_Down ttbarplusw 1.04007 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_e_Up ttbarplusw 0.962374 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_e_Down ttbarplusw 1.03859 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_e_Up ttbarplusw 0.964177 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_e_Down ttbarplusw 1.0367 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_e_Up ttbarplusw 0.961059 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_e_Down ttbarplusw 1.03993 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_e_Up ttbarplusw 0.955563 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_e_Down ttbarplusw 1.04572 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_e_Up ttbarplusw 0.958991 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_e_Down ttbarplusw 1.04204 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_e_Up ttbarplusw 0.959814 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_e_Down ttbarplusw 1.0412 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_e_Up ttbarplusw 0.945633 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_e_Down ttbarplusw 1.05638 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_e_Up ttbarplusw 0.949582 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_e_Down ttbarplusw 1.05179 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_e_Up ttbarplusw 0.952357 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_e_Down ttbarplusw 1.04912 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_e_Up ttbarplusw 0.934961 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_e_Down ttbarplusw 1.06828 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_e_Up ttbarplusw 0.945133 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_e_Down ttbarplusw 1.05645 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_e_Up ttbarplusw 0.953475 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_e_Down ttbarplusw 1.04769 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_e_Up ttbarplusw 0.958308 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_e_Down ttbarplusw 1.04257 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_e_Up ttbarplusw 0.939154 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_e_Down ttbarplusw 1.06239 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_e_Up ttbarplusw 0.935672 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_e_Down ttbarplusw 1.06612 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_e_Up ttbarplusw 0.953793 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_e_Down ttbarplusw 1.04752 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_e_Up ttbarplusw 0.939316 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_e_Down ttbarplusw 1.06203 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_e_Up ttbarplusw 0.937342 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_e_Down ttbarplusw 1.06378 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_e_Up ttbarplusw 0.931019 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_e_Down ttbarplusw 1.07091 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_e_Up ttbarplusw 0.934886 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_e_Down ttbarplusw 1.06693 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_e_Up ttbarplusw 0.948995 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_e_Down ttbarplusw 1.05242 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_e_Up ttbarplusw 0.948583 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_e_Down ttbarplusw 1.05303 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_e_Up ttbarplusw 0.933665 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_e_Down ttbarplusw 1.06791 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_e_Up ttbarplusw 0.942716 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_e_Down ttbarplusw 1.05865 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_e_Up ttbarplusw 0.949757 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_e_Down ttbarplusw 1.05131 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_Up ttbarplusw 0.954336 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_Down ttbarplusw 1.04699 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_Up ttbarplusw 0.957414 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_Down ttbarplusw 1.0438 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_Up ttbarplusw 0.956881 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_Down ttbarplusw 1.04431 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_Up ttbarplusw 0.960459 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_Down ttbarplusw 1.04064 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_Up ttbarplusw 0.954823 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_Down ttbarplusw 1.04649 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_Up ttbarplusw 0.957691 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_Down ttbarplusw 1.0435 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_Up ttbarplusw 0.958833 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_Down ttbarplusw 1.04227 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_Up ttbarplusw 0.959328 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_Down ttbarplusw 1.04188 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_Up ttbarplusw 0.947292 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_Down ttbarplusw 1.05416 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_Up ttbarplusw 0.94476 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_Down ttbarplusw 1.05673 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_Up ttbarplusw 0.946004 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_Down ttbarplusw 1.05543 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_Up ttbarplusw 0.943972 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_Down ttbarplusw 1.05768 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_Up ttbarplusw 0.938701 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_Down ttbarplusw 1.06312 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_Up ttbarplusw 0.939497 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_Down ttbarplusw 1.06223 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_Up ttbarplusw 0.933557 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_Down ttbarplusw 1.06852 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_Up ttbarplusw 0.94552 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_Down ttbarplusw 1.0559 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_Up ttbarplusw 0.956299 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_Down ttbarplusw 1.04497 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_Up ttbarplusw 0.945594 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_Down ttbarplusw 1.05605 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_Up ttbarplusw 0.962796 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_Down ttbarplusw 1.03844 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_Up ttbarplusw 0.957627 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_Down ttbarplusw 1.04352 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_Up ttbarplusw 0.963888 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_Down ttbarplusw 1.03718 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_Up ttbarplusw 0.953879 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_Down ttbarplusw 1.04755 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_Up ttbarplusw 0.953653 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_Down ttbarplusw 1.04764 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_Up ttbarplusw 0.959245 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_Down ttbarplusw 1.0419 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_Up ttbarplusw 0.976192 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_Down ttbarplusw 1.02445 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_e_Up ttbarplusw 0.954447 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_e_Down ttbarplusw 1.04687 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_e_Up ttbarplusw 0.955727 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_e_Down ttbarplusw 1.04557 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_e_Up ttbarplusw 0.951842 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_e_Down ttbarplusw 1.04955 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_e_Up ttbarplusw 0.955235 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_e_Down ttbarplusw 1.04603 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_e_Up ttbarplusw 0.944378 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_e_Down ttbarplusw 1.05713 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_e_Up ttbarplusw 0.968045 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_e_Down ttbarplusw 1.03283 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_e_Up ttbarplusw 0.958354 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_e_Down ttbarplusw 1.04286 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_e_Up ttbarplusw 0.960715 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_e_Down ttbarplusw 1.04044 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_e_Up ttbarplusw 0.962169 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_e_Down ttbarplusw 1.03891 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_e_Up ttbarplusw 0.957268 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_e_Down ttbarplusw 1.04402 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_e_Up ttbarplusw 0.962385 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_e_Down ttbarplusw 1.03886 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_e_Up ttbarplusw 0.959677 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_e_Down ttbarplusw 1.04142 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_e_Up ttbarplusw 0.961443 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_e_Down ttbarplusw 1.03959 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_e_Up ttbarplusw 0.954787 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_e_Down ttbarplusw 1.04641 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_e_Up ttbarplusw 0.960856 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_e_Down ttbarplusw 1.0403 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_e_Up ttbarplusw 0.952865 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_e_Down ttbarplusw 1.04859 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_e_Up ttbarplusw 0.955014 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_e_Down ttbarplusw 1.04626 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_e_Up ttbarplusw 0.948708 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_e_Down ttbarplusw 1.05272 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_e_Up ttbarplusw 0.966251 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_e_Down ttbarplusw 1.03465 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_e_Up ttbarplusw 0.977789 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_e_Down ttbarplusw 1.02283 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_e_Up ttbarplusw 0.950769 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_e_Down ttbarplusw 1.05056 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_e_Up ttbarplusw 0.960041 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_e_Down ttbarplusw 1.04112 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_e_Up ttbarplusw 0.980962 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_e_Down ttbarplusw 1.01961 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_e_Up ttbarplusw 0.962321 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_e_Down ttbarplusw 1.03877 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_e_Up ttbarplusw 0.959207 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_e_Down ttbarplusw 1.04203 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_e_Up ttbarplusw 0.964309 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_e_Down ttbarplusw 1.03672 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_e_Up ttbarplusw 0.963135 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_e_Down ttbarplusw 1.03798 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_Up ttbarplusw 0.958609 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_Down ttbarplusw 1.04258 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_Up ttbarplusw 0.948279 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_Down ttbarplusw 1.05333 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_Up ttbarplusw 0.988055 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_Down ttbarplusw 1.01217 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_Up ttbarplusw 0.954799 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_Down ttbarplusw 1.04659 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_Up ttbarplusw 0.874354 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_Down ttbarplusw 1.12873 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_Up ttbarplusw 0.956582 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_Down ttbarplusw 1.04438 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_Up ttbarplusw 0.961004 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_Down ttbarplusw 1.04014 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_Up ttbarplusw 0.914492 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_Down ttbarplusw 1.08821 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_Up ttbarplusw 0.972102 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_Down ttbarplusw 1.0288 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_e_Up ttbarplusw 0.960791 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_e_Down ttbarplusw 1.04035 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_e_Up ttbarplusw 0.96428 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_e_Down ttbarplusw 1.03672 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_e_Up ttbarplusw 0.945601 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_e_Down ttbarplusw 1.056 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_e_Up ttbarplusw 0.941071 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_e_Down ttbarplusw 1.06073 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_e_Up ttbarplusw 0.950229 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_e_Down ttbarplusw 1.05107 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_e_Up ttbarplusw 0.982839 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_e_Down ttbarplusw 1.01768 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_Up ttbarplusw 0.960857 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_Down ttbarplusw 1.04028 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_e_Up ttbarplusw 0.964796 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_e_Down ttbarplusw 1.03617 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_e_Up ttbarplusw 0.955422 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_e_Down ttbarplusw 1.0459 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_e_Up ttbarplusw 0.947516 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_e_Down ttbarplusw 1.05412 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_e_Up ttbarplusw 0.97732 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_e_Down ttbarplusw 1.02312 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_Up ttbarplusw 0.958404 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_Down ttbarplusw 1.04286 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_e_Up ttbarplusw 0.947968 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_e_Down ttbarplusw 1.05366 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_e_Up ttbarplusw 0.945494 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_e_Down ttbarplusw 1.05622 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_e_Up ttbarplusw 0.967511 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_e_Down ttbarplusw 1.03329 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_e_Up ttbarplusw 0.974846 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_e_Down ttbarplusw 1.02571 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_Up ttbarplusw 0.966722 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_Down ttbarplusw 1.03421 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_e_Up ttbarplusw 0.957743 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_e_Down ttbarplusw 1.04333 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_e_Up ttbarplusw 0.95002 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_e_Down ttbarplusw 1.05229 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_e_Up ttbarplusw 0.948559 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_e_Down ttbarplusw 1.05307 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_e_Up ttbarplusw 0.93162 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_e_Down ttbarplusw 1.0706 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_e_Up ttbarplusw 0.8403 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_e_Down ttbarplusw 1.16432 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_e_Up ttbarplusw 0.991457 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_e_Down ttbarplusw 1.00878 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_e_Up ttbarplusw 0.966978 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_e_Down ttbarplusw 1.03398 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_e_Up ttbarplusw 0.966945 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_e_Down ttbarplusw 1.03398 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_e_Up ttbarplusw 0.963531 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_e_Down ttbarplusw 1.03754 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_e_Up ttbarplusw 0.937898 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_e_Down ttbarplusw 1.064 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_e_Up ttbarplusw 0.977279 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_e_Down ttbarplusw 1.02331 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_e_Up ttbarplusw 0.925294 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_e_Down ttbarplusw 1.07696 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_e_Up ttbarplusw 0.959863 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_e_Down ttbarplusw 1.0413 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_e_Up ttbarplusw 0.974551 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_e_Down ttbarplusw 1.02614 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_e_Up ttbarplusw 0.954983 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_e_Down ttbarplusw 1.04632 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_e_Up ttbarplusw 0.982631 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_e_Down ttbarplusw 1.01788 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_Up ttbarplusw 0.94564 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_Down ttbarplusw 1.05593 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_e_Up ttbarplusw 0.969034 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_e_Down ttbarplusw 1.03186 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_e_Up ttbarplusw 0.975143 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_e_Down ttbarplusw 1.02559 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_e_Up ttbarplusw 0.874277 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_e_Down ttbarplusw 1.1294 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_e_Up ttbarplusw 0.985091 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_e_Down ttbarplusw 1.01536 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_Up ttbarplusw 0.944246 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_Down ttbarplusw 1.05737 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_e_Up ttbarplusw 0.964593 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_e_Down ttbarplusw 1.0363 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_e_Up ttbarplusw 0.956544 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_e_Down ttbarplusw 1.0447 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_e_Up ttbarplusw 0.9758 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_e_Down ttbarplusw 1.02496 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_e_Up ttbarplusw 0.950945 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_e_Down ttbarplusw 1.05051 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_e_Up ttbarplusw 0.968538 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_e_Down ttbarplusw 1.03221 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_e_Up ttbarplusw 0.931846 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_e_Down ttbarplusw 1.07011 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_e_Up ttbarplusw 0.970212 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_e_Down ttbarplusw 1.03058 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_e_Up ttbarplusw 0.958342 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_e_Down ttbarplusw 1.04247 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_e_Up ttbarplusw 0.964423 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_e_Down ttbarplusw 1.03627 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_e_Up ttbarplusw 0.963585 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_e_Down ttbarplusw 1.03735 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_e_Up ttbarplusw 0.935901 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_e_Down ttbarplusw 1.06584 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_e_Up ttbarplusw 0.970006 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_e_Down ttbarplusw 1.03085 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_Up ttbarplusw 0.967248 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_Down ttbarplusw 1.03357 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_e_Up ttbarplusw 0.963761 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_e_Down ttbarplusw 1.03727 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_e_Up ttbarplusw 0.948797 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_e_Down ttbarplusw 1.05281 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_Up ttbarplusw 0.949068 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_Down ttbarplusw 1.05244 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_e_Up ttbarplusw 0.967368 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_e_Down ttbarplusw 1.03341 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_e_Up ttbarplusw 0.974158 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_e_Down ttbarplusw 1.02658 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_Up ttbarplusw 0.946111 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_Down ttbarplusw 1.05532 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_e_Up ttbarplusw 0.959656 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_e_Down ttbarplusw 1.04113 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_e_Up ttbarplusw 0.982767 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_e_Down ttbarplusw 1.01757 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_e_Up ttbarplusw 0.91755 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_e_Down ttbarplusw 1.0846 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_e_Up ttbarplusw 0.974767 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_e_Down ttbarplusw 1.02588 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_e_Up ttbarplusw 0.974185 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_e_Down ttbarplusw 1.02652 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_e_Up ttbarplusw 0.965652 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_e_Down ttbarplusw 1.03524 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_e_Up ttbarplusw 0.891418 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_e_Down ttbarplusw 1.11141 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_Up ttbarplusw 0.690355 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_Down ttbarplusw 1.3177 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_e_Up ttbarplusw 0.951323 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_e_Down ttbarplusw 1.04992 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_e_Up ttbarplusw 0.950838 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_e_Down ttbarplusw 1.0505 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_Up ttbarplusw 0.854894 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_Down ttbarplusw 1.14888 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ISR_Weight_Up ttbarplusw 1.00011 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ISR_Weight_Down ttbarplusw 0.999833 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ISR_Weight_Up ttbarplusw 1.0001 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ISR_Weight_Down ttbarplusw 0.999846 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ISR_Weight_Up ttbarplusw 1.00015 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ISR_Weight_Down ttbarplusw 0.999758 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ISR_Weight_Up ttbarplusw 0.999982 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ISR_Weight_Down ttbarplusw 1.00003 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ISR_Weight_Up ttbarplusw 1.00243 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ISR_Weight_Down ttbarplusw 0.996263 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ISR_Weight_Up ttbarplusw 1.00043 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ISR_Weight_Down ttbarplusw 0.999201 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ISR_Weight_Up ttbarplusw 1.00007 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ISR_Weight_Down ttbarplusw 0.999732 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ISR_Weight_Up ttbarplusw 1.00165 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ISR_Weight_Down ttbarplusw 0.99728 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ISR_Weight_Up ttbarplusw 1.00014 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ISR_Weight_Down ttbarplusw 0.99976 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ISR_Weight_Up ttbarplusw 0.999505 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ISR_Weight_Down ttbarplusw 1.00078 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ISR_Weight_Up ttbarplusw 0.999698 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ISR_Weight_Down ttbarplusw 1.00049 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ISR_Weight_Up ttbarplusw 1.00043 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ISR_Weight_Down ttbarplusw 0.999333 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ISR_Weight_Up ttbarplusw 0.999757 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ISR_Weight_Down ttbarplusw 1.0004 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ISR_Weight_Up ttbarplusw 1.0194 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ISR_Weight_Down ttbarplusw 0.968695 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ISR_Weight_Up ttbarplusw 1.02855 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ISR_Weight_Down ttbarplusw 0.961477 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ISR_Weight_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ISR_Weight_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ISR_Weight_Up ttbarplusw 1.00049 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ISR_Weight_Down ttbarplusw 0.999213 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ISR_Weight_Up ttbarplusw 0.999449 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ISR_Weight_Down ttbarplusw 1.00081 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ISR_Weight_Up ttbarplusw 1.00175 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ISR_Weight_Down ttbarplusw 0.997264 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ISR_Weight_Up ttbarplusw 1.00384 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ISR_Weight_Down ttbarplusw 0.994636 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ISR_Weight_Up ttbarplusw 0.999684 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ISR_Weight_Down ttbarplusw 1.00036 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ISR_Weight_Up ttbarplusw 0.997572 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ISR_Weight_Down ttbarplusw 1.00361 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ISR_Weight_Up ttbarplusw 1.00422 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ISR_Weight_Down ttbarplusw 0.993449 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ISR_Weight_Up ttbarplusw 0.992302 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ISR_Weight_Down ttbarplusw 1.01313 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ISR_Weight_Up ttbarplusw 1.0013 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ISR_Weight_Down ttbarplusw 0.997972 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ISR_Weight_Up ttbarplusw 1.00004 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ISR_Weight_Down ttbarplusw 0.999713 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ISR_Weight_Up ttbarplusw 0.999886 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ISR_Weight_Down ttbarplusw 1.00018 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ISR_Weight_Up ttbarplusw 1.00075 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ISR_Weight_Down ttbarplusw 0.998964 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ISR_Weight_Up ttbarplusw 1.00074 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ISR_Weight_Down ttbarplusw 0.998597 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ISR_Weight_Up ttbarplusw 0.999137 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ISR_Weight_Down ttbarplusw 1.00125 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ISR_Weight_Up ttbarplusw 0.999895 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ISR_Weight_Down ttbarplusw 0.999511 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ISR_Weight_Up ttbarplusw 1.00036 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ISR_Weight_Down ttbarplusw 0.999416 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ISR_Weight_Up ttbarplusw 1.00076 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ISR_Weight_Down ttbarplusw 0.998852 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ISR_Weight_Up ttbarplusw 1.00345 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ISR_Weight_Down ttbarplusw 0.994926 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ISR_Weight_Up ttbarplusw 0.998122 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ISR_Weight_Down ttbarplusw 1.00269 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ISR_Weight_Up ttbarplusw 1.00046 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ISR_Weight_Down ttbarplusw 0.998933 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ISR_Weight_Up ttbarplusw 0.997314 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ISR_Weight_Down ttbarplusw 1.00381 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ISR_Weight_Up ttbarplusw 1.00592 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ISR_Weight_Down ttbarplusw 0.990354 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ISR_Weight_Up ttbarplusw 1.00189 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ISR_Weight_Down ttbarplusw 0.996748 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ISR_Weight_Up ttbarplusw 0.99783 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ISR_Weight_Down ttbarplusw 1.00307 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ISR_Weight_Up ttbarplusw 1.00569 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ISR_Weight_Down ttbarplusw 0.98945 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ISR_Weight_Up ttbarplusw 0.996802 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ISR_Weight_Down ttbarplusw 1.00453 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ISR_Weight_Up ttbarplusw 1.00441 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ISR_Weight_Down ttbarplusw 0.992204 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ISR_Weight_Up ttbarplusw 0.987809 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ISR_Weight_Down ttbarplusw 1.02252 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ISR_Weight_Up ttbarplusw 1.00421 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ISR_Weight_Down ttbarplusw 0.992622 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ISR_Weight_Up ttbarplusw 0.997059 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ISR_Weight_Down ttbarplusw 1.00439 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ISR_Weight_Up ttbarplusw 1.00015 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ISR_Weight_Down ttbarplusw 0.999768 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ISR_Weight_Up ttbarplusw 0.999578 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ISR_Weight_Down ttbarplusw 1.00036 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ISR_Weight_Up ttbarplusw 1.00408 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ISR_Weight_Down ttbarplusw 0.992606 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ISR_Weight_Up ttbarplusw 1.00433 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ISR_Weight_Down ttbarplusw 0.991301 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ISR_Weight_Up ttbarplusw 0.99813 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ISR_Weight_Down ttbarplusw 1.00205 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ISR_Weight_Up ttbarplusw 0.995185 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ISR_Weight_Down ttbarplusw 1.00838 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ISR_Weight_Up ttbarplusw 0.997438 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ISR_Weight_Down ttbarplusw 1.00487 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ISR_Weight_Up ttbarplusw 1.00162 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ISR_Weight_Down ttbarplusw 0.996432 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ISR_Weight_Up ttbarplusw 1.00259 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ISR_Weight_Down ttbarplusw 0.994996 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ISR_Weight_Up ttbarplusw 1.00317 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ISR_Weight_Down ttbarplusw 0.993666 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ISR_Weight_Up ttbarplusw 1.01799 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ISR_Weight_Down ttbarplusw 0.969135 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ISR_Weight_Up ttbarplusw 0.998367 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ISR_Weight_Down ttbarplusw 1.00232 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ISR_Weight_Up ttbarplusw 1.00162 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ISR_Weight_Down ttbarplusw 0.996425 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ISR_Weight_Up ttbarplusw 0.998325 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ISR_Weight_Down ttbarplusw 1.00232 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ISR_Weight_Up ttbarplusw 1.01062 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ISR_Weight_Down ttbarplusw 0.981027 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ISR_Weight_Up ttbarplusw 0.992847 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ISR_Weight_Down ttbarplusw 1.01244 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ISR_Weight_Up ttbarplusw 0.99914 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ISR_Weight_Down ttbarplusw 1.00181 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ISR_Weight_Up ttbarplusw 0.997459 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ISR_Weight_Down ttbarplusw 1.00499 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ISR_Weight_Up ttbarplusw 0.997878 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ISR_Weight_Down ttbarplusw 1.00368 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ISR_Weight_Up ttbarplusw 1.00036 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ISR_Weight_Down ttbarplusw 1.00066 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ISR_Weight_Up ttbarplusw 1.00237 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ISR_Weight_Down ttbarplusw 0.99789 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ISR_Weight_Up ttbarplusw 0.9963 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ISR_Weight_Down ttbarplusw 1.00698 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ISR_Weight_Up ttbarplusw 1.00313 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ISR_Weight_Down ttbarplusw 0.995252 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ISR_Weight_Up ttbarplusw 1.0121 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ISR_Weight_Down ttbarplusw 0.978903 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ISR_Weight_Up ttbarplusw 1.01074 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ISR_Weight_Down ttbarplusw 0.981819 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ISR_Weight_Up ttbarplusw 1.01557 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ISR_Weight_Down ttbarplusw 0.974539 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ISR_Weight_Up ttbarplusw 1.00898 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ISR_Weight_Down ttbarplusw 0.983773 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ISR_Weight_Up ttbarplusw 1.02421 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ISR_Weight_Down ttbarplusw 0.959123 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ISR_Weight_Up ttbarplusw 1.03284 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ISR_Weight_Down ttbarplusw 0.945142 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ISR_Weight_Up ttbarplusw 1.01 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ISR_Weight_Down ttbarplusw 0.982857 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ISR_Weight_Up ttbarplusw 1.00126 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ISR_Weight_Down ttbarplusw 0.997024 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ISR_Weight_Up ttbarplusw 1.01634 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ISR_Weight_Down ttbarplusw 0.973171 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ISR_Weight_Up ttbarplusw 1.02754 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ISR_Weight_Down ttbarplusw 0.95262 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ISR_Weight_Up ttbarplusw 1.0194 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ISR_Weight_Down ttbarplusw 0.967301 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ISR_Weight_Up ttbarplusw 1.01451 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ISR_Weight_Down ttbarplusw 0.976265 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ISR_Weight_Up ttbarplusw 1.00251 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ISR_Weight_Down ttbarplusw 0.997634 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ISR_Weight_Up ttbarplusw 0.999187 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ISR_Weight_Down ttbarplusw 1.00058 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ISR_Weight_Up ttbarplusw 0.995912 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ISR_Weight_Down ttbarplusw 1.00629 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ISR_Weight_Up ttbarplusw 1.01277 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ISR_Weight_Down ttbarplusw 0.977867 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ISR_Weight_Up ttbarplusw 1.01323 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ISR_Weight_Down ttbarplusw 0.97726 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ISR_Weight_Up ttbarplusw 1.01696 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ISR_Weight_Down ttbarplusw 0.971628 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ISR_Weight_Up ttbarplusw 1.02331 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ISR_Weight_Down ttbarplusw 0.961305 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ISR_Weight_Up ttbarplusw 1.01711 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ISR_Weight_Down ttbarplusw 0.972028 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ISR_Weight_Up ttbarplusw 1.01213 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ISR_Weight_Down ttbarplusw 0.978273 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ISR_Weight_Up ttbarplusw 1.01578 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ISR_Weight_Down ttbarplusw 0.972685 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ISR_Weight_Up ttbarplusw 1.01423 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ISR_Weight_Down ttbarplusw 0.97575 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ISR_Weight_Up ttbarplusw 1.0276 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ISR_Weight_Down ttbarplusw 0.9543 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ISR_Weight_Up ttbarplusw 1.01893 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ISR_Weight_Down ttbarplusw 0.969096 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ISR_Weight_Up ttbarplusw 1.02052 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ISR_Weight_Down ttbarplusw 0.96556 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ISR_Weight_Up ttbarplusw 1.00255 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ISR_Weight_Down ttbarplusw 0.996139 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ISR_Weight_Up ttbarplusw 1.01123 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ISR_Weight_Down ttbarplusw 0.983437 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ISR_Weight_Up ttbarplusw 1.00092 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ISR_Weight_Down ttbarplusw 0.997593 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ISR_Weight_Up ttbarplusw 0.99343 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ISR_Weight_Down ttbarplusw 1.01079 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ISR_Weight_Up ttbarplusw 1.0486 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ISR_Weight_Down ttbarplusw 0.916399 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ISR_Weight_Up ttbarplusw 1.02913 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ISR_Weight_Down ttbarplusw 0.951329 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ISR_Weight_Up ttbarplusw 1.02532 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ISR_Weight_Down ttbarplusw 0.956142 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ISR_Weight_Up ttbarplusw 1.03151 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ISR_Weight_Down ttbarplusw 0.947367 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ISR_Weight_Up ttbarplusw 1.03498 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ISR_Weight_Down ttbarplusw 0.939986 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ISR_Weight_Up ttbarplusw 1.12683 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ISR_Weight_Down ttbarplusw 0.789173 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ISR_Weight_Up ttbarplusw 1.00878 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ISR_Weight_Down ttbarplusw 0.984247 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ISR_Weight_Up ttbarplusw 0.996944 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ISR_Weight_Down ttbarplusw 1.00504 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ISR_Weight_Up ttbarplusw 1.0054 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ISR_Weight_Down ttbarplusw 0.994079 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ISR_Weight_Up ttbarplusw 1.00523 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ISR_Weight_Down ttbarplusw 0.989491 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ISR_Weight_Up ttbarplusw 1.0004 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ISR_Weight_Down ttbarplusw 0.997434 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ISR_Weight_Up ttbarplusw 1.04992 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ISR_Weight_Down ttbarplusw 0.915997 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ISR_Weight_Up ttbarplusw 1.0093 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ISR_Weight_Down ttbarplusw 0.982081 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ISR_Weight_Up ttbarplusw 1.10219 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ISR_Weight_Down ttbarplusw 0.824207 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ISR_Weight_Up ttbarplusw 1.00923 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ISR_Weight_Down ttbarplusw 0.983877 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ISR_Weight_Up ttbarplusw 1.02177 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ISR_Weight_Down ttbarplusw 0.962669 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ISR_Weight_Up ttbarplusw 1.01067 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ISR_Weight_Down ttbarplusw 0.98107 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ISR_Weight_Up ttbarplusw 1.03196 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ISR_Weight_Down ttbarplusw 0.94605 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ISR_Weight_Up ttbarplusw 1.00026 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ISR_Weight_Down ttbarplusw 1.001 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ISR_Weight_Up ttbarplusw 1.04587 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ISR_Weight_Down ttbarplusw 0.919682 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ISR_Weight_Up ttbarplusw 0.995672 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ISR_Weight_Down ttbarplusw 1.00534 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ISR_Weight_Up ttbarplusw 1.01073 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ISR_Weight_Down ttbarplusw 0.981392 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ISR_Weight_Up ttbarplusw 1.01038 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ISR_Weight_Down ttbarplusw 0.982319 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ISR_Weight_Up ttbarplusw 1.01305 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ISR_Weight_Down ttbarplusw 0.978561 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ISR_Weight_Up ttbarplusw 1.01107 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ISR_Weight_Down ttbarplusw 0.981727 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ISR_Weight_Up ttbarplusw 1.01401 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ISR_Weight_Down ttbarplusw 0.977069 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ISR_Weight_Up ttbarplusw 1.01399 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ISR_Weight_Down ttbarplusw 0.975237 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ISR_Weight_Up ttbarplusw 1.01247 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ISR_Weight_Down ttbarplusw 0.979684 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ISR_Weight_Up ttbarplusw 1.0198 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ISR_Weight_Down ttbarplusw 0.964416 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ISR_Weight_Up ttbarplusw 1.00548 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ISR_Weight_Down ttbarplusw 0.988832 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ISR_Weight_Up ttbarplusw 0.987558 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ISR_Weight_Down ttbarplusw 1.01992 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ISR_Weight_Up ttbarplusw 1.022 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ISR_Weight_Down ttbarplusw 0.960317 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ISR_Weight_Up ttbarplusw 1.00667 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ISR_Weight_Down ttbarplusw 0.986082 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ISR_Weight_Up ttbarplusw 1.00105 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ISR_Weight_Down ttbarplusw 0.996339 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ISR_Weight_Up ttbarplusw 0.978742 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ISR_Weight_Down ttbarplusw 1.03483 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ISR_Weight_Up ttbarplusw 0.988101 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ISR_Weight_Down ttbarplusw 1.01904 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ISR_Weight_Up ttbarplusw 0.979538 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ISR_Weight_Down ttbarplusw 1.03388 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ISR_Weight_Up ttbarplusw 0.987949 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ISR_Weight_Down ttbarplusw 1.01938 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ISR_Weight_Up ttbarplusw 1.00311 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ISR_Weight_Down ttbarplusw 0.994898 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ISR_Weight_Up ttbarplusw 1.00649 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ISR_Weight_Down ttbarplusw 0.988174 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ISR_Weight_Up ttbarplusw 1.00886 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ISR_Weight_Down ttbarplusw 0.984648 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ISR_Weight_Up ttbarplusw 1.00071 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ISR_Weight_Down ttbarplusw 0.996936 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ISR_Weight_Up ttbarplusw 0.97743 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ISR_Weight_Down ttbarplusw 1.03683 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ISR_Weight_Up ttbarplusw 1.09784 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ISR_Weight_Down ttbarplusw 0.833028 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ISR_Weight_Up ttbarplusw 1.04317 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ISR_Weight_Down ttbarplusw 0.926794 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ISR_Weight_Up ttbarplusw 0.987949 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ISR_Weight_Down ttbarplusw 1.01938 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ISR_Weight_Up ttbarplusw 0.979243 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ISR_Weight_Down ttbarplusw 1.0344 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ISR_Weight_Up ttbarplusw 0.986066 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ISR_Weight_Down ttbarplusw 1.02255 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ISR_Weight_Up ttbarplusw 0.97976 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ISR_Weight_Down ttbarplusw 1.03349 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ISR_Weight_Up ttbarplusw 1.02086 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ISR_Weight_Down ttbarplusw 0.96474 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ISR_Weight_Up ttbarplusw 0.996755 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ISR_Weight_Down ttbarplusw 1.00487 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ISR_Weight_Up ttbarplusw 1.10488 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ISR_Weight_Down ttbarplusw 0.816998 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ISR_Weight_Up ttbarplusw 0.982741 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ISR_Weight_Down ttbarplusw 1.02715 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ISR_Weight_Up ttbarplusw 0.97976 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ISR_Weight_Down ttbarplusw 1.03349 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ISR_Weight_Up ttbarplusw 1.01414 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ISR_Weight_Down ttbarplusw 0.974079 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ISR_Weight_Up ttbarplusw 0.998375 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ISR_Weight_Down ttbarplusw 1.0015 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ISR_Weight_Up ttbarplusw 1.01604 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ISR_Weight_Down ttbarplusw 0.973691 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ISR_Weight_Up ttbarplusw 1.0015 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ISR_Weight_Down ttbarplusw 0.99491 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ISR_Weight_Up ttbarplusw 1.00039 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ISR_Weight_Down ttbarplusw 0.997898 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ISR_Weight_Up ttbarplusw 0.987605 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ISR_Weight_Down ttbarplusw 1.02067 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ISR_Weight_Up ttbarplusw 1.00239 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ISR_Weight_Down ttbarplusw 0.991746 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ISR_Weight_Up ttbarplusw 0.972168 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ISR_Weight_Down ttbarplusw 1.04927 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ISR_Weight_Up ttbarplusw 1.13043 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ISR_Weight_Down ttbarplusw 0.768626 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ISR_Weight_Up ttbarplusw 1.01757 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ISR_Weight_Down ttbarplusw 0.968242 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ISR_Weight_Up ttbarplusw 1.01743 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ISR_Weight_Down ttbarplusw 0.973127 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ISR_Weight_Up ttbarplusw 1.01845 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ISR_Weight_Down ttbarplusw 0.969183 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ISR_Weight_Up ttbarplusw 1.00519 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ISR_Weight_Down ttbarplusw 0.990403 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ISR_Weight_Up ttbarplusw 1.00257 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ISR_Weight_Down ttbarplusw 0.994734 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ISR_Weight_Up ttbarplusw 1.01521 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ISR_Weight_Down ttbarplusw 0.977601 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ISR_Weight_Up ttbarplusw 1.0217 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ISR_Weight_Down ttbarplusw 0.962588 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ISR_Weight_Up ttbarplusw 1.00405 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ISR_Weight_Down ttbarplusw 0.991472 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ISR_Weight_Up ttbarplusw 1.03933 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ISR_Weight_Down ttbarplusw 0.934412 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ISR_Weight_Up ttbarplusw 0.99737 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ISR_Weight_Down ttbarplusw 1.00593 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ISR_Weight_Up ttbarplusw 1.04994 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ISR_Weight_Down ttbarplusw 0.909041 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ISR_Weight_Up ttbarplusw 1.02553 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ISR_Weight_Down ttbarplusw 0.964733 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ISR_Weight_Up ttbarplusw 1.05556 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ISR_Weight_Down ttbarplusw 0.90173 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ISR_Weight_Up ttbarplusw 0.971388 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ISR_Weight_Down ttbarplusw 1.04858 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ISR_Weight_Up ttbarplusw 0.991169 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ISR_Weight_Down ttbarplusw 1.01409 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ISR_Weight_Up ttbarplusw 1.01955 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ISR_Weight_Down ttbarplusw 0.964519 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ISR_Weight_Up ttbarplusw 1.02724 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ISR_Weight_Down ttbarplusw 0.951113 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ISR_Weight_Up ttbarplusw 0.970952 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ISR_Weight_Down ttbarplusw 1.04926 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ISR_Weight_Up ttbarplusw 1.01227 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ISR_Weight_Down ttbarplusw 0.977078 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ISR_Weight_Up ttbarplusw 1.02949 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ISR_Weight_Down ttbarplusw 0.952326 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ISR_Weight_Up ttbarplusw 0.970952 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ISR_Weight_Down ttbarplusw 1.04926 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_Up ttbarplusw 1.00074 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_Down ttbarplusw 0.995608 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_Up ttbarplusw 1.00037 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_Down ttbarplusw 0.993605 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_Up ttbarplusw 0.999816 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_Down ttbarplusw 0.994544 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_Up ttbarplusw 1.00113 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_Down ttbarplusw 0.996533 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_Up ttbarplusw 1.00135 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_Down ttbarplusw 0.997949 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_Up ttbarplusw 0.995193 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_Down ttbarplusw 1.00049 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_Up ttbarplusw 1.00188 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_Down ttbarplusw 1.00002 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_Up ttbarplusw 0.988335 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_Down ttbarplusw 1.00668 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_Up ttbarplusw 0.988186 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_Down ttbarplusw 0.9952 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_Up ttbarplusw 0.999588 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_Down ttbarplusw 0.996962 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 JES_Up ttbarplusw 0.998743 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 JES_Down ttbarplusw 0.994632 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf JES_Up ttbarplusw 1.00236 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf JES_Down ttbarplusw 1.00089 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 JES_Up ttbarplusw 1.0001 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 JES_Down ttbarplusw 1.00168 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 JES_Up ttbarplusw 1.02011 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 JES_Down ttbarplusw 0.999763 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 JES_Up ttbarplusw 1.09786 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 JES_Down ttbarplusw 1.00703 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf JES_Up ttbarplusw 1.00104 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf JES_Down ttbarplusw 1.00379 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_Up ttbarplusw 1.00331 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_Down ttbarplusw 0.98804 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 JES_Up ttbarplusw 1.00284 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 JES_Down ttbarplusw 1.00674 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 JES_Up ttbarplusw 0.993986 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 JES_Down ttbarplusw 0.999687 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf JES_Up ttbarplusw 1.00509 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf JES_Down ttbarplusw 0.985362 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_Up ttbarplusw 0.999837 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_Down ttbarplusw 1.00019 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 JES_Up ttbarplusw 0.994512 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 JES_Down ttbarplusw 1.00107 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 JES_Up ttbarplusw 1.0018 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 JES_Down ttbarplusw 0.994553 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf JES_Up ttbarplusw 1.08982 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf JES_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_Up ttbarplusw 1.00051 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_Down ttbarplusw 0.994876 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_Up ttbarplusw 1.00134 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_Down ttbarplusw 0.985487 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 JES_Up ttbarplusw 1.00275 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 JES_Down ttbarplusw 0.991887 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf JES_Up ttbarplusw 0.996836 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf JES_Down ttbarplusw 1.00325 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_Up ttbarplusw 1.0015 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_Down ttbarplusw 0.998739 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_Up ttbarplusw 0.997713 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_Down ttbarplusw 1.00394 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 JES_Up ttbarplusw 1.00318 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 JES_Down ttbarplusw 0.999465 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf JES_Up ttbarplusw 1.002 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf JES_Down ttbarplusw 1.00098 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_Up ttbarplusw 0.993578 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_Down ttbarplusw 0.994021 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 JES_Up ttbarplusw 1.00269 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 JES_Down ttbarplusw 0.972835 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf JES_Up ttbarplusw 0.992121 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf JES_Down ttbarplusw 0.998327 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 JES_Up ttbarplusw 1.00028 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 JES_Down ttbarplusw 0.999873 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 JES_Up ttbarplusw 1.0058 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 JES_Down ttbarplusw 1.00074 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf JES_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf JES_Down ttbarplusw 0.998137 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_Up ttbarplusw 1.00171 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_Down ttbarplusw 0.997796 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 JES_Up ttbarplusw 1.00511 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 JES_Down ttbarplusw 0.997027 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf JES_Up ttbarplusw 1.00489 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf JES_Down ttbarplusw 0.981217 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_Up ttbarplusw 1.00222 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_Down ttbarplusw 0.993796 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 JES_Up ttbarplusw 0.999911 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 JES_Down ttbarplusw 0.996197 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf JES_Up ttbarplusw 0.997481 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf JES_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 JES_Up ttbarplusw 1.00492 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 JES_Down ttbarplusw 0.995171 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 JES_Up ttbarplusw 1.00297 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 JES_Down ttbarplusw 0.999283 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf JES_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf JES_Down ttbarplusw 1.01676 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 JES_Up ttbarplusw 0.999523 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 JES_Down ttbarplusw 1.00155 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 JES_Up ttbarplusw 0.995859 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 JES_Down ttbarplusw 0.997665 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf JES_Up ttbarplusw 0.982739 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf JES_Down ttbarplusw 0.980249 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_Up ttbarplusw 1.00256 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_Down ttbarplusw 0.999566 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 JES_Up ttbarplusw 1.00021 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 JES_Down ttbarplusw 1.02288 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf JES_Up ttbarplusw 1.00546 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf JES_Down ttbarplusw 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Up ttbarplusw 1.00124 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Down ttbarplusw 0.996146 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Up ttbarplusw 1.00173 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Down ttbarplusw 0.999702 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Up ttbarplusw 1.00536 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Down ttbarplusw 1.00207 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Up ttbarplusw 1.00238 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Down ttbarplusw 1.01086 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Up ttbarplusw 1.00277 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Down ttbarplusw 0.989772 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Up ttbarplusw 1.00073 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Down ttbarplusw 0.997004 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Up ttbarplusw 0.99827 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Down ttbarplusw 1.00344 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Up ttbarplusw 1.00372 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Down ttbarplusw 0.996643 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_Up ttbarplusw 0.997025 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_Down ttbarplusw 1.00457 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_Up ttbarplusw 1.00165 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_Down ttbarplusw 1.00154 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_Up ttbarplusw 0.999612 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_Down ttbarplusw 0.996428 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_Up ttbarplusw 0.992097 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_Down ttbarplusw 0.996781 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_Up ttbarplusw 0.995466 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_Down ttbarplusw 0.993582 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_Up ttbarplusw 0.989909 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_Down ttbarplusw 1.0007 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_Up ttbarplusw 1.00616 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_Down ttbarplusw 0.997712 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_Up ttbarplusw 1.00406 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_Down ttbarplusw 0.998879 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 JES_Up ttbarplusw 0.996416 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 JES_Down ttbarplusw 1.0392 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 JES_Up ttbarplusw 1.00435 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 JES_Down ttbarplusw 0.995948 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf JES_Up ttbarplusw 1.00129 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf JES_Down ttbarplusw 0.999438 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_Up ttbarplusw 0.999472 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_Down ttbarplusw 1.00333 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_Up ttbarplusw 1.00197 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_Down ttbarplusw 1.00113 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_Up ttbarplusw 1.00207 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_Down ttbarplusw 0.990857 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 JES_Up ttbarplusw 0.999333 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 JES_Down ttbarplusw 0.959291 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 JES_Up ttbarplusw 1.00097 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 JES_Down ttbarplusw 0.999399 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf JES_Up ttbarplusw 0.991419 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf JES_Down ttbarplusw 0.99912 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 JES_Up ttbarplusw 0.998477 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 JES_Down ttbarplusw 1.01806 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 JES_Up ttbarplusw 1.00416 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 JES_Down ttbarplusw 1.00117 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf JES_Up ttbarplusw 1.00376 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf JES_Down ttbarplusw 0.995769 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 JES_Up ttbarplusw 1.00707 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 JES_Down ttbarplusw 1.02267 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 JES_Up ttbarplusw 1.00185 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 JES_Down ttbarplusw 1.00032 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf JES_Up ttbarplusw 1.00097 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf JES_Down ttbarplusw 0.993931 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 JES_Up ttbarplusw 1.00037 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 JES_Down ttbarplusw 0.993111 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 JES_Up ttbarplusw 1.00138 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 JES_Down ttbarplusw 0.99931 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 JES_Up ttbarplusw 0.997069 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 JES_Down ttbarplusw 0.996295 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 JES_Up ttbarplusw 1.00435 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 JES_Down ttbarplusw 0.995948 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf JES_Up ttbarplusw 1.00129 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf JES_Down ttbarplusw 0.999438 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 JES_Up ttbarplusw 0.99539 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 JES_Down ttbarplusw 1.01691 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 JES_Up ttbarplusw 1.0038 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 JES_Down ttbarplusw 0.996495 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 JES_Up ttbarplusw 0.998882 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 JES_Down ttbarplusw 0.993737 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 JES_Up ttbarplusw 1.00197 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 JES_Down ttbarplusw 0.99952 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf JES_Up ttbarplusw 1.00207 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf JES_Down ttbarplusw 0.9927 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 JES_Up ttbarplusw 1.00872 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 JES_Down ttbarplusw 0.955485 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 JES_Up ttbarplusw 1.00472 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 JES_Down ttbarplusw 1.00164 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 JES_Up ttbarplusw 1.00075 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 JES_Down ttbarplusw 0.990586 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 JES_Up ttbarplusw 0.92076 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 JES_Down ttbarplusw 0.997485 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf JES_Up ttbarplusw 1.00057 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf JES_Down ttbarplusw 0.999535 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 JES_Up ttbarplusw 1.00222 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 JES_Down ttbarplusw 1.01409 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf JES_Up ttbarplusw 1.00266 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf JES_Down ttbarplusw 0.996364 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 JES_Up ttbarplusw 1.0032 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 JES_Down ttbarplusw 1.06051 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf JES_Up ttbarplusw 1.00266 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf JES_Down ttbarplusw 0.996364 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 JES_Up ttbarplusw 0.997092 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 JES_Down ttbarplusw 1.00205 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf JES_Up ttbarplusw 1.00266 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf JES_Down ttbarplusw 0.996364 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 JES_Up ttbarplusw 0.99834 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 JES_Down ttbarplusw 1.04285 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 JES_Up ttbarplusw 0.998309 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 JES_Down ttbarplusw 1.01385 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf JES_Up ttbarplusw 1.00015 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf JES_Down ttbarplusw 0.993457 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_Up ttbarplusw 0.997836 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_Down ttbarplusw 0.996059 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_Up ttbarplusw 1.00113 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_Up ttbarplusw 0.999691 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_Down ttbarplusw 0.995136 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 JES_Up ttbarplusw 1.00673 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 JES_Down ttbarplusw 0.995561 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 JES_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 JES_Down ttbarplusw 0.999754 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf JES_Up ttbarplusw 1.02518 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf JES_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 JES_Up ttbarplusw 0.985133 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 JES_Down ttbarplusw 1.00651 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 JES_Up ttbarplusw 1.00309 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 JES_Down ttbarplusw 0.99621 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf JES_Up ttbarplusw 1.00177 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf JES_Down ttbarplusw 0.993078 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 JES_Up ttbarplusw 1.00785 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 JES_Down ttbarplusw 1.02214 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 JES_Up ttbarplusw 1.0002 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 JES_Down ttbarplusw 0.999234 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf JES_Up ttbarplusw 1.00722 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf JES_Down ttbarplusw 0.99956 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_Up ttbarplusw 0.998923 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_Down ttbarplusw 0.985073 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 JES_Up ttbarplusw 1.0011 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 JES_Down ttbarplusw 0.99585 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 JES_Up ttbarplusw 0.99651 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 JES_Down ttbarplusw 0.996794 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 JES_Up ttbarplusw 0.999972 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 JES_Down ttbarplusw 0.973726 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf JES_Up ttbarplusw 1.00015 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf JES_Down ttbarplusw 0.993457 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_Up ttbarplusw 1.0005 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_Down ttbarplusw 0.98402 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 JES_Up ttbarplusw 1.00297 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 JES_Down ttbarplusw 1.01265 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 JES_Up ttbarplusw 1.00861 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 JES_Down ttbarplusw 0.997695 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 JES_Up ttbarplusw 1.00113 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 JES_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf JES_Up ttbarplusw 1.00255 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf JES_Down ttbarplusw 0.995136 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_Up ttbarplusw 0.973286 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_Down ttbarplusw 0.995332 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 JES_Up ttbarplusw 0.999651 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 JES_Down ttbarplusw 0.999927 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 JES_Up ttbarplusw 1.00529 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 JES_Down ttbarplusw 0.999819 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 JES_Up ttbarplusw 1.00668 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 JES_Down ttbarplusw 0.999754 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf JES_Up ttbarplusw 1.00629 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf JES_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 JES_Up ttbarplusw 0.935981 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 JES_Down ttbarplusw 1.03189 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf JES_Up ttbarplusw 1.0027 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf JES_Down ttbarplusw 0.98884 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 JES_Up ttbarplusw 1.00418 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 JES_Down ttbarplusw 1.00971 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 JES_Up ttbarplusw 0.995561 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 JES_Down ttbarplusw 0.99621 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf JES_Up ttbarplusw 1.00177 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf JES_Down ttbarplusw 0.993078 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 JES_Up ttbarplusw 1.00785 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 JES_Down ttbarplusw 1.02116 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 JES_Up ttbarplusw 1.0002 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 JES_Down ttbarplusw 0.999234 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf JES_Up ttbarplusw 1.00722 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf JES_Down ttbarplusw 0.99956 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 JES_Up ttbarplusw 1.00445 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 JES_Down ttbarplusw 1.02647 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf JES_Up ttbarplusw 1.0027 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf JES_Down ttbarplusw 0.98884 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 JES_Up ttbarplusw 0.997245 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 JES_Down ttbarplusw 1.05059 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf JES_Up ttbarplusw 1.00262 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf JES_Down ttbarplusw 0.994084 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_Up ttbarplusw 1.00393 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_Down ttbarplusw 1.04606 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 JES_Up ttbarplusw 1.00363 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 JES_Down ttbarplusw 0.97886 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf JES_Up ttbarplusw 1.00177 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf JES_Down ttbarplusw 1.00632 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 JES_Up ttbarplusw 1.00559 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 JES_Down ttbarplusw 0.967363 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf JES_Up ttbarplusw 1.00722 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf JES_Down ttbarplusw 0.99956 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf JES_Up ttbarplusw 1.00393 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf JES_Down ttbarplusw 1.06016 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 JES_Up ttbarplusw 1.00624 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 JES_Down ttbarplusw 1.02338 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 JES_Up ttbarplusw 1.00151 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 JES_Down ttbarplusw 0.997354 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf JES_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf JES_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 JES_Up ttbarplusw 1.00421 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 JES_Down ttbarplusw 0.963539 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 JES_Up ttbarplusw 1.00442 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 JES_Down ttbarplusw 0.998995 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf JES_Up ttbarplusw 1.00094 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf JES_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 JES_Up ttbarplusw 1.00595 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 JES_Down ttbarplusw 1.08084 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 JES_Up ttbarplusw 1.00015 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 JES_Down ttbarplusw 0.999114 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf JES_Up ttbarplusw 1.00004 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf JES_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 JES_Up ttbarplusw 0.988333 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 JES_Down ttbarplusw 0.978795 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 JES_Up ttbarplusw 1.00183 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 JES_Down ttbarplusw 0.997764 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf JES_Up ttbarplusw 1.00033 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf JES_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_Up ttbarplusw 1.00331 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_Down ttbarplusw 0.991379 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 JES_Up ttbarplusw 0.996522 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 JES_Down ttbarplusw 0.997354 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf JES_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf JES_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_Up ttbarplusw 1.00474 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_Down ttbarplusw 0.995728 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 JES_Up ttbarplusw 0.996214 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 JES_Down ttbarplusw 1.00659 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf JES_Up ttbarplusw 1.00094 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf JES_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_Up ttbarplusw 1.00595 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_Down ttbarplusw 0.754066 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 JES_Up ttbarplusw 1.00015 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 JES_Down ttbarplusw 1.00013 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf JES_Up ttbarplusw 1.00004 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf JES_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf JES_Up ttbarplusw 1.00496 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf JES_Down ttbarplusw 1.0377 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 JES_Up ttbarplusw 1.00391 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 JES_Down ttbarplusw 1.04979 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf JES_Up ttbarplusw 1.00186 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf JES_Down ttbarplusw 0.997971 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf JES_Up ttbarplusw 1.00496 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf JES_Down ttbarplusw 1.0377 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf JES_Up ttbarplusw 1.00496 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf JES_Down ttbarplusw 1.0377 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_Up ttbarplusw 1.00496 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_Down ttbarplusw 1.0377 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 JES_Up ttbarplusw 1.00603 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 JES_Down ttbarplusw 1.05208 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf JES_Up ttbarplusw 1.00186 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf JES_Down ttbarplusw 0.997971 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf JES_Up ttbarplusw 1.00496 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf JES_Down ttbarplusw 1.0377 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 err_mu_Up ttbarplusw 0.99718 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 err_mu_Down ttbarplusw 1.00282 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 err_mu_Up ttbarplusw 0.997526 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 err_mu_Down ttbarplusw 1.00248 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 err_mu_Up ttbarplusw 0.997617 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 err_mu_Down ttbarplusw 1.00239 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf err_mu_Up ttbarplusw 0.997658 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf err_mu_Down ttbarplusw 1.00235 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 err_mu_Up ttbarplusw 0.996406 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 err_mu_Down ttbarplusw 1.0036 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 err_mu_Up ttbarplusw 0.996748 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 err_mu_Down ttbarplusw 1.00326 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 err_mu_Up ttbarplusw 0.996606 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 err_mu_Down ttbarplusw 1.0034 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf err_mu_Up ttbarplusw 0.996771 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf err_mu_Down ttbarplusw 1.00323 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 err_mu_Up ttbarplusw 0.997957 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 err_mu_Down ttbarplusw 1.00205 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 err_mu_Up ttbarplusw 0.998252 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 err_mu_Down ttbarplusw 1.00175 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 err_mu_Up ttbarplusw 0.99819 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 err_mu_Down ttbarplusw 1.00181 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf err_mu_Up ttbarplusw 0.998362 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf err_mu_Down ttbarplusw 1.00164 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 err_mu_Up ttbarplusw 0.997201 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 err_mu_Down ttbarplusw 1.0028 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 err_mu_Up ttbarplusw 0.997708 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 err_mu_Down ttbarplusw 1.00229 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 err_mu_Up ttbarplusw 0.998212 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 err_mu_Down ttbarplusw 1.00179 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf err_mu_Up ttbarplusw 0.997514 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf err_mu_Down ttbarplusw 1.00249 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 err_mu_Up ttbarplusw 0.997311 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 err_mu_Down ttbarplusw 1.00269 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 err_mu_Up ttbarplusw 0.997266 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 err_mu_Down ttbarplusw 1.00274 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 err_mu_Up ttbarplusw 0.99748 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 err_mu_Down ttbarplusw 1.00253 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf err_mu_Up ttbarplusw 0.996881 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf err_mu_Down ttbarplusw 1.00313 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 err_mu_Up ttbarplusw 0.997829 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 err_mu_Down ttbarplusw 1.00217 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 err_mu_Up ttbarplusw 0.998284 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 err_mu_Down ttbarplusw 1.00172 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 err_mu_Up ttbarplusw 0.997924 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 err_mu_Down ttbarplusw 1.00208 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf err_mu_Up ttbarplusw 0.998134 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf err_mu_Down ttbarplusw 1.00187 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 err_mu_Up ttbarplusw 0.997099 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 err_mu_Down ttbarplusw 1.00291 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 err_mu_Up ttbarplusw 0.997623 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 err_mu_Down ttbarplusw 1.00238 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 err_mu_Up ttbarplusw 0.997085 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 err_mu_Down ttbarplusw 1.00292 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf err_mu_Up ttbarplusw 0.99719 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf err_mu_Down ttbarplusw 1.00281 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 err_mu_Up ttbarplusw 0.998014 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 err_mu_Down ttbarplusw 1.00199 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 err_mu_Up ttbarplusw 0.998153 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 err_mu_Down ttbarplusw 1.00185 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 err_mu_Up ttbarplusw 0.998129 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 err_mu_Down ttbarplusw 1.00187 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf err_mu_Up ttbarplusw 0.998556 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf err_mu_Down ttbarplusw 1.00145 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 err_mu_Up ttbarplusw 0.997592 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 err_mu_Down ttbarplusw 1.00241 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 err_mu_Up ttbarplusw 0.997636 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 err_mu_Down ttbarplusw 1.00237 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf err_mu_Up ttbarplusw 0.998053 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf err_mu_Down ttbarplusw 1.00195 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 err_mu_Up ttbarplusw 0.99691 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 err_mu_Down ttbarplusw 1.0031 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 err_mu_Up ttbarplusw 0.996652 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 err_mu_Down ttbarplusw 1.00336 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf err_mu_Up ttbarplusw 0.997204 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf err_mu_Down ttbarplusw 1.0028 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 err_mu_Up ttbarplusw 0.997041 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 err_mu_Down ttbarplusw 1.00296 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 err_mu_Up ttbarplusw 0.997405 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 err_mu_Down ttbarplusw 1.0026 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf err_mu_Up ttbarplusw 0.997082 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf err_mu_Down ttbarplusw 1.00292 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 err_mu_Up ttbarplusw 0.997233 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 err_mu_Down ttbarplusw 1.00277 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 err_mu_Up ttbarplusw 0.996839 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 err_mu_Down ttbarplusw 1.00316 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf err_mu_Up ttbarplusw 0.997518 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf err_mu_Down ttbarplusw 1.00249 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 err_mu_Up ttbarplusw 0.995875 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 err_mu_Down ttbarplusw 1.00413 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 err_mu_Up ttbarplusw 0.995745 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 err_mu_Down ttbarplusw 1.00426 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf err_mu_Up ttbarplusw 0.996386 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf err_mu_Down ttbarplusw 1.00362 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 err_mu_Up ttbarplusw 0.996832 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 err_mu_Down ttbarplusw 1.00317 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 err_mu_Up ttbarplusw 0.997261 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 err_mu_Down ttbarplusw 1.00274 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf err_mu_Up ttbarplusw 0.997753 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf err_mu_Down ttbarplusw 1.00225 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 err_mu_Up ttbarplusw 0.996635 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 err_mu_Down ttbarplusw 1.00337 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 err_mu_Up ttbarplusw 0.997119 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 err_mu_Down ttbarplusw 1.00289 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf err_mu_Up ttbarplusw 0.997964 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf err_mu_Down ttbarplusw 1.00204 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_Up ttbarplusw 0.997616 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_Down ttbarplusw 1.00239 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_Up ttbarplusw 0.99779 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_Down ttbarplusw 1.00221 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_Up ttbarplusw 0.997593 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_Down ttbarplusw 1.00241 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_Up ttbarplusw 0.997927 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_Down ttbarplusw 1.00208 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_Up ttbarplusw 0.997766 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_Down ttbarplusw 1.00224 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_Up ttbarplusw 0.997829 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_Down ttbarplusw 1.00217 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_Up ttbarplusw 0.997906 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_Down ttbarplusw 1.0021 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_Up ttbarplusw 0.998046 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_Down ttbarplusw 1.00196 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_Up ttbarplusw 0.996816 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_Down ttbarplusw 1.00319 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_Up ttbarplusw 0.996764 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_Down ttbarplusw 1.00324 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_Up ttbarplusw 0.99666 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_Down ttbarplusw 1.00335 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_Up ttbarplusw 0.996948 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_Down ttbarplusw 1.00306 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_Up ttbarplusw 0.996215 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_Down ttbarplusw 1.00379 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_Up ttbarplusw 0.996463 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_Down ttbarplusw 1.00354 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_Up ttbarplusw 0.996278 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_Down ttbarplusw 1.00373 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_Up ttbarplusw 0.996808 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_Down ttbarplusw 1.0032 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_Up ttbarplusw 0.997744 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_Down ttbarplusw 1.00226 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_Up ttbarplusw 0.996504 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_Down ttbarplusw 1.0035 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_Up ttbarplusw 0.998213 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_Down ttbarplusw 1.00179 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_Up ttbarplusw 0.997816 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_Down ttbarplusw 1.00219 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_Up ttbarplusw 0.997779 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_Down ttbarplusw 1.00222 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_Up ttbarplusw 0.997166 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_Down ttbarplusw 1.00284 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_Up ttbarplusw 0.997324 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_Down ttbarplusw 1.00268 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_Up ttbarplusw 0.998236 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_Down ttbarplusw 1.00177 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_Up ttbarplusw 0.997932 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_Down ttbarplusw 1.00207 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 err_mu_Up ttbarplusw 0.997066 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 err_mu_Down ttbarplusw 1.00294 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 err_mu_Up ttbarplusw 0.997357 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 err_mu_Down ttbarplusw 1.00265 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf err_mu_Up ttbarplusw 0.997254 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf err_mu_Down ttbarplusw 1.00275 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 err_mu_Up ttbarplusw 0.997235 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 err_mu_Down ttbarplusw 1.00277 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 err_mu_Up ttbarplusw 0.995154 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 err_mu_Down ttbarplusw 1.00485 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf err_mu_Up ttbarplusw 0.996271 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf err_mu_Down ttbarplusw 1.00373 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 err_mu_Up ttbarplusw 0.997627 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 err_mu_Down ttbarplusw 1.00238 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 err_mu_Up ttbarplusw 0.997879 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 err_mu_Down ttbarplusw 1.00212 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 err_mu_Up ttbarplusw 0.997741 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 err_mu_Down ttbarplusw 1.00226 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 err_mu_Up ttbarplusw 0.997603 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 err_mu_Down ttbarplusw 1.0024 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf err_mu_Up ttbarplusw 0.997999 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf err_mu_Down ttbarplusw 1.002 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 err_mu_Up ttbarplusw 0.997555 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 err_mu_Down ttbarplusw 1.00245 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 err_mu_Up ttbarplusw 0.99756 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 err_mu_Down ttbarplusw 1.00244 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 err_mu_Up ttbarplusw 0.99747 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 err_mu_Down ttbarplusw 1.00253 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 err_mu_Up ttbarplusw 0.998316 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 err_mu_Down ttbarplusw 1.00169 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf err_mu_Up ttbarplusw 0.997837 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf err_mu_Down ttbarplusw 1.00217 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 err_mu_Up ttbarplusw 0.99735 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 err_mu_Down ttbarplusw 1.00266 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 err_mu_Up ttbarplusw 0.997911 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 err_mu_Down ttbarplusw 1.00209 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 err_mu_Up ttbarplusw 0.997645 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 err_mu_Down ttbarplusw 1.00236 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 err_mu_Up ttbarplusw 0.99818 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 err_mu_Down ttbarplusw 1.00182 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf err_mu_Up ttbarplusw 0.997577 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf err_mu_Down ttbarplusw 1.00243 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 err_mu_Up ttbarplusw 0.997816 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 err_mu_Down ttbarplusw 1.00219 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf err_mu_Up ttbarplusw 0.991769 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf err_mu_Down ttbarplusw 1.00824 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 err_mu_Up ttbarplusw 0.997958 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 err_mu_Down ttbarplusw 1.00205 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf err_mu_Up ttbarplusw 0.998531 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf err_mu_Down ttbarplusw 1.00147 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 err_mu_Up ttbarplusw 0.998094 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 err_mu_Down ttbarplusw 1.00191 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf err_mu_Up ttbarplusw 0.998033 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf err_mu_Down ttbarplusw 1.00197 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_Up ttbarplusw 0.998004 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_Down ttbarplusw 1.002 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_Up ttbarplusw 0.997927 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_Down ttbarplusw 1.00208 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_Up ttbarplusw 0.998367 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_Down ttbarplusw 1.00164 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_Up ttbarplusw 0.997675 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_Down ttbarplusw 1.00233 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_Up ttbarplusw 0.993919 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_Down ttbarplusw 1.00609 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_Up ttbarplusw 0.995398 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_Down ttbarplusw 1.00461 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_Up ttbarplusw 0.997553 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_Down ttbarplusw 1.00245 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_Up ttbarplusw 0.997578 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_Down ttbarplusw 1.00242 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_Up ttbarplusw 0.999 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_Down ttbarplusw 1.001 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 err_mu_Up ttbarplusw 0.997298 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 err_mu_Down ttbarplusw 1.00271 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 err_mu_Up ttbarplusw 0.997288 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 err_mu_Down ttbarplusw 1.00272 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf err_mu_Up ttbarplusw 0.997713 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf err_mu_Down ttbarplusw 1.00229 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 err_mu_Up ttbarplusw 0.996672 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 err_mu_Down ttbarplusw 1.00333 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 err_mu_Up ttbarplusw 0.996523 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 err_mu_Down ttbarplusw 1.00348 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf err_mu_Up ttbarplusw 0.998792 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf err_mu_Down ttbarplusw 1.00121 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_Up ttbarplusw 0.9977 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_Down ttbarplusw 1.0023 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 err_mu_Up ttbarplusw 0.997689 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 err_mu_Down ttbarplusw 1.00231 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 err_mu_Up ttbarplusw 0.997521 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 err_mu_Down ttbarplusw 1.00248 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 err_mu_Up ttbarplusw 0.997719 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 err_mu_Down ttbarplusw 1.00228 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf err_mu_Up ttbarplusw 0.997629 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf err_mu_Down ttbarplusw 1.00237 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_Up ttbarplusw 0.997658 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_Down ttbarplusw 1.00235 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 err_mu_Up ttbarplusw 0.997336 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 err_mu_Down ttbarplusw 1.00267 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 err_mu_Up ttbarplusw 0.997757 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 err_mu_Down ttbarplusw 1.00225 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 err_mu_Up ttbarplusw 0.998215 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 err_mu_Down ttbarplusw 1.00179 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf err_mu_Up ttbarplusw 0.997203 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf err_mu_Down ttbarplusw 1.0028 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_Up ttbarplusw 0.997625 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_Down ttbarplusw 1.00238 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 err_mu_Up ttbarplusw 0.994728 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 err_mu_Down ttbarplusw 1.00528 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 err_mu_Up ttbarplusw 0.997825 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 err_mu_Down ttbarplusw 1.00218 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 err_mu_Up ttbarplusw 0.998786 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 err_mu_Down ttbarplusw 1.00122 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf err_mu_Up ttbarplusw 0.994556 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf err_mu_Down ttbarplusw 1.00545 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 err_mu_Up ttbarplusw 0.996723 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 err_mu_Down ttbarplusw 1.00328 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf err_mu_Up ttbarplusw 0.999377 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf err_mu_Down ttbarplusw 1.00062 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 err_mu_Up ttbarplusw 0.998525 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 err_mu_Down ttbarplusw 1.00148 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 err_mu_Up ttbarplusw 0.998222 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 err_mu_Down ttbarplusw 1.00178 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf err_mu_Up ttbarplusw 0.998079 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf err_mu_Down ttbarplusw 1.00192 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 err_mu_Up ttbarplusw 0.997672 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 err_mu_Down ttbarplusw 1.00233 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 err_mu_Up ttbarplusw 0.996391 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 err_mu_Down ttbarplusw 1.00361 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf err_mu_Up ttbarplusw 0.999033 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf err_mu_Down ttbarplusw 1.00097 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 err_mu_Up ttbarplusw 0.998249 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 err_mu_Down ttbarplusw 1.00175 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf err_mu_Up ttbarplusw 0.992753 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf err_mu_Down ttbarplusw 1.00726 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 err_mu_Up ttbarplusw 0.998573 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 err_mu_Down ttbarplusw 1.00143 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf err_mu_Up ttbarplusw 0.998953 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf err_mu_Down ttbarplusw 1.00105 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_Up ttbarplusw 0.999071 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_Down ttbarplusw 1.00093 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 err_mu_Up ttbarplusw 0.998433 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 err_mu_Down ttbarplusw 1.00157 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf err_mu_Up ttbarplusw 0.998602 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf err_mu_Down ttbarplusw 1.0014 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 err_mu_Up ttbarplusw 0.996503 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 err_mu_Down ttbarplusw 1.0035 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf err_mu_Up ttbarplusw 0.999269 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf err_mu_Down ttbarplusw 1.00073 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_Up ttbarplusw 0.998852 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_Down ttbarplusw 1.00115 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 err_mu_Up ttbarplusw 0.997639 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 err_mu_Down ttbarplusw 1.00236 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 err_mu_Up ttbarplusw 0.997921 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 err_mu_Down ttbarplusw 1.00208 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf err_mu_Up ttbarplusw 0.998956 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf err_mu_Down ttbarplusw 1.00105 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 err_mu_Up ttbarplusw 0.99734 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 err_mu_Down ttbarplusw 1.00266 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 err_mu_Up ttbarplusw 0.997473 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 err_mu_Down ttbarplusw 1.00253 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf err_mu_Up ttbarplusw 0.997777 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf err_mu_Down ttbarplusw 1.00223 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 err_mu_Up ttbarplusw 0.997671 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 err_mu_Down ttbarplusw 1.00233 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 err_mu_Up ttbarplusw 0.997602 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 err_mu_Down ttbarplusw 1.0024 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf err_mu_Up ttbarplusw 0.998281 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf err_mu_Down ttbarplusw 1.00172 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 err_mu_Up ttbarplusw 0.997927 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 err_mu_Down ttbarplusw 1.00208 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 err_mu_Up ttbarplusw 0.994984 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 err_mu_Down ttbarplusw 1.00502 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf err_mu_Up ttbarplusw 0.998515 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf err_mu_Down ttbarplusw 1.00149 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_Up ttbarplusw 0.997827 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_Down ttbarplusw 1.00218 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 err_mu_Up ttbarplusw 0.997599 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 err_mu_Down ttbarplusw 1.00241 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf err_mu_Up ttbarplusw 0.997998 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf err_mu_Down ttbarplusw 1.002 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_Up ttbarplusw 0.997226 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_Down ttbarplusw 1.00278 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 err_mu_Up ttbarplusw 0.997818 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 err_mu_Down ttbarplusw 1.00219 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf err_mu_Up ttbarplusw 0.996528 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf err_mu_Down ttbarplusw 1.00348 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_Up ttbarplusw 0.996774 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_Down ttbarplusw 1.00323 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 err_mu_Up ttbarplusw 0.994948 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 err_mu_Down ttbarplusw 1.00507 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf err_mu_Up ttbarplusw 0.998823 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf err_mu_Down ttbarplusw 1.00118 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf err_mu_Up ttbarplusw 0.998398 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf err_mu_Down ttbarplusw 1.0016 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 err_mu_Up ttbarplusw 0.998537 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 err_mu_Down ttbarplusw 1.00147 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf err_mu_Up ttbarplusw 0.9983 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf err_mu_Down ttbarplusw 1.0017 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf err_mu_Up ttbarplusw 0.997608 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf err_mu_Down ttbarplusw 1.0024 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf err_mu_Up ttbarplusw 0.996665 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf err_mu_Down ttbarplusw 1.00334 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_Up ttbarplusw 0.997011 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_Down ttbarplusw 1.00299 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 err_mu_Up ttbarplusw 0.996872 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 err_mu_Down ttbarplusw 1.00313 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf err_mu_Up ttbarplusw 0.996907 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf err_mu_Down ttbarplusw 1.0031 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_Up ttbarplusw 0.992148 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_Down ttbarplusw 1.00787 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_Up ttbarplusw 0.999845 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_Down ttbarplusw 1.00015 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_Up ttbarplusw 1.00004 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_Down ttbarplusw 0.999957 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_Up ttbarplusw 1.00013 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_Down ttbarplusw 0.999858 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_Up ttbarplusw 1.00001 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_Down ttbarplusw 0.999991 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 Prefire_Weight_Up ttbarplusw 0.999326 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 Prefire_Weight_Down ttbarplusw 1.00066 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 Prefire_Weight_Up ttbarplusw 1.00028 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 Prefire_Weight_Down ttbarplusw 0.999689 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 Prefire_Weight_Up ttbarplusw 0.999566 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 Prefire_Weight_Down ttbarplusw 1.00037 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf Prefire_Weight_Up ttbarplusw 1.00006 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf Prefire_Weight_Down ttbarplusw 0.999956 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_Up ttbarplusw 0.999769 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_Down ttbarplusw 1.00022 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_Up ttbarplusw 1.00004 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_Down ttbarplusw 0.999979 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_Up ttbarplusw 1.00002 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_Down ttbarplusw 0.999934 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_Up ttbarplusw 1.00032 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_Down ttbarplusw 0.999713 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 Prefire_Weight_Up ttbarplusw 0.999014 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 Prefire_Weight_Down ttbarplusw 1.00107 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 Prefire_Weight_Up ttbarplusw 0.999793 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 Prefire_Weight_Down ttbarplusw 0.999908 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 Prefire_Weight_Up ttbarplusw 0.999153 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 Prefire_Weight_Down ttbarplusw 1.00087 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf Prefire_Weight_Up ttbarplusw 1.00093 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf Prefire_Weight_Down ttbarplusw 0.999215 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 Prefire_Weight_Up ttbarplusw 0.999934 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 Prefire_Weight_Down ttbarplusw 1.00006 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 Prefire_Weight_Up ttbarplusw 0.99975 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 Prefire_Weight_Down ttbarplusw 1.00029 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 Prefire_Weight_Up ttbarplusw 1.00089 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 Prefire_Weight_Down ttbarplusw 0.999182 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf Prefire_Weight_Up ttbarplusw 1.0026 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf Prefire_Weight_Down ttbarplusw 0.997364 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 Prefire_Weight_Up ttbarplusw 1.00064 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 Prefire_Weight_Down ttbarplusw 0.999374 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 Prefire_Weight_Up ttbarplusw 1.00137 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 Prefire_Weight_Down ttbarplusw 0.998586 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 Prefire_Weight_Up ttbarplusw 1.00109 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 Prefire_Weight_Down ttbarplusw 0.998924 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf Prefire_Weight_Up ttbarplusw 1.0035 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf Prefire_Weight_Down ttbarplusw 0.996575 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 Prefire_Weight_Up ttbarplusw 1.00027 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 Prefire_Weight_Down ttbarplusw 0.999757 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 Prefire_Weight_Up ttbarplusw 1.00113 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 Prefire_Weight_Down ttbarplusw 0.99896 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 Prefire_Weight_Up ttbarplusw 1.00052 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 Prefire_Weight_Down ttbarplusw 0.99948 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf Prefire_Weight_Up ttbarplusw 1.00034 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf Prefire_Weight_Down ttbarplusw 0.999682 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 Prefire_Weight_Up ttbarplusw 1.00022 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 Prefire_Weight_Down ttbarplusw 0.999783 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 Prefire_Weight_Up ttbarplusw 1.00019 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 Prefire_Weight_Down ttbarplusw 0.99991 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 Prefire_Weight_Up ttbarplusw 0.998924 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 Prefire_Weight_Down ttbarplusw 1.00109 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf Prefire_Weight_Up ttbarplusw 1.00097 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf Prefire_Weight_Down ttbarplusw 0.999104 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 Prefire_Weight_Up ttbarplusw 1.00082 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 Prefire_Weight_Down ttbarplusw 0.999088 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 Prefire_Weight_Up ttbarplusw 1.00051 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 Prefire_Weight_Down ttbarplusw 0.999301 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf Prefire_Weight_Up ttbarplusw 1.00272 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf Prefire_Weight_Down ttbarplusw 0.997393 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 Prefire_Weight_Up ttbarplusw 1.00027 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 Prefire_Weight_Down ttbarplusw 0.999771 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 Prefire_Weight_Up ttbarplusw 1.00169 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 Prefire_Weight_Down ttbarplusw 0.998262 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf Prefire_Weight_Up ttbarplusw 1.00358 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf Prefire_Weight_Down ttbarplusw 0.996823 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 Prefire_Weight_Up ttbarplusw 1.00003 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 Prefire_Weight_Down ttbarplusw 0.99997 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 Prefire_Weight_Up ttbarplusw 1.00051 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 Prefire_Weight_Down ttbarplusw 0.999436 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf Prefire_Weight_Up ttbarplusw 0.993124 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf Prefire_Weight_Down ttbarplusw 1.00689 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 Prefire_Weight_Up ttbarplusw 1.00018 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 Prefire_Weight_Down ttbarplusw 0.999814 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 Prefire_Weight_Up ttbarplusw 1.00226 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 Prefire_Weight_Down ttbarplusw 0.997785 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf Prefire_Weight_Up ttbarplusw 1.00328 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf Prefire_Weight_Down ttbarplusw 0.996702 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 Prefire_Weight_Up ttbarplusw 0.9988 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 Prefire_Weight_Down ttbarplusw 1.00111 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 Prefire_Weight_Up ttbarplusw 1.00049 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 Prefire_Weight_Down ttbarplusw 0.999614 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf Prefire_Weight_Up ttbarplusw 1.00063 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf Prefire_Weight_Down ttbarplusw 0.999346 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 Prefire_Weight_Up ttbarplusw 1.00055 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 Prefire_Weight_Down ttbarplusw 0.999371 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 Prefire_Weight_Up ttbarplusw 0.999915 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 Prefire_Weight_Down ttbarplusw 1.00008 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf Prefire_Weight_Up ttbarplusw 1.00198 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf Prefire_Weight_Down ttbarplusw 0.997985 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 Prefire_Weight_Up ttbarplusw 0.997117 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 Prefire_Weight_Down ttbarplusw 1.00255 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 Prefire_Weight_Up ttbarplusw 1.0011 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 Prefire_Weight_Down ttbarplusw 0.998964 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf Prefire_Weight_Up ttbarplusw 1.00262 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf Prefire_Weight_Down ttbarplusw 0.997287 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_Up ttbarplusw 1.00083 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_Down ttbarplusw 0.999164 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_Up ttbarplusw 0.999131 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_Down ttbarplusw 1.00089 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_Up ttbarplusw 0.99951 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_Down ttbarplusw 1.00047 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_Up ttbarplusw 1.00335 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_Down ttbarplusw 0.996761 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_Up ttbarplusw 1.00014 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_Down ttbarplusw 0.999854 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_Up ttbarplusw 1.00012 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_Down ttbarplusw 0.999862 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_Up ttbarplusw 0.999453 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_Down ttbarplusw 1.00056 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_Up ttbarplusw 1.00103 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_Down ttbarplusw 0.998898 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_Up ttbarplusw 1.00026 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_Down ttbarplusw 0.999747 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_Up ttbarplusw 1.00027 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_Down ttbarplusw 0.999728 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_Up ttbarplusw 0.99955 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_Down ttbarplusw 1.00046 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_Up ttbarplusw 1.00106 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_Down ttbarplusw 0.998918 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_Up ttbarplusw 1.00067 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_Down ttbarplusw 0.999365 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_Up ttbarplusw 1.00167 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_Down ttbarplusw 0.998486 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_Up ttbarplusw 1.00035 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_Down ttbarplusw 0.999663 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_Up ttbarplusw 0.999842 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_Down ttbarplusw 1.00018 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_Up ttbarplusw 1.00154 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_Down ttbarplusw 0.998465 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_Up ttbarplusw 1.00019 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_Down ttbarplusw 0.999637 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_Up ttbarplusw 0.996807 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_Down ttbarplusw 1.00346 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_Up ttbarplusw 1.00001 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_Down ttbarplusw 0.999987 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_Up ttbarplusw 1.00087 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_Down ttbarplusw 0.999162 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_Up ttbarplusw 0.993367 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_Down ttbarplusw 1.00729 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_Up ttbarplusw 0.999243 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_Down ttbarplusw 1.00066 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_Up ttbarplusw 0.995798 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_Down ttbarplusw 1.00425 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_Up ttbarplusw 1.00201 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_Down ttbarplusw 0.997731 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 Prefire_Weight_Up ttbarplusw 1.001 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 Prefire_Weight_Down ttbarplusw 0.998989 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 Prefire_Weight_Up ttbarplusw 1.00034 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 Prefire_Weight_Down ttbarplusw 0.999668 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf Prefire_Weight_Up ttbarplusw 1.00121 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf Prefire_Weight_Down ttbarplusw 0.998766 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 Prefire_Weight_Up ttbarplusw 1.00062 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 Prefire_Weight_Down ttbarplusw 0.998979 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 Prefire_Weight_Up ttbarplusw 0.997599 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 Prefire_Weight_Down ttbarplusw 1.00243 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf Prefire_Weight_Up ttbarplusw 0.999862 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf Prefire_Weight_Down ttbarplusw 0.999805 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_Up ttbarplusw 1.00054 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_Down ttbarplusw 0.999432 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_Up ttbarplusw 1.00018 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_Down ttbarplusw 0.999796 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_Up ttbarplusw 0.999984 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_Up ttbarplusw 1.00183 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_Down ttbarplusw 0.998202 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_Up ttbarplusw 0.999024 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_Down ttbarplusw 1.00101 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_Up ttbarplusw 1.00004 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_Down ttbarplusw 0.999912 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_Up ttbarplusw 0.998878 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_Down ttbarplusw 1.00114 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_Up ttbarplusw 0.999917 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_Down ttbarplusw 1.00004 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_Up ttbarplusw 0.998987 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_Down ttbarplusw 1.001 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_Up ttbarplusw 1.00372 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_Down ttbarplusw 0.996285 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_Up ttbarplusw 1.00144 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_Down ttbarplusw 0.998579 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_Up ttbarplusw 0.996295 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_Down ttbarplusw 1.0036 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_Up ttbarplusw 0.995883 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_Down ttbarplusw 1.00419 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_Up ttbarplusw 1.00272 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_Down ttbarplusw 0.997301 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_Up ttbarplusw 0.983369 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_Down ttbarplusw 1.01653 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 Prefire_Weight_Up ttbarplusw 1.00259 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 Prefire_Weight_Down ttbarplusw 0.997136 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf Prefire_Weight_Up ttbarplusw 0.992786 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf Prefire_Weight_Down ttbarplusw 1.00719 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 Prefire_Weight_Up ttbarplusw 0.996106 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 Prefire_Weight_Down ttbarplusw 1.00392 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf Prefire_Weight_Up ttbarplusw 1.00331 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf Prefire_Weight_Down ttbarplusw 0.996749 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 Prefire_Weight_Up ttbarplusw 1.00161 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 Prefire_Weight_Down ttbarplusw 0.998443 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf Prefire_Weight_Up ttbarplusw 0.992876 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf Prefire_Weight_Down ttbarplusw 1.0072 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_Up ttbarplusw 1.00203 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_Down ttbarplusw 0.997924 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_Up ttbarplusw 1.0027 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_Down ttbarplusw 0.997366 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_Up ttbarplusw 1.00206 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_Down ttbarplusw 0.997953 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_Up ttbarplusw 1.00069 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_Down ttbarplusw 0.999305 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_Up ttbarplusw 1.00203 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_Down ttbarplusw 0.997946 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_Up ttbarplusw 1.00274 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_Down ttbarplusw 0.997177 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_Up ttbarplusw 0.999601 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_Down ttbarplusw 1.00047 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_Up ttbarplusw 0.997796 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_Down ttbarplusw 1.00222 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_Up ttbarplusw 0.993343 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_Down ttbarplusw 1.0067 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 Prefire_Weight_Up ttbarplusw 1.00099 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 Prefire_Weight_Down ttbarplusw 0.999034 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 Prefire_Weight_Up ttbarplusw 0.998059 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 Prefire_Weight_Down ttbarplusw 1.00217 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf Prefire_Weight_Up ttbarplusw 1.0016 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf Prefire_Weight_Down ttbarplusw 0.998471 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 Prefire_Weight_Up ttbarplusw 0.999329 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 Prefire_Weight_Down ttbarplusw 1.0008 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 Prefire_Weight_Up ttbarplusw 1.00352 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 Prefire_Weight_Down ttbarplusw 0.996672 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf Prefire_Weight_Up ttbarplusw 1.00494 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf Prefire_Weight_Down ttbarplusw 0.995121 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_Up ttbarplusw 1.00056 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_Down ttbarplusw 0.999441 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_Up ttbarplusw 1.00056 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_Down ttbarplusw 0.999406 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_Up ttbarplusw 0.999547 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_Down ttbarplusw 1.00037 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_Up ttbarplusw 1.00126 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_Down ttbarplusw 0.998818 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_Up ttbarplusw 1.00299 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_Down ttbarplusw 0.997017 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_Up ttbarplusw 1.00003 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_Down ttbarplusw 0.999986 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_Up ttbarplusw 1.00195 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_Down ttbarplusw 0.998162 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_Up ttbarplusw 0.999686 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_Down ttbarplusw 1.00035 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_Up ttbarplusw 1.00435 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_Down ttbarplusw 0.995907 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_Up ttbarplusw 1.00356 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_Down ttbarplusw 0.996296 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_Up ttbarplusw 0.99949 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_Down ttbarplusw 1.00058 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_Up ttbarplusw 1.0024 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_Down ttbarplusw 0.997466 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_Up ttbarplusw 1.00268 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_Down ttbarplusw 0.997362 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_Up ttbarplusw 1.00078 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_Down ttbarplusw 0.99925 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_Up ttbarplusw 1.00278 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_Down ttbarplusw 0.997329 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 Prefire_Weight_Up ttbarplusw 1.00465 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 Prefire_Weight_Down ttbarplusw 0.995369 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf Prefire_Weight_Up ttbarplusw 1.0043 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf Prefire_Weight_Down ttbarplusw 0.995798 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 Prefire_Weight_Up ttbarplusw 1.00389 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 Prefire_Weight_Down ttbarplusw 0.996214 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 Prefire_Weight_Up ttbarplusw 1.00531 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 Prefire_Weight_Down ttbarplusw 0.994788 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf Prefire_Weight_Up ttbarplusw 1.00451 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf Prefire_Weight_Down ttbarplusw 0.995542 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 Prefire_Weight_Up ttbarplusw 0.99228 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 Prefire_Weight_Down ttbarplusw 1.00765 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 Prefire_Weight_Up ttbarplusw 1.0023 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 Prefire_Weight_Down ttbarplusw 0.997869 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf Prefire_Weight_Up ttbarplusw 0.998008 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf Prefire_Weight_Down ttbarplusw 1.00198 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 Prefire_Weight_Up ttbarplusw 1.00286 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 Prefire_Weight_Down ttbarplusw 0.997141 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf Prefire_Weight_Up ttbarplusw 1.00017 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf Prefire_Weight_Down ttbarplusw 0.999885 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 Prefire_Weight_Up ttbarplusw 0.988443 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 Prefire_Weight_Down ttbarplusw 1.0115 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf Prefire_Weight_Up ttbarplusw 1.00486 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf Prefire_Weight_Down ttbarplusw 0.995201 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_Up ttbarplusw 1.00281 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_Down ttbarplusw 0.997399 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 Prefire_Weight_Up ttbarplusw 1.00203 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 Prefire_Weight_Down ttbarplusw 0.997942 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf Prefire_Weight_Up ttbarplusw 0.994712 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf Prefire_Weight_Down ttbarplusw 1.00531 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 Prefire_Weight_Up ttbarplusw 0.987587 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 Prefire_Weight_Down ttbarplusw 1.01222 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf Prefire_Weight_Up ttbarplusw 1.00325 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf Prefire_Weight_Down ttbarplusw 0.996791 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_Up ttbarplusw 1.00464 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_Down ttbarplusw 0.995344 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 Prefire_Weight_Up ttbarplusw 1.00051 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 Prefire_Weight_Down ttbarplusw 0.999511 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 Prefire_Weight_Up ttbarplusw 1.00204 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 Prefire_Weight_Down ttbarplusw 0.998019 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf Prefire_Weight_Up ttbarplusw 1.00283 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf Prefire_Weight_Down ttbarplusw 0.995948 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_Up ttbarplusw 0.999827 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_Down ttbarplusw 1.0002 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_Up ttbarplusw 1.00254 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_Down ttbarplusw 0.997586 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_Up ttbarplusw 1.00264 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_Down ttbarplusw 0.997392 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 Prefire_Weight_Up ttbarplusw 0.998114 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 Prefire_Weight_Down ttbarplusw 1.00185 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 Prefire_Weight_Up ttbarplusw 1.00586 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 Prefire_Weight_Down ttbarplusw 0.994334 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf Prefire_Weight_Up ttbarplusw 0.985821 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf Prefire_Weight_Down ttbarplusw 1.01414 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 Prefire_Weight_Up ttbarplusw 1.00087 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 Prefire_Weight_Down ttbarplusw 0.9991 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 Prefire_Weight_Up ttbarplusw 1.00301 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 Prefire_Weight_Down ttbarplusw 0.996545 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf Prefire_Weight_Up ttbarplusw 1.00348 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf Prefire_Weight_Down ttbarplusw 0.996644 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_Up ttbarplusw 1.00061 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_Down ttbarplusw 0.99935 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 Prefire_Weight_Up ttbarplusw 1.00202 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 Prefire_Weight_Down ttbarplusw 0.997963 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf Prefire_Weight_Up ttbarplusw 1.00146 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf Prefire_Weight_Down ttbarplusw 0.998812 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_Up ttbarplusw 1.00398 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_Down ttbarplusw 0.995995 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_Up ttbarplusw 0.999439 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_Down ttbarplusw 1.00065 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_Up ttbarplusw 0.99692 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_Down ttbarplusw 1.00299 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_Up ttbarplusw 0.998863 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_Down ttbarplusw 1.0011 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 Prefire_Weight_Up ttbarplusw 1.00268 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 Prefire_Weight_Down ttbarplusw 0.99742 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf Prefire_Weight_Up ttbarplusw 0.994801 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf Prefire_Weight_Down ttbarplusw 1.0052 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf Prefire_Weight_Up ttbarplusw 0.998515 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf Prefire_Weight_Down ttbarplusw 1.00155 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 Prefire_Weight_Up ttbarplusw 1.00187 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 Prefire_Weight_Down ttbarplusw 0.997788 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf Prefire_Weight_Up ttbarplusw 1.00363 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf Prefire_Weight_Down ttbarplusw 0.996432 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf Prefire_Weight_Up ttbarplusw 1.0033 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf Prefire_Weight_Down ttbarplusw 0.996782 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf Prefire_Weight_Up ttbarplusw 1.00292 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf Prefire_Weight_Down ttbarplusw 0.997153 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_Up ttbarplusw 1.00323 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_Down ttbarplusw 0.996846 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 Prefire_Weight_Up ttbarplusw 1.00361 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 Prefire_Weight_Down ttbarplusw 0.996243 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf Prefire_Weight_Up ttbarplusw 1.00153 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf Prefire_Weight_Down ttbarplusw 0.998502 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_Up ttbarplusw 0.967543 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_Down ttbarplusw 1.03268 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restoptag_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restoptag_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_restoptag_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_restoptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_restoptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_restoptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_restoptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_restoptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_restoptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_restoptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_restoptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_restoptag_Down ttbarplusw 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_restoptag_Up ttbarplusw 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_restoptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_restoptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_restoptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_restoptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_restoptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_restoptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_restoptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_restoptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_restoptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_restoptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_restoptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_restoptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_restoptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_restoptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_restoptag_Down ttbarplusw 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Up ttbarplusw 1.09268 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Down ttbarplusw 0.901178 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Up ttbarplusw 1.09903 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Down ttbarplusw 0.894413 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Up ttbarplusw 1.10978 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Down ttbarplusw 0.88383 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Up ttbarplusw 1.1132 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Down ttbarplusw 0.879497 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Up ttbarplusw 1.06436 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Down ttbarplusw 0.929745 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Up ttbarplusw 1.06619 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Down ttbarplusw 0.927927 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Up ttbarplusw 1.08268 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Down ttbarplusw 0.910428 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Up ttbarplusw 1.07092 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Down ttbarplusw 0.922419 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restoptag_Up ttbarplusw 0.987828 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restoptag_Down ttbarplusw 1.01249 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restoptag_Up ttbarplusw 0.986537 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restoptag_Down ttbarplusw 1.01385 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restoptag_Up ttbarplusw 0.987196 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restoptag_Down ttbarplusw 1.01316 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restoptag_Up ttbarplusw 0.989474 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restoptag_Down ttbarplusw 1.01076 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restoptag_Up ttbarplusw 0.975658 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restoptag_Down ttbarplusw 1.02561 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restoptag_Up ttbarplusw 0.977133 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restoptag_Down ttbarplusw 1.02399 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restoptag_Up ttbarplusw 0.981061 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restoptag_Down ttbarplusw 1.01972 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restoptag_Up ttbarplusw 0.984959 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restoptag_Down ttbarplusw 1.01552 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restoptag_Up ttbarplusw 0.980769 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restoptag_Down ttbarplusw 1.02003 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restoptag_Up ttbarplusw 0.990394 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restoptag_Down ttbarplusw 1.00982 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restoptag_Up ttbarplusw 0.992711 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restoptag_Down ttbarplusw 1.00741 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restoptag_Up ttbarplusw 0.987074 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restoptag_Down ttbarplusw 1.01328 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Up ttbarplusw 0.988241 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Down ttbarplusw 1.01205 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Up ttbarplusw 0.987488 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Down ttbarplusw 1.01285 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restoptag_Up ttbarplusw 0.989048 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restoptag_Down ttbarplusw 1.01121 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restoptag_Up ttbarplusw 0.995179 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restoptag_Down ttbarplusw 1.00487 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restoptag_Up ttbarplusw 0.993838 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restoptag_Down ttbarplusw 1.00624 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_restoptag_Up ttbarplusw 0.980367 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_restoptag_Down ttbarplusw 1.02046 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_restoptag_Up ttbarplusw 0.983653 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_restoptag_Down ttbarplusw 1.01693 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_restoptag_Up ttbarplusw 0.987398 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_restoptag_Down ttbarplusw 1.01295 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_restoptag_Up ttbarplusw 0.989842 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_restoptag_Down ttbarplusw 1.01038 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_restoptag_Up ttbarplusw 0.987338 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_restoptag_Down ttbarplusw 1.01301 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_restoptag_Up ttbarplusw 0.989195 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_restoptag_Down ttbarplusw 1.01106 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Up ttbarplusw 1.03072 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Down ttbarplusw 0.967949 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_restoptag_Up ttbarplusw 1.03598 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_restoptag_Down ttbarplusw 0.962702 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_restoptag_Up ttbarplusw 1.04319 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_restoptag_Down ttbarplusw 0.955507 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_restoptag_Up ttbarplusw 1.04638 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_restoptag_Down ttbarplusw 0.952594 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_restoptag_Up ttbarplusw 1.06721 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_restoptag_Down ttbarplusw 0.931617 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Up ttbarplusw 1.07163 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Down ttbarplusw 0.926428 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_restoptag_Up ttbarplusw 1.0772 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_restoptag_Down ttbarplusw 0.920515 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_restoptag_Up ttbarplusw 1.06596 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_restoptag_Down ttbarplusw 0.93227 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Up ttbarplusw 1.05995 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Down ttbarplusw 0.938519 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Up ttbarplusw 1.06711 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Down ttbarplusw 0.93097 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Up ttbarplusw 1.10357 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Down ttbarplusw 0.894249 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_restoptag_Up ttbarplusw 1.06637 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_restoptag_Down ttbarplusw 0.931985 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_restoptag_Up ttbarplusw 1.13143 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_restoptag_Down ttbarplusw 0.864393 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_restoptag_Up ttbarplusw 1.07762 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_restoptag_Down ttbarplusw 0.921506 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_restoptag_Up ttbarplusw 1.12647 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_restoptag_Down ttbarplusw 0.871907 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_restoptag_Up ttbarplusw 0.981334 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_restoptag_Down ttbarplusw 1.01942 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_restoptag_Up ttbarplusw 0.990199 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_restoptag_Down ttbarplusw 1.01002 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_restoptag_Up ttbarplusw 1.09678 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_restoptag_Down ttbarplusw 0.899299 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_restoptag_Up ttbarplusw 1.1825 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_restoptag_Down ttbarplusw 0.81369 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_restoptag_Up ttbarplusw 1.08118 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_restoptag_Down ttbarplusw 0.915244 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_restoptag_Up ttbarplusw 1.03173 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_restoptag_Down ttbarplusw 0.967615 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restoptag_Up ttbarplusw 0.981462 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restoptag_Down ttbarplusw 1.0193 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restoptag_Up ttbarplusw 0.987612 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restoptag_Down ttbarplusw 1.01272 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restoptag_Up ttbarplusw 0.976416 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restoptag_Down ttbarplusw 1.02479 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restoptag_Up ttbarplusw 0.978764 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restoptag_Down ttbarplusw 1.0222 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Up ttbarplusw 0.98302 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Down ttbarplusw 1.0176 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Up ttbarplusw 0.991476 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Down ttbarplusw 1.00869 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restoptag_Up ttbarplusw 0.983414 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restoptag_Down ttbarplusw 1.01717 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restoptag_Up ttbarplusw 0.994762 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restoptag_Down ttbarplusw 1.0053 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restoptag_Up ttbarplusw 0.980523 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restoptag_Down ttbarplusw 1.02027 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_restoptag_Up ttbarplusw 0.981139 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_restoptag_Down ttbarplusw 1.01964 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_restoptag_Up ttbarplusw 0.981411 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_restoptag_Down ttbarplusw 1.01935 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_restoptag_Up ttbarplusw 0.98328 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_restoptag_Down ttbarplusw 1.01733 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_restoptag_Up ttbarplusw 0.979299 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_restoptag_Down ttbarplusw 1.02162 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_restoptag_Up ttbarplusw 0.987679 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_restoptag_Down ttbarplusw 1.01265 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_restoptag_Up ttbarplusw 0.983579 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_restoptag_Down ttbarplusw 1.017 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Up ttbarplusw 1.04052 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Down ttbarplusw 0.957795 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_restoptag_Up ttbarplusw 1.04473 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_restoptag_Down ttbarplusw 0.953538 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_restoptag_Up ttbarplusw 1.0454 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_restoptag_Down ttbarplusw 0.952735 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_restoptag_Up ttbarplusw 1.0522 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_restoptag_Down ttbarplusw 0.946412 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_restoptag_Up ttbarplusw 1.02854 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_restoptag_Down ttbarplusw 0.969947 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Up ttbarplusw 1.06529 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Down ttbarplusw 0.931606 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_restoptag_Up ttbarplusw 1.08012 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_restoptag_Down ttbarplusw 0.916196 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_restoptag_Up ttbarplusw 1.09018 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_restoptag_Down ttbarplusw 0.90689 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Up ttbarplusw 1.13268 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Down ttbarplusw 0.862433 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Up ttbarplusw 1.07042 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Down ttbarplusw 0.928307 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Up ttbarplusw 1.08742 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Down ttbarplusw 0.909733 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_restoptag_Up ttbarplusw 1.06249 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_restoptag_Down ttbarplusw 0.935575 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_restoptag_Up ttbarplusw 1.13742 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_restoptag_Down ttbarplusw 0.855226 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_restoptag_Up ttbarplusw 1.25215 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_restoptag_Down ttbarplusw 0.745146 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_restoptag_Up ttbarplusw 1.09841 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_restoptag_Down ttbarplusw 0.897509 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_restoptag_Up ttbarplusw 0.981249 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_restoptag_Down ttbarplusw 1.01952 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_restoptag_Up ttbarplusw 0.985858 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_restoptag_Down ttbarplusw 1.01457 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_restoptag_Up ttbarplusw 1.12512 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_restoptag_Down ttbarplusw 0.869639 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_restoptag_Up ttbarplusw 1.16685 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_restoptag_Down ttbarplusw 0.826612 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_restoptag_Up ttbarplusw 1.11485 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_restoptag_Down ttbarplusw 0.881096 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_restoptag_Up ttbarplusw 1.11944 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_restoptag_Down ttbarplusw 0.875318 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_restoptag_Up ttbarplusw 1.16744 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_restoptag_Down ttbarplusw 0.828191 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_restoptag_Up ttbarplusw 1.13976 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_restoptag_Down ttbarplusw 0.85543 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_restoptag_Up ttbarplusw 1.08532 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_restoptag_Down ttbarplusw 0.911173 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_restoptag_Up ttbarplusw 1.04513 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_restoptag_Down ttbarplusw 0.952753 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_restoptag_Up ttbarplusw 0.981211 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_restoptag_Down ttbarplusw 1.01957 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_restoptag_Up ttbarplusw 0.983326 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_restoptag_Down ttbarplusw 1.01728 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restoptag_Up ttbarplusw 0.981371 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restoptag_Down ttbarplusw 1.01939 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_restoptag_Up ttbarplusw 1.15539 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_restoptag_Down ttbarplusw 0.838148 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_restoptag_Up ttbarplusw 1.22843 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_restoptag_Down ttbarplusw 0.763502 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_restoptag_Up ttbarplusw 1.24918 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_restoptag_Down ttbarplusw 0.741446 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_restoptag_Up ttbarplusw 1.20696 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_restoptag_Down ttbarplusw 0.785883 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restoptag_Up ttbarplusw 1.27473 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restoptag_Down ttbarplusw 0.714552 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_restoptag_Up ttbarplusw 0.978503 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_restoptag_Down ttbarplusw 1.0225 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_restoptag_Up ttbarplusw 0.981565 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_restoptag_Down ttbarplusw 1.01916 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_restoptag_Up ttbarplusw 0.967961 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_restoptag_Down ttbarplusw 1.03426 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Up ttbarplusw 0.962916 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Down ttbarplusw 1.04009 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_restoptag_Up ttbarplusw 0.970127 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_restoptag_Down ttbarplusw 1.0318 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_restoptag_Up ttbarplusw 0.977163 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_restoptag_Down ttbarplusw 1.02394 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_restoptag_Up ttbarplusw 0.97556 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_restoptag_Down ttbarplusw 1.02571 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_restoptag_Up ttbarplusw 0.973065 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_restoptag_Down ttbarplusw 1.02851 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_restoptag_Up ttbarplusw 0.977249 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_restoptag_Down ttbarplusw 1.02382 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_restoptag_Up ttbarplusw 0.976821 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_restoptag_Down ttbarplusw 1.02435 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_restoptag_Up ttbarplusw 0.978861 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_restoptag_Down ttbarplusw 1.02209 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_restoptag_Up ttbarplusw 0.972589 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_restoptag_Down ttbarplusw 1.02901 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Up ttbarplusw 1.05137 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Down ttbarplusw 0.946207 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_restoptag_Up ttbarplusw 1.06822 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_restoptag_Down ttbarplusw 0.929031 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_restoptag_Up ttbarplusw 1.10794 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_restoptag_Down ttbarplusw 0.884536 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Up ttbarplusw 1.05675 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Down ttbarplusw 0.938686 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_restoptag_Up ttbarplusw 1.05368 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_restoptag_Down ttbarplusw 0.942877 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_restoptag_Up ttbarplusw 1.02072 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_restoptag_Down ttbarplusw 0.978277 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Up ttbarplusw 1.10653 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Down ttbarplusw 0.888018 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_restoptag_Up ttbarplusw 1.10166 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_restoptag_Down ttbarplusw 0.892522 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_restoptag_Up ttbarplusw 1.0675 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_restoptag_Down ttbarplusw 0.929234 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_restoptag_Up ttbarplusw 0.977192 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_restoptag_Down ttbarplusw 1.02393 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_restoptag_Up ttbarplusw 1.12501 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_restoptag_Down ttbarplusw 0.868757 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_restoptag_Up ttbarplusw 1.07861 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_restoptag_Down ttbarplusw 0.917279 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_restoptag_Up ttbarplusw 1.08366 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_restoptag_Down ttbarplusw 0.911907 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_restoptag_Up ttbarplusw 0.977192 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_restoptag_Down ttbarplusw 1.02393 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restoptag_Up ttbarplusw 0.977192 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restoptag_Down ttbarplusw 1.02393 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_restoptag_Up ttbarplusw 1.1879 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_restoptag_Down ttbarplusw 0.802753 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_restoptag_Up ttbarplusw 1.30001 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_restoptag_Down ttbarplusw 0.686295 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restoptag_Up ttbarplusw 0.677895 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restoptag_Down ttbarplusw 1.33754 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_Up ttbarplusw 0.999701 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_Down ttbarplusw 1.00033 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_Up ttbarplusw 1.00025 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_Down ttbarplusw 0.999724 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ivfunc_Up ttbarplusw 0.999877 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ivfunc_Down ttbarplusw 1.00014 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ivfunc_Up ttbarplusw 1.00036 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ivfunc_Down ttbarplusw 0.9996 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ivfunc_Up ttbarplusw 1.00035 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ivfunc_Down ttbarplusw 0.999608 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ivfunc_Up ttbarplusw 1.00008 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ivfunc_Down ttbarplusw 0.999916 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ivfunc_Up ttbarplusw 0.998892 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ivfunc_Down ttbarplusw 1.00123 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ivfunc_Up ttbarplusw 1.00099 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ivfunc_Down ttbarplusw 0.998896 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ivfunc_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ivfunc_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ivfunc_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ivfunc_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ivfunc_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ivfunc_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ivfunc_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ivfunc_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ivfunc_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ivfunc_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ivfunc_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ivfunc_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ivfunc_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ivfunc_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ivfunc_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ivfunc_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ivfunc_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ivfunc_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ivfunc_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ivfunc_Down ttbarplusw 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_Up ttbarplusw 0.999956 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_Down ttbarplusw 1.00005 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ivfunc_Up ttbarplusw 0.998227 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ivfunc_Down ttbarplusw 1.00197 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ivfunc_Up ttbarplusw 1.00039 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ivfunc_Down ttbarplusw 0.99957 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ivfunc_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ivfunc_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ivfunc_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ivfunc_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ivfunc_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ivfunc_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ivfunc_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ivfunc_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ivfunc_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ivfunc_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ivfunc_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ivfunc_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ivfunc_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ivfunc_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ivfunc_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ivfunc_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ivfunc_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ivfunc_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ivfunc_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ivfunc_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ivfunc_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ivfunc_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ivfunc_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ivfunc_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ivfunc_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ivfunc_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ivfunc_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ivfunc_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ivfunc_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Up ttbarplusw 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Down ttbarplusw 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Up ttbarplusw 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Down ttbarplusw 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Up ttbarplusw 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Down ttbarplusw 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_Up ttbarplusw 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_Down ttbarplusw 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_Up ttbarplusw 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_Down ttbarplusw 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_Up ttbarplusw 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_Down ttbarplusw 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ivfunc_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ivfunc_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ivfunc_Down ttbarplusw 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_Up ttbarplusw 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_tau_Up ttbarplusw 0.954522 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_tau_Down ttbarplusw 0.954522 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_tau_Up ttbarplusw 0.959445 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_tau_Down ttbarplusw 0.959445 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_tau_Up ttbarplusw 0.961255 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_tau_Down ttbarplusw 0.961255 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_tau_Up ttbarplusw 0.960584 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_tau_Down ttbarplusw 0.960584 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_tau_Up ttbarplusw 0.93334 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_tau_Down ttbarplusw 0.93334 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_tau_Up ttbarplusw 0.932023 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_tau_Down ttbarplusw 0.932023 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_tau_Up ttbarplusw 0.920484 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_tau_Down ttbarplusw 0.920484 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_tau_Up ttbarplusw 0.914833 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_tau_Down ttbarplusw 0.914833 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_tau_Up ttbarplusw 0.963534 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_tau_Down ttbarplusw 0.963534 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_tau_Up ttbarplusw 0.96902 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_tau_Down ttbarplusw 0.96902 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_tau_Up ttbarplusw 0.971072 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_tau_Down ttbarplusw 0.971072 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_tau_Up ttbarplusw 0.974342 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_tau_Down ttbarplusw 0.974342 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_tau_Up ttbarplusw 0.956842 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_tau_Down ttbarplusw 0.956842 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_tau_Up ttbarplusw 0.948077 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_tau_Down ttbarplusw 0.948077 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_tau_Up ttbarplusw 0.972079 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_tau_Down ttbarplusw 0.972079 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_tau_Up ttbarplusw 0.94364 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_tau_Down ttbarplusw 0.94364 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_tau_Up ttbarplusw 0.950753 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_tau_Down ttbarplusw 0.950753 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_tau_Up ttbarplusw 0.948738 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_tau_Down ttbarplusw 0.948738 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_tau_Up ttbarplusw 0.954014 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_tau_Down ttbarplusw 0.954014 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_tau_Up ttbarplusw 0.926253 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_tau_Down ttbarplusw 0.926253 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_tau_Up ttbarplusw 0.927006 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_tau_Down ttbarplusw 0.927006 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_tau_Up ttbarplusw 0.926123 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_tau_Down ttbarplusw 0.926123 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_tau_Up ttbarplusw 0.891439 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_tau_Down ttbarplusw 0.891439 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_tau_Up ttbarplusw 0.867028 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_tau_Down ttbarplusw 0.867028 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_tau_Up ttbarplusw 0.946922 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_tau_Down ttbarplusw 0.946922 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_tau_Up ttbarplusw 0.947797 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_tau_Down ttbarplusw 0.947797 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_tau_Up ttbarplusw 0.929311 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_tau_Down ttbarplusw 0.929311 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_tau_Up ttbarplusw 0.933469 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_tau_Down ttbarplusw 0.933469 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_tau_Up ttbarplusw 0.921507 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_tau_Down ttbarplusw 0.921507 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_tau_Up ttbarplusw 0.904827 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_tau_Down ttbarplusw 0.904827 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_tau_Up ttbarplusw 0.877989 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_tau_Down ttbarplusw 0.877989 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_tau_Up ttbarplusw 0.88027 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_tau_Down ttbarplusw 0.88027 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_tau_Up ttbarplusw 0.959238 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_tau_Down ttbarplusw 0.959238 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_tau_Up ttbarplusw 0.950339 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_tau_Down ttbarplusw 0.950339 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_tau_Up ttbarplusw 0.959606 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_tau_Down ttbarplusw 0.959606 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_tau_Up ttbarplusw 0.949867 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_tau_Down ttbarplusw 0.949867 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_tau_Up ttbarplusw 0.95597 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_tau_Down ttbarplusw 0.95597 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_tau_Up ttbarplusw 0.969011 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_tau_Down ttbarplusw 0.969011 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_tau_Up ttbarplusw 0.952877 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_tau_Down ttbarplusw 0.952877 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_tau_Up ttbarplusw 0.954189 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_tau_Down ttbarplusw 0.954189 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_tau_Up ttbarplusw 0.942174 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_tau_Down ttbarplusw 0.942174 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_tau_Up ttbarplusw 0.945334 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_tau_Down ttbarplusw 0.945334 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_tau_Up ttbarplusw 0.941563 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_tau_Down ttbarplusw 0.941563 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_tau_Up ttbarplusw 0.960045 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_tau_Down ttbarplusw 0.960045 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_tau_Up ttbarplusw 0.93488 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_tau_Down ttbarplusw 0.93488 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_tau_Up ttbarplusw 0.939412 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_tau_Down ttbarplusw 0.939412 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_tau_Up ttbarplusw 0.952409 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_tau_Down ttbarplusw 0.952409 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_tau_Up ttbarplusw 0.932467 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_tau_Down ttbarplusw 0.932467 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_tau_Up ttbarplusw 0.945602 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_tau_Down ttbarplusw 0.945602 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_tau_Up ttbarplusw 0.940659 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_tau_Down ttbarplusw 0.940659 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_tau_Up ttbarplusw 0.958398 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_tau_Down ttbarplusw 0.958398 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_tau_Up ttbarplusw 0.974015 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_tau_Down ttbarplusw 0.974015 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_tau_Up ttbarplusw 0.972249 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_tau_Down ttbarplusw 0.972249 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_Up ttbarplusw 0.954865 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_Down ttbarplusw 0.954865 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_Up ttbarplusw 0.957752 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_Down ttbarplusw 0.957752 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_Up ttbarplusw 0.965683 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_Down ttbarplusw 0.965683 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_Up ttbarplusw 0.948752 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_Down ttbarplusw 0.948752 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_Up ttbarplusw 0.952178 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_Down ttbarplusw 0.952178 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_Up ttbarplusw 0.95083 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_Down ttbarplusw 0.95083 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_Up ttbarplusw 0.954773 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_Down ttbarplusw 0.954773 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_Up ttbarplusw 0.944279 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_Down ttbarplusw 0.944279 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_Up ttbarplusw 0.966549 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_Down ttbarplusw 0.966549 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_Up ttbarplusw 0.959765 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_Down ttbarplusw 0.959765 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_Up ttbarplusw 0.952204 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_Down ttbarplusw 0.952204 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_Up ttbarplusw 0.933943 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_Down ttbarplusw 0.933943 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_Up ttbarplusw 0.967508 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_Down ttbarplusw 0.967508 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_Up ttbarplusw 0.959521 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_Down ttbarplusw 0.959521 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_Up ttbarplusw 0.952112 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_Down ttbarplusw 0.952112 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_Up ttbarplusw 0.923974 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_Down ttbarplusw 0.923974 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_Up ttbarplusw 0.95973 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_Down ttbarplusw 0.95973 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_Up ttbarplusw 0.939936 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_Down ttbarplusw 0.939936 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_Up ttbarplusw 0.953358 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_Down ttbarplusw 0.953358 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_Up ttbarplusw 0.965351 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_Down ttbarplusw 0.965351 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_Up ttbarplusw 0.958053 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_Down ttbarplusw 0.958053 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_Up ttbarplusw 0.947806 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_Down ttbarplusw 0.947806 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_Up ttbarplusw 0.968221 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_Down ttbarplusw 0.968221 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_Up ttbarplusw 0.991631 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_Down ttbarplusw 0.991631 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_Up ttbarplusw 0.964272 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_Down ttbarplusw 0.964272 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_tau_Up ttbarplusw 0.952264 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_tau_Down ttbarplusw 0.952264 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_tau_Up ttbarplusw 0.955134 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_tau_Down ttbarplusw 0.955134 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_tau_Up ttbarplusw 0.952929 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_tau_Down ttbarplusw 0.952929 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_tau_Up ttbarplusw 0.980871 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_tau_Down ttbarplusw 0.980871 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_tau_Up ttbarplusw 0.983923 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_tau_Down ttbarplusw 0.983923 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_tau_Up ttbarplusw 0.97308 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_tau_Down ttbarplusw 0.97308 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_tau_Up ttbarplusw 0.964459 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_tau_Down ttbarplusw 0.964459 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_tau_Up ttbarplusw 0.963699 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_tau_Down ttbarplusw 0.963699 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_tau_Up ttbarplusw 0.960212 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_tau_Down ttbarplusw 0.960212 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_tau_Up ttbarplusw 0.958808 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_tau_Down ttbarplusw 0.958808 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_tau_Up ttbarplusw 0.956638 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_tau_Down ttbarplusw 0.956638 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_tau_Up ttbarplusw 0.967434 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_tau_Down ttbarplusw 0.967434 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_tau_Up ttbarplusw 0.958018 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_tau_Down ttbarplusw 0.958018 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_tau_Up ttbarplusw 0.93599 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_tau_Down ttbarplusw 0.93599 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_tau_Up ttbarplusw 0.962905 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_tau_Down ttbarplusw 0.962905 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_tau_Up ttbarplusw 0.946456 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_tau_Down ttbarplusw 0.946456 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_tau_Up ttbarplusw 0.978124 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_tau_Down ttbarplusw 0.978124 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_tau_Up ttbarplusw 0.966942 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_tau_Down ttbarplusw 0.966942 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_tau_Up ttbarplusw 0.957334 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_tau_Down ttbarplusw 0.957334 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_tau_Up ttbarplusw 0.971924 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_tau_Down ttbarplusw 0.971924 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_tau_Up ttbarplusw 0.910722 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_tau_Down ttbarplusw 0.910722 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_tau_Up ttbarplusw 0.950233 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_tau_Down ttbarplusw 0.950233 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_tau_Up ttbarplusw 0.990099 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_tau_Down ttbarplusw 0.990099 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_tau_Up ttbarplusw 0.95917 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_tau_Down ttbarplusw 0.95917 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_tau_Up ttbarplusw 0.985 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_tau_Down ttbarplusw 0.985 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_tau_Up ttbarplusw 0.955669 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_tau_Down ttbarplusw 0.955669 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_tau_Up ttbarplusw 0.821461 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_tau_Down ttbarplusw 0.821461 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_Up ttbarplusw 0.963008 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_Down ttbarplusw 0.963008 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_Up ttbarplusw 0.911405 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_Down ttbarplusw 0.911405 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_Up ttbarplusw 0.937921 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_Down ttbarplusw 0.937921 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_Up ttbarplusw 0.969132 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_Down ttbarplusw 0.969132 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_Up ttbarplusw 0.871566 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_Down ttbarplusw 0.871566 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_Up ttbarplusw 0.876078 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_Down ttbarplusw 0.876078 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_Up ttbarplusw 0.975272 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_Down ttbarplusw 0.975272 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_Up ttbarplusw 0.919182 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_Down ttbarplusw 0.919182 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_Up ttbarplusw 0.95393 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_Down ttbarplusw 0.95393 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_tau_Up ttbarplusw 0.965736 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_tau_Down ttbarplusw 0.965736 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_tau_Up ttbarplusw 0.964383 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_tau_Down ttbarplusw 0.964383 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_tau_Up ttbarplusw 0.907256 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_tau_Down ttbarplusw 0.907256 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_tau_Up ttbarplusw 0.991218 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_tau_Down ttbarplusw 0.991218 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_tau_Up ttbarplusw 0.99368 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_tau_Down ttbarplusw 0.99368 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_tau_Up ttbarplusw 0.991487 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_tau_Down ttbarplusw 0.991487 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_Up ttbarplusw 0.965646 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_Down ttbarplusw 0.965646 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_tau_Up ttbarplusw 0.961424 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_tau_Down ttbarplusw 0.961424 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_tau_Up ttbarplusw 0.933674 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_tau_Down ttbarplusw 0.933674 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_tau_Up ttbarplusw 0.950018 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_tau_Down ttbarplusw 0.950018 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_tau_Up ttbarplusw 0.953286 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_tau_Down ttbarplusw 0.953286 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_Up ttbarplusw 0.977529 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_Down ttbarplusw 0.977529 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_tau_Up ttbarplusw 0.932204 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_tau_Down ttbarplusw 0.932204 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_tau_Up ttbarplusw 0.949454 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_tau_Down ttbarplusw 0.949454 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_tau_Up ttbarplusw 0.92841 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_tau_Down ttbarplusw 0.92841 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_tau_Up ttbarplusw 0.938202 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_tau_Down ttbarplusw 0.938202 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_Up ttbarplusw 0.987586 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_Down ttbarplusw 0.987586 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_tau_Up ttbarplusw 0.990596 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_tau_Down ttbarplusw 0.990596 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_tau_Up ttbarplusw 0.958428 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_tau_Down ttbarplusw 0.958428 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_tau_Up ttbarplusw 0.992501 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_tau_Down ttbarplusw 0.992501 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_tau_Up ttbarplusw 0.870082 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_tau_Down ttbarplusw 0.870082 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_tau_Up ttbarplusw 0.802684 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_tau_Down ttbarplusw 0.802684 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_tau_Up ttbarplusw 0.995013 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_tau_Down ttbarplusw 0.995013 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_tau_Up ttbarplusw 0.963204 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_tau_Down ttbarplusw 0.963204 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_tau_Up ttbarplusw 0.962675 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_tau_Down ttbarplusw 0.962675 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_tau_Up ttbarplusw 0.966947 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_tau_Down ttbarplusw 0.966947 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_tau_Up ttbarplusw 0.989933 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_tau_Down ttbarplusw 0.989933 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_tau_Up ttbarplusw 0.873622 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_tau_Down ttbarplusw 0.873622 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_tau_Up ttbarplusw 0.936977 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_tau_Down ttbarplusw 0.936977 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_tau_Up ttbarplusw 0.96944 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_tau_Down ttbarplusw 0.96944 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_tau_Up ttbarplusw 0.817122 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_tau_Down ttbarplusw 0.817122 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_tau_Up ttbarplusw 0.995176 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_tau_Down ttbarplusw 0.995176 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_tau_Up ttbarplusw 0.986075 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_tau_Down ttbarplusw 0.986075 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_Up ttbarplusw 0.9989 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_Down ttbarplusw 0.9989 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_tau_Up ttbarplusw 0.963001 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_tau_Down ttbarplusw 0.963001 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_tau_Up ttbarplusw 0.977226 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_tau_Down ttbarplusw 0.977226 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_tau_Up ttbarplusw 0.870148 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_tau_Down ttbarplusw 0.870148 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_tau_Up ttbarplusw 0.995216 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_tau_Down ttbarplusw 0.995216 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_Up ttbarplusw 0.998721 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_Down ttbarplusw 0.998721 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_tau_Up ttbarplusw 0.955617 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_tau_Down ttbarplusw 0.955617 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_tau_Up ttbarplusw 0.95013 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_tau_Down ttbarplusw 0.95013 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_tau_Up ttbarplusw 0.959207 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_tau_Down ttbarplusw 0.959207 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_tau_Up ttbarplusw 0.961234 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_tau_Down ttbarplusw 0.961234 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_tau_Up ttbarplusw 0.942925 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_tau_Down ttbarplusw 0.942925 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_tau_Up ttbarplusw 0.889252 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_tau_Down ttbarplusw 0.889252 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_tau_Up ttbarplusw 0.949431 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_tau_Down ttbarplusw 0.949431 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_tau_Up ttbarplusw 0.927179 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_tau_Down ttbarplusw 0.927179 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_tau_Up ttbarplusw 0.872823 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_tau_Down ttbarplusw 0.872823 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_tau_Up ttbarplusw 0.967003 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_tau_Down ttbarplusw 0.967003 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_tau_Up ttbarplusw 0.932829 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_tau_Down ttbarplusw 0.932829 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_tau_Up ttbarplusw 0.947154 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_tau_Down ttbarplusw 0.947154 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_Up ttbarplusw 0.966906 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_Down ttbarplusw 0.966906 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_tau_Up ttbarplusw 0.957667 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_tau_Down ttbarplusw 0.957667 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_tau_Up ttbarplusw 0.946149 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_tau_Down ttbarplusw 0.946149 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_Up ttbarplusw 0.959221 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_Down ttbarplusw 0.959221 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_tau_Up ttbarplusw 0.959606 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_tau_Down ttbarplusw 0.959606 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_tau_Up ttbarplusw 0.983623 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_tau_Down ttbarplusw 0.983623 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_Up ttbarplusw 0.934776 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_Down ttbarplusw 0.934776 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_tau_Up ttbarplusw 0.910058 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_tau_Down ttbarplusw 0.910058 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_tau_Up ttbarplusw 0.988376 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_tau_Down ttbarplusw 0.988376 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_tau_Up ttbarplusw 0.967552 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_tau_Down ttbarplusw 0.967552 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_tau_Up ttbarplusw 0.969049 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_tau_Down ttbarplusw 0.969049 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_tau_Up ttbarplusw 0.978835 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_tau_Down ttbarplusw 0.978835 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_tau_Up ttbarplusw 0.947253 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_tau_Down ttbarplusw 0.947253 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_tau_Up ttbarplusw 0.942131 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_tau_Down ttbarplusw 0.942131 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_Up ttbarplusw 0.965444 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_Down ttbarplusw 0.965444 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_tau_Up ttbarplusw 0.963505 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_tau_Down ttbarplusw 0.963505 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_tau_Up ttbarplusw 0.980153 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_tau_Down ttbarplusw 0.980153 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_Up ttbarplusw 1.00548 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_Down ttbarplusw 1.00548 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_toptag_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_toptag_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_toptag_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_toptag_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_toptag_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_toptag_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_toptag_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_toptag_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_toptag_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_toptag_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_toptag_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_toptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_toptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_toptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_toptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_toptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_toptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_toptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_toptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_toptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_toptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_toptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_toptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_toptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_toptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_toptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_toptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_toptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_toptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_toptag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_toptag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_toptag_Down ttbarplusw 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_Up ttbarplusw 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_Down ttbarplusw 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_toptag_Up ttbarplusw 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_toptag_Down ttbarplusw 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_toptag_Up ttbarplusw 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_toptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_toptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_toptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_toptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_toptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_toptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_toptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_toptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_toptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_toptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_toptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_toptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_toptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_toptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_toptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_toptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_toptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_toptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_toptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_toptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_toptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_toptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_toptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_toptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_toptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_toptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_toptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_toptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_toptag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_toptag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_toptag_Down ttbarplusw 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Up ttbarplusw 0.997825 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Down ttbarplusw 1.00219 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Up ttbarplusw 0.997319 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Down ttbarplusw 1.00271 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Up ttbarplusw 0.993818 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Down ttbarplusw 1.00629 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Up ttbarplusw 0.994114 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Down ttbarplusw 1.006 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Up ttbarplusw 0.995871 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Down ttbarplusw 1.00417 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Up ttbarplusw 0.993367 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Down ttbarplusw 1.00676 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Up ttbarplusw 0.989656 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Down ttbarplusw 1.01063 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Up ttbarplusw 0.991004 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Down ttbarplusw 1.00925 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_Up ttbarplusw 0.986692 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_Down ttbarplusw 1.01367 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_Up ttbarplusw 0.988964 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_Down ttbarplusw 1.01128 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_Up ttbarplusw 0.991975 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_Down ttbarplusw 1.00816 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_Up ttbarplusw 0.993407 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_Down ttbarplusw 1.00668 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_Up ttbarplusw 0.984525 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_Down ttbarplusw 1.01597 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_Up ttbarplusw 0.986629 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_Down ttbarplusw 1.01374 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_Up ttbarplusw 0.988965 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_Down ttbarplusw 1.01128 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_Up ttbarplusw 0.988447 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_Down ttbarplusw 1.01183 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_Up ttbarplusw 1.07185 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_Down ttbarplusw 0.927457 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_Up ttbarplusw 1.05197 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_Down ttbarplusw 0.946652 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_Up ttbarplusw 1.06263 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_Down ttbarplusw 0.936362 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_Up ttbarplusw 1.0546 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_Down ttbarplusw 0.944076 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Up ttbarplusw 1.05869 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Down ttbarplusw 0.940387 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Up ttbarplusw 1.05447 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Down ttbarplusw 0.944862 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_Up ttbarplusw 1.0475 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_Down ttbarplusw 0.951175 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_Up ttbarplusw 1.05877 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_Down ttbarplusw 0.940375 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_Up ttbarplusw 1.05646 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_Down ttbarplusw 0.942967 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_toptag_Up ttbarplusw 0.99589 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_toptag_Down ttbarplusw 1.00414 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_toptag_Up ttbarplusw 0.990844 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_toptag_Down ttbarplusw 1.00933 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_toptag_Up ttbarplusw 0.988789 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_toptag_Down ttbarplusw 1.01147 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_toptag_Up ttbarplusw 0.985716 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_toptag_Down ttbarplusw 1.0147 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_toptag_Up ttbarplusw 0.987843 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_toptag_Down ttbarplusw 1.01246 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_toptag_Up ttbarplusw 0.992929 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_toptag_Down ttbarplusw 1.00717 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_toptag_Up ttbarplusw 0.996312 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_toptag_Down ttbarplusw 1.00372 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_toptag_Up ttbarplusw 0.99097 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_toptag_Down ttbarplusw 1.0092 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_toptag_Up ttbarplusw 0.987514 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_toptag_Down ttbarplusw 1.01281 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_toptag_Up ttbarplusw 0.98711 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_toptag_Down ttbarplusw 1.01323 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_toptag_Up ttbarplusw 0.992069 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_toptag_Down ttbarplusw 1.00806 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Up ttbarplusw 0.986999 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Down ttbarplusw 1.01335 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_Up ttbarplusw 0.989411 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_Down ttbarplusw 1.01082 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_Up ttbarplusw 0.992187 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_Down ttbarplusw 1.00794 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Up ttbarplusw 0.992302 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Down ttbarplusw 1.00782 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Up ttbarplusw 0.993967 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Down ttbarplusw 1.00611 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_toptag_Up ttbarplusw 0.985201 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_toptag_Down ttbarplusw 1.01525 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_toptag_Up ttbarplusw 0.987127 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_toptag_Down ttbarplusw 1.01321 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_toptag_Up ttbarplusw 0.991073 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_toptag_Down ttbarplusw 1.00909 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_toptag_Up ttbarplusw 0.992862 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_toptag_Down ttbarplusw 1.00724 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_toptag_Up ttbarplusw 0.995013 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_toptag_Down ttbarplusw 1.00504 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_toptag_Up ttbarplusw 1.06823 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_toptag_Down ttbarplusw 0.931023 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_toptag_Up ttbarplusw 1.07116 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_toptag_Down ttbarplusw 0.927513 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_toptag_Up ttbarplusw 1.06959 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_toptag_Down ttbarplusw 0.929646 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_toptag_Up ttbarplusw 1.05889 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_toptag_Down ttbarplusw 0.940012 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_toptag_Up ttbarplusw 0.994567 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_toptag_Down ttbarplusw 1.00549 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_toptag_Up ttbarplusw 0.990849 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_toptag_Down ttbarplusw 1.00932 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_Up ttbarplusw 1.07069 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_Down ttbarplusw 0.928665 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_Up ttbarplusw 1.04681 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_Down ttbarplusw 0.952066 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_Up ttbarplusw 1.06273 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_Down ttbarplusw 0.936858 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_Up ttbarplusw 1.05292 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_Down ttbarplusw 0.945557 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Up ttbarplusw 1.05317 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Down ttbarplusw 0.945546 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Up ttbarplusw 1.04804 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Down ttbarplusw 0.950826 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_Up ttbarplusw 1.04995 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_Down ttbarplusw 0.948544 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_Up ttbarplusw 1.0581 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_Down ttbarplusw 0.940001 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_Up ttbarplusw 1.06134 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_Down ttbarplusw 0.937491 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_toptag_Up ttbarplusw 0.995897 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_toptag_Down ttbarplusw 1.00414 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_toptag_Up ttbarplusw 0.991259 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_toptag_Down ttbarplusw 1.0089 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_toptag_Up ttbarplusw 0.989081 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_toptag_Down ttbarplusw 1.01116 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_toptag_Up ttbarplusw 0.983528 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_toptag_Down ttbarplusw 1.01703 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_toptag_Up ttbarplusw 0.985966 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_toptag_Down ttbarplusw 1.01444 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_toptag_Up ttbarplusw 0.98798 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_toptag_Down ttbarplusw 1.01232 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_Up ttbarplusw 0.996612 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_Down ttbarplusw 1.00341 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_toptag_Up ttbarplusw 0.991705 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_toptag_Down ttbarplusw 1.00843 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_toptag_Up ttbarplusw 0.988686 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_toptag_Down ttbarplusw 1.01158 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_toptag_Up ttbarplusw 0.988324 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_toptag_Down ttbarplusw 1.01196 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_toptag_Up ttbarplusw 0.996732 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_toptag_Down ttbarplusw 1.00329 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Up ttbarplusw 0.984948 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Down ttbarplusw 1.01552 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_Up ttbarplusw 0.98731 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_Down ttbarplusw 1.01302 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_Up ttbarplusw 0.988484 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_Down ttbarplusw 1.01179 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Up ttbarplusw 0.988189 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Down ttbarplusw 1.0121 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Up ttbarplusw 0.988492 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Down ttbarplusw 1.01178 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_Up ttbarplusw 0.983495 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_Down ttbarplusw 1.01707 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_toptag_Up ttbarplusw 0.986991 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_toptag_Down ttbarplusw 1.01336 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_toptag_Up ttbarplusw 0.991101 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_toptag_Down ttbarplusw 1.00906 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_toptag_Up ttbarplusw 0.984167 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_toptag_Down ttbarplusw 1.01635 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_toptag_Up ttbarplusw 0.990626 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_toptag_Down ttbarplusw 1.00955 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_toptag_Up ttbarplusw 1.05241 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_toptag_Down ttbarplusw 0.94699 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_toptag_Up ttbarplusw 1.06047 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_toptag_Down ttbarplusw 0.938196 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_toptag_Up ttbarplusw 1.07194 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_toptag_Down ttbarplusw 0.927467 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_toptag_Up ttbarplusw 1.05853 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_toptag_Down ttbarplusw 0.940425 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_toptag_Up ttbarplusw 1.05134 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_toptag_Down ttbarplusw 0.947516 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_toptag_Up ttbarplusw 1.04387 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_toptag_Down ttbarplusw 0.954631 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_toptag_Up ttbarplusw 1.04557 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_toptag_Down ttbarplusw 0.953112 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_toptag_Up ttbarplusw 1.0618 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_toptag_Down ttbarplusw 0.936682 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_toptag_Up ttbarplusw 0.994327 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_toptag_Down ttbarplusw 1.00574 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_toptag_Up ttbarplusw 0.989172 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_toptag_Down ttbarplusw 1.01107 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_toptag_Up ttbarplusw 1.09095 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_toptag_Down ttbarplusw 0.908066 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_toptag_Up ttbarplusw 1.0625 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_toptag_Down ttbarplusw 0.936079 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_Up ttbarplusw 0.994189 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_Down ttbarplusw 1.00588 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_toptag_Up ttbarplusw 0.995042 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_toptag_Down ttbarplusw 1.00501 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_toptag_Up ttbarplusw 0.989081 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_toptag_Down ttbarplusw 1.01116 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_toptag_Up ttbarplusw 0.984245 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_toptag_Down ttbarplusw 1.01627 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_toptag_Up ttbarplusw 0.98798 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_toptag_Down ttbarplusw 1.01232 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_Up ttbarplusw 1.00317 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_Down ttbarplusw 0.996796 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_toptag_Up ttbarplusw 1.07307 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_toptag_Down ttbarplusw 0.926401 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_toptag_Up ttbarplusw 1.05929 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_toptag_Down ttbarplusw 0.939475 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_toptag_Up ttbarplusw 1.06079 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_toptag_Down ttbarplusw 0.938548 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Up ttbarplusw 1.0523 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Down ttbarplusw 0.94592 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_toptag_Up ttbarplusw 1.05355 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_toptag_Down ttbarplusw 0.945157 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_toptag_Up ttbarplusw 1.06139 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_toptag_Down ttbarplusw 0.937109 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_toptag_Up ttbarplusw 1.0538 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_toptag_Down ttbarplusw 0.944664 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_toptag_Up ttbarplusw 1.03314 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_toptag_Down ttbarplusw 0.96525 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_toptag_Up ttbarplusw 1.03974 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_toptag_Down ttbarplusw 0.959554 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_toptag_Up ttbarplusw 0.994855 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_toptag_Down ttbarplusw 1.0052 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_toptag_Up ttbarplusw 0.988854 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_toptag_Down ttbarplusw 1.0114 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_toptag_Up ttbarplusw 0.991857 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_toptag_Down ttbarplusw 1.00828 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_Up ttbarplusw 0.996413 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_Down ttbarplusw 1.00361 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_toptag_Up ttbarplusw 0.989805 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_toptag_Down ttbarplusw 1.01041 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_toptag_Up ttbarplusw 0.994651 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_toptag_Down ttbarplusw 1.00541 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Up ttbarplusw 0.983563 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Down ttbarplusw 1.017 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_toptag_Up ttbarplusw 0.988205 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_toptag_Down ttbarplusw 1.01208 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_toptag_Up ttbarplusw 0.988068 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_toptag_Down ttbarplusw 1.01222 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_Up ttbarplusw 0.986102 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_Down ttbarplusw 1.01429 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_toptag_Up ttbarplusw 0.97682 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_toptag_Down ttbarplusw 1.02431 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_toptag_Up ttbarplusw 0.99132 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_toptag_Down ttbarplusw 1.00883 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_toptag_Up ttbarplusw 1.07904 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_toptag_Down ttbarplusw 0.919896 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_toptag_Up ttbarplusw 1.0658 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_toptag_Down ttbarplusw 0.933513 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_toptag_Up ttbarplusw 1.05781 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_toptag_Down ttbarplusw 0.940902 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_toptag_Up ttbarplusw 0.993386 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_toptag_Down ttbarplusw 1.0067 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_toptag_Up ttbarplusw 1.10753 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_toptag_Down ttbarplusw 0.89103 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_Up ttbarplusw 0.993386 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_Down ttbarplusw 1.0067 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_toptag_Up ttbarplusw 0.994855 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_toptag_Down ttbarplusw 1.0052 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_toptag_Up ttbarplusw 0.989132 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_toptag_Down ttbarplusw 1.01111 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_Up ttbarplusw 1.08399 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_Down ttbarplusw 0.914888 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_Up ttbarplusw 0.999996 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_Down ttbarplusw 0.99999 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_Up ttbarplusw 0.999998 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_Up ttbarplusw 0.999996 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_Up ttbarplusw 1.00004 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_Down ttbarplusw 0.99996 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_Up ttbarplusw 0.99995 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_Down ttbarplusw 1.00005 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_Up ttbarplusw 1.00003 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_Down ttbarplusw 0.999974 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_Up ttbarplusw 1.00012 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_Down ttbarplusw 0.999888 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_Up ttbarplusw 1.00003 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_Down ttbarplusw 0.99994 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_Up ttbarplusw 1.00003 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_Down ttbarplusw 0.999977 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 trigger_err_Up ttbarplusw 1.00005 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 trigger_err_Down ttbarplusw 0.999954 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf trigger_err_Up ttbarplusw 1.00004 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf trigger_err_Down ttbarplusw 0.999966 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 trigger_err_Up ttbarplusw 1.00011 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 trigger_err_Down ttbarplusw 0.999941 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 trigger_err_Up ttbarplusw 1.00027 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 trigger_err_Down ttbarplusw 0.999739 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 trigger_err_Up ttbarplusw 1.00007 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 trigger_err_Down ttbarplusw 0.999921 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf trigger_err_Up ttbarplusw 0.999676 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf trigger_err_Down ttbarplusw 1.00027 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_Up ttbarplusw 0.999988 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_Down ttbarplusw 1.00001 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 trigger_err_Up ttbarplusw 0.999962 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 trigger_err_Down ttbarplusw 1.00004 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 trigger_err_Up ttbarplusw 0.999801 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 trigger_err_Down ttbarplusw 1.00019 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf trigger_err_Up ttbarplusw 0.999735 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf trigger_err_Down ttbarplusw 1.00026 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 trigger_err_Up ttbarplusw 0.999913 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 trigger_err_Down ttbarplusw 1.00009 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 trigger_err_Up ttbarplusw 1.00006 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 trigger_err_Down ttbarplusw 0.999934 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf trigger_err_Up ttbarplusw 0.999915 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf trigger_err_Down ttbarplusw 1.00006 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_Up ttbarplusw 0.999904 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_Down ttbarplusw 1.0001 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_Up ttbarplusw 0.999822 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_Down ttbarplusw 1.00017 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 trigger_err_Up ttbarplusw 1.00003 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 trigger_err_Down ttbarplusw 0.99997 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf trigger_err_Up ttbarplusw 0.99985 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf trigger_err_Down ttbarplusw 1.00013 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_Up ttbarplusw 1.00005 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_Down ttbarplusw 0.999971 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_Up ttbarplusw 0.99995 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_Down ttbarplusw 1.00005 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 trigger_err_Up ttbarplusw 0.999832 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 trigger_err_Down ttbarplusw 1.00016 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf trigger_err_Up ttbarplusw 1.00009 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf trigger_err_Down ttbarplusw 0.999924 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_Up ttbarplusw 0.999999 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_Down ttbarplusw 0.999999 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 trigger_err_Up ttbarplusw 1.00005 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 trigger_err_Down ttbarplusw 0.999951 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf trigger_err_Up ttbarplusw 0.999671 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf trigger_err_Down ttbarplusw 1.00029 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 trigger_err_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 trigger_err_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 trigger_err_Up ttbarplusw 0.99994 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 trigger_err_Down ttbarplusw 1.00006 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf trigger_err_Up ttbarplusw 1.0001 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf trigger_err_Down ttbarplusw 0.999887 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_Up ttbarplusw 0.999998 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 trigger_err_Up ttbarplusw 1.00004 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 trigger_err_Down ttbarplusw 0.999962 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf trigger_err_Up ttbarplusw 1.00009 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf trigger_err_Down ttbarplusw 0.999912 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_Up ttbarplusw 0.999998 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 trigger_err_Up ttbarplusw 1.00004 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 trigger_err_Down ttbarplusw 0.999956 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf trigger_err_Up ttbarplusw 0.999905 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf trigger_err_Down ttbarplusw 1.00009 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 trigger_err_Up ttbarplusw 1.00009 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 trigger_err_Down ttbarplusw 1.00001 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 trigger_err_Up ttbarplusw 0.999889 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 trigger_err_Down ttbarplusw 1.00009 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf trigger_err_Up ttbarplusw 0.999855 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf trigger_err_Down ttbarplusw 1.00014 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 trigger_err_Up ttbarplusw 1.00002 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 trigger_err_Down ttbarplusw 0.999963 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 trigger_err_Up ttbarplusw 0.999846 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 trigger_err_Down ttbarplusw 1.00014 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf trigger_err_Up ttbarplusw 0.99995 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf trigger_err_Down ttbarplusw 1.00004 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_Up ttbarplusw 1.00014 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_Down ttbarplusw 0.999884 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 trigger_err_Up ttbarplusw 0.999874 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 trigger_err_Down ttbarplusw 1.00012 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf trigger_err_Up ttbarplusw 0.999846 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf trigger_err_Down ttbarplusw 1.00013 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Up ttbarplusw 1.00001 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Down ttbarplusw 0.999995 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Up ttbarplusw 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Down ttbarplusw 0.999997 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Up ttbarplusw 1.00002 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Down ttbarplusw 0.999983 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Up ttbarplusw 1.00019 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Down ttbarplusw 0.999819 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Up ttbarplusw 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Down ttbarplusw 0.999996 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Up ttbarplusw 0.999999 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Down ttbarplusw 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Up ttbarplusw 0.999981 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Down ttbarplusw 1.00002 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Up ttbarplusw 1.0001 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Down ttbarplusw 0.999902 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_Up ttbarplusw 0.999993 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_Down ttbarplusw 1.00001 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_Up ttbarplusw 1.00004 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_Down ttbarplusw 0.999955 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_Up ttbarplusw 1.00006 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_Down ttbarplusw 0.999951 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_Up ttbarplusw 0.999896 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_Down ttbarplusw 1.0001 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_Up ttbarplusw 1.00001 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_Down ttbarplusw 0.999988 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_Up ttbarplusw 0.999958 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_Down ttbarplusw 1.00004 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_Up ttbarplusw 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_Down ttbarplusw 1.00001 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_Up ttbarplusw 0.999864 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_Down ttbarplusw 1.00012 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_Up ttbarplusw 0.999776 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_Down ttbarplusw 1.0002 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_Up ttbarplusw 0.999679 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_Down ttbarplusw 1.00031 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_Up ttbarplusw 0.999708 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_Down ttbarplusw 1.0003 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_Up ttbarplusw 0.999986 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_Down ttbarplusw 1.00003 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_Up ttbarplusw 0.999954 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_Down ttbarplusw 1.00005 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_Up ttbarplusw 1.00005 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_Down ttbarplusw 0.999933 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_Up ttbarplusw 1.00007 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_Down ttbarplusw 0.999961 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_Up ttbarplusw 0.99969 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_Down ttbarplusw 1.00035 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_Up ttbarplusw 0.999516 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_Down ttbarplusw 1.00048 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 trigger_err_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 trigger_err_Down ttbarplusw 0.999993 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 trigger_err_Up ttbarplusw 1.00006 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 trigger_err_Down ttbarplusw 0.99994 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf trigger_err_Up ttbarplusw 1.00053 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf trigger_err_Down ttbarplusw 0.999526 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 trigger_err_Up ttbarplusw 1.00006 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 trigger_err_Down ttbarplusw 0.999937 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 trigger_err_Up ttbarplusw 0.999994 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 trigger_err_Down ttbarplusw 1.00001 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf trigger_err_Up ttbarplusw 0.999753 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf trigger_err_Down ttbarplusw 1.00026 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 trigger_err_Up ttbarplusw 1.00001 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 trigger_err_Down ttbarplusw 0.999987 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 trigger_err_Up ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 trigger_err_Down ttbarplusw 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 trigger_err_Up ttbarplusw 0.99997 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 trigger_err_Down ttbarplusw 1.00005 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 trigger_err_Up ttbarplusw 1.0001 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 trigger_err_Down ttbarplusw 0.999903 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf trigger_err_Up ttbarplusw 0.99984 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf trigger_err_Down ttbarplusw 1.00015 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Up ttbarplusw 0.999971 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Down ttbarplusw 1.00003 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 trigger_err_Up ttbarplusw 0.999984 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 trigger_err_Down ttbarplusw 1.00002 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 trigger_err_Up ttbarplusw 1.00007 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 trigger_err_Down ttbarplusw 0.999911 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 trigger_err_Up ttbarplusw 1.00019 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 trigger_err_Down ttbarplusw 0.999799 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf trigger_err_Up ttbarplusw 0.999499 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf trigger_err_Down ttbarplusw 1.00046 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 trigger_err_Up ttbarplusw 1.00002 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 trigger_err_Down ttbarplusw 0.999981 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 trigger_err_Up ttbarplusw 0.999925 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 trigger_err_Down ttbarplusw 1.00008 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 trigger_err_Up ttbarplusw 0.9997 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 trigger_err_Down ttbarplusw 1.00039 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 trigger_err_Up ttbarplusw 0.9996 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 trigger_err_Down ttbarplusw 1.00042 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf trigger_err_Up ttbarplusw 1.00037 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf trigger_err_Down ttbarplusw 0.999684 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 trigger_err_Up ttbarplusw 1.00004 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 trigger_err_Down ttbarplusw 0.999937 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf trigger_err_Up ttbarplusw 1.00059 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf trigger_err_Down ttbarplusw 0.999509 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 trigger_err_Up ttbarplusw 0.999831 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 trigger_err_Down ttbarplusw 1.00013 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf trigger_err_Up ttbarplusw 0.999632 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf trigger_err_Down ttbarplusw 1.00033 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 trigger_err_Up ttbarplusw 1.00005 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 trigger_err_Down ttbarplusw 0.999943 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf trigger_err_Up ttbarplusw 1.00281 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf trigger_err_Down ttbarplusw 0.997357 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_Up ttbarplusw 0.999766 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_Down ttbarplusw 1.00022 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_Up ttbarplusw 0.999456 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_Down ttbarplusw 1.00048 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_Up ttbarplusw 0.999942 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_Down ttbarplusw 1.00006 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_Up ttbarplusw 0.999962 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_Down ttbarplusw 1.00005 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_Up ttbarplusw 0.999866 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_Down ttbarplusw 1.00015 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_Up ttbarplusw 1.0002 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_Down ttbarplusw 0.999819 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_Up ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_Down ttbarplusw 1.00003 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_Up ttbarplusw 1.0013 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_Down ttbarplusw 0.998702 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_Up ttbarplusw 0.99978 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_Down ttbarplusw 1.00026 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 trigger_err_Up ttbarplusw 1.00003 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 trigger_err_Down ttbarplusw 0.999961 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 trigger_err_Up ttbarplusw 1.00006 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 trigger_err_Down ttbarplusw 0.999942 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf trigger_err_Up ttbarplusw 1.00041 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf trigger_err_Down ttbarplusw 0.999537 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 trigger_err_Up ttbarplusw 0.999984 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 trigger_err_Down ttbarplusw 1.00004 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 trigger_err_Up ttbarplusw 1.00031 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 trigger_err_Down ttbarplusw 0.999669 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf trigger_err_Up ttbarplusw 0.999995 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf trigger_err_Down ttbarplusw 1.0001 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_Up ttbarplusw 1.00003 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_Down ttbarplusw 0.999972 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 trigger_err_Up ttbarplusw 1.00001 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 trigger_err_Down ttbarplusw 0.999991 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 trigger_err_Up ttbarplusw 1.00008 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 trigger_err_Down ttbarplusw 0.999955 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 trigger_err_Up ttbarplusw 1.00028 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 trigger_err_Down ttbarplusw 0.999728 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf trigger_err_Up ttbarplusw 1.00056 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf trigger_err_Down ttbarplusw 0.999481 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Up ttbarplusw 1.00001 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Down ttbarplusw 0.999985 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 trigger_err_Up ttbarplusw 0.999965 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 trigger_err_Down ttbarplusw 1.00004 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 trigger_err_Up ttbarplusw 1.0001 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 trigger_err_Down ttbarplusw 0.999979 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 trigger_err_Up ttbarplusw 0.999509 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 trigger_err_Down ttbarplusw 1.00045 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf trigger_err_Up ttbarplusw 0.998976 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf trigger_err_Down ttbarplusw 1.00097 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_Up ttbarplusw 1.00009 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_Down ttbarplusw 0.999897 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 trigger_err_Up ttbarplusw 0.999838 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 trigger_err_Down ttbarplusw 1.00017 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 trigger_err_Up ttbarplusw 0.999388 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 trigger_err_Down ttbarplusw 1.00066 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 trigger_err_Up ttbarplusw 0.998724 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 trigger_err_Down ttbarplusw 1.00119 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf trigger_err_Up ttbarplusw 0.999963 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf trigger_err_Down ttbarplusw 1.00008 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 trigger_err_Up ttbarplusw 0.999396 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 trigger_err_Down ttbarplusw 1.00056 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf trigger_err_Up ttbarplusw 1.00038 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf trigger_err_Down ttbarplusw 0.99976 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 trigger_err_Up ttbarplusw 0.999844 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 trigger_err_Down ttbarplusw 1.00017 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 trigger_err_Up ttbarplusw 0.999804 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 trigger_err_Down ttbarplusw 1.0002 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf trigger_err_Up ttbarplusw 1.00075 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf trigger_err_Down ttbarplusw 0.999228 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 trigger_err_Up ttbarplusw 1.00039 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 trigger_err_Down ttbarplusw 0.999568 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 trigger_err_Up ttbarplusw 1.00012 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 trigger_err_Down ttbarplusw 0.999878 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf trigger_err_Up ttbarplusw 1.00053 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf trigger_err_Down ttbarplusw 0.999634 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 trigger_err_Up ttbarplusw 0.999952 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 trigger_err_Down ttbarplusw 1.00004 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf trigger_err_Up ttbarplusw 1.00077 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf trigger_err_Down ttbarplusw 0.999412 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 trigger_err_Up ttbarplusw 0.999706 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 trigger_err_Down ttbarplusw 1.00033 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf trigger_err_Up ttbarplusw 0.998674 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf trigger_err_Down ttbarplusw 1.00104 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_Up ttbarplusw 0.999696 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_Down ttbarplusw 1.00033 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 trigger_err_Up ttbarplusw 0.999994 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 trigger_err_Down ttbarplusw 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf trigger_err_Up ttbarplusw 0.99931 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf trigger_err_Down ttbarplusw 1.00062 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 trigger_err_Up ttbarplusw 1.00017 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 trigger_err_Down ttbarplusw 0.999788 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf trigger_err_Up ttbarplusw 0.999996 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf trigger_err_Down ttbarplusw 1.00016 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_Up ttbarplusw 0.999772 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_Down ttbarplusw 1.00022 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 trigger_err_Up ttbarplusw 0.999866 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 trigger_err_Down ttbarplusw 1.00015 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 trigger_err_Up ttbarplusw 0.999822 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 trigger_err_Down ttbarplusw 1.00019 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf trigger_err_Up ttbarplusw 1.00001 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf trigger_err_Down ttbarplusw 1.00001 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 trigger_err_Up ttbarplusw 1.00015 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 trigger_err_Down ttbarplusw 0.99984 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 trigger_err_Up ttbarplusw 1.00012 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 trigger_err_Down ttbarplusw 0.999917 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf trigger_err_Up ttbarplusw 0.998785 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf trigger_err_Down ttbarplusw 1.00112 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 trigger_err_Up ttbarplusw 0.99993 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 trigger_err_Down ttbarplusw 1.00008 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 trigger_err_Up ttbarplusw 1.00008 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 trigger_err_Down ttbarplusw 0.999904 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf trigger_err_Up ttbarplusw 1.00125 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf trigger_err_Down ttbarplusw 0.998784 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 trigger_err_Up ttbarplusw 1.00003 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 trigger_err_Down ttbarplusw 0.999968 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 trigger_err_Up ttbarplusw 1.00004 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 trigger_err_Down ttbarplusw 0.999944 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf trigger_err_Up ttbarplusw 0.999532 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf trigger_err_Down ttbarplusw 1.00041 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_Up ttbarplusw 1.00006 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_Down ttbarplusw 0.999934 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 trigger_err_Up ttbarplusw 0.999898 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 trigger_err_Down ttbarplusw 1.00012 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf trigger_err_Up ttbarplusw 1.00009 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf trigger_err_Down ttbarplusw 0.999969 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Up ttbarplusw 0.999868 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Down ttbarplusw 1.00014 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 trigger_err_Up ttbarplusw 0.999897 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 trigger_err_Down ttbarplusw 1.00011 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf trigger_err_Up ttbarplusw 1.00055 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf trigger_err_Down ttbarplusw 0.999492 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_Up ttbarplusw 0.999891 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_Down ttbarplusw 1.00013 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 trigger_err_Up ttbarplusw 1.0005 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 trigger_err_Down ttbarplusw 0.999514 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf trigger_err_Up ttbarplusw 1.00146 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf trigger_err_Down ttbarplusw 0.998573 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf trigger_err_Up ttbarplusw 0.999926 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf trigger_err_Down ttbarplusw 1.00008 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 trigger_err_Up ttbarplusw 0.999593 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 trigger_err_Down ttbarplusw 1.00046 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf trigger_err_Up ttbarplusw 0.999882 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf trigger_err_Down ttbarplusw 1.00006 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf trigger_err_Up ttbarplusw 1.00023 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf trigger_err_Down ttbarplusw 0.999762 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf trigger_err_Up ttbarplusw 1.00021 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf trigger_err_Down ttbarplusw 0.999801 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_Up ttbarplusw 1.00019 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_Down ttbarplusw 0.999676 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 trigger_err_Up ttbarplusw 0.999883 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 trigger_err_Down ttbarplusw 1.00014 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf trigger_err_Up ttbarplusw 1.00009 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf trigger_err_Down ttbarplusw 1.00002 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_Up ttbarplusw 0.999552 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_Down ttbarplusw 1.00057 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_Down ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_Up ttbarplusw 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_wtag_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_wtag_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_wtag_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_wtag_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_wtag_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_wtag_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_wtag_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_wtag_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_wtag_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_wtag_Down ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_wtag_Up ttbarplusw 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_wtag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_wtag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_wtag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_wtag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_wtag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_wtag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_wtag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_wtag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_wtag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_wtag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_wtag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_wtag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_wtag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_wtag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_wtag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_wtag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_wtag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_wtag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_wtag_Down ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_wtag_Up ttbarplusw 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_wtag_Down ttbarplusw 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_Up ttbarplusw 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_Down ttbarplusw 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_wtag_Up ttbarplusw 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_wtag_Down ttbarplusw 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_wtag_Up ttbarplusw 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_wtag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_wtag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_wtag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_wtag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_wtag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_wtag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_wtag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_wtag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_wtag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_wtag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_wtag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_wtag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_wtag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_wtag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_wtag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_wtag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_wtag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_wtag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_wtag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_wtag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_wtag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_wtag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_wtag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_wtag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_wtag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_wtag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_wtag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_wtag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_wtag_Down ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_wtag_Up ttbarplusw 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_wtag_Down ttbarplusw 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Up ttbarplusw 0.996776 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Down ttbarplusw 1.00325 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Up ttbarplusw 0.997315 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Down ttbarplusw 1.00271 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Up ttbarplusw 0.997862 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Down ttbarplusw 1.00215 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Up ttbarplusw 0.99852 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Down ttbarplusw 1.00149 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Up ttbarplusw 0.997575 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Down ttbarplusw 1.00244 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Up ttbarplusw 0.997531 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Down ttbarplusw 1.00249 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Up ttbarplusw 0.997278 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Down ttbarplusw 1.00274 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Up ttbarplusw 0.998747 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Down ttbarplusw 1.00126 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_Up ttbarplusw 0.996862 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_Down ttbarplusw 1.00316 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_Up ttbarplusw 0.997131 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_Down ttbarplusw 1.00289 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_Up ttbarplusw 0.99693 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_Down ttbarplusw 1.00309 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_Up ttbarplusw 0.997628 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_Down ttbarplusw 1.00238 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_Up ttbarplusw 0.996374 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_Down ttbarplusw 1.00365 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_Up ttbarplusw 0.997105 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_Down ttbarplusw 1.00291 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_Up ttbarplusw 0.998635 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_Down ttbarplusw 1.00137 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_Up ttbarplusw 0.998128 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_Down ttbarplusw 1.00188 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_Up ttbarplusw 0.996357 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_Down ttbarplusw 1.00367 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_Up ttbarplusw 0.997299 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_Down ttbarplusw 1.00272 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_Up ttbarplusw 0.996994 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_Down ttbarplusw 1.00302 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_Up ttbarplusw 0.996705 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_Down ttbarplusw 1.00332 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Up ttbarplusw 0.99746 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Down ttbarplusw 1.00255 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Up ttbarplusw 0.99771 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Down ttbarplusw 1.0023 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_Up ttbarplusw 0.998011 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_Down ttbarplusw 1.002 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_Up ttbarplusw 0.998769 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_Down ttbarplusw 1.00123 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_Up ttbarplusw 0.997147 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_Down ttbarplusw 1.00287 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_wtag_Up ttbarplusw 1.07902 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_wtag_Down ttbarplusw 0.920384 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_wtag_Up ttbarplusw 1.07479 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_wtag_Down ttbarplusw 0.924707 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_wtag_Up ttbarplusw 1.08886 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_wtag_Down ttbarplusw 0.910685 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_wtag_Up ttbarplusw 1.06747 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_wtag_Down ttbarplusw 0.932236 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_wtag_Up ttbarplusw 1.06225 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_wtag_Down ttbarplusw 0.937407 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_wtag_Up ttbarplusw 1.04249 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_wtag_Down ttbarplusw 0.957272 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_wtag_Up ttbarplusw 0.99625 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_wtag_Down ttbarplusw 1.00378 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_wtag_Up ttbarplusw 0.996653 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_wtag_Down ttbarplusw 1.00337 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_wtag_Up ttbarplusw 0.997603 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_wtag_Down ttbarplusw 1.00241 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_wtag_Up ttbarplusw 0.997299 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_wtag_Down ttbarplusw 1.00272 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_wtag_Up ttbarplusw 0.996994 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_wtag_Down ttbarplusw 1.00302 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Up ttbarplusw 0.996625 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Down ttbarplusw 1.0034 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_Up ttbarplusw 0.996921 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_Down ttbarplusw 1.0031 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_Up ttbarplusw 0.996676 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_Down ttbarplusw 1.00335 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Up ttbarplusw 0.99746 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Down ttbarplusw 1.00255 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Up ttbarplusw 0.99771 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Down ttbarplusw 1.0023 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_wtag_Up ttbarplusw 0.998017 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_wtag_Down ttbarplusw 1.00199 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_wtag_Up ttbarplusw 0.997998 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_wtag_Down ttbarplusw 1.00201 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_wtag_Up ttbarplusw 0.998013 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_wtag_Down ttbarplusw 1.00199 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_wtag_Up ttbarplusw 0.998769 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_wtag_Down ttbarplusw 1.00123 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_wtag_Up ttbarplusw 0.997147 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_wtag_Down ttbarplusw 1.00287 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_wtag_Up ttbarplusw 1.08262 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_wtag_Down ttbarplusw 0.916786 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_wtag_Up ttbarplusw 1.06252 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_wtag_Down ttbarplusw 0.937161 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_wtag_Up ttbarplusw 0.996407 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_wtag_Down ttbarplusw 1.00362 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_wtag_Up ttbarplusw 0.99743 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_wtag_Down ttbarplusw 1.00258 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_wtag_Up ttbarplusw 1.08274 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_wtag_Down ttbarplusw 0.916662 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_wtag_Up ttbarplusw 1.15383 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_wtag_Down ttbarplusw 0.845377 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_Up ttbarplusw 0.99682 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_Down ttbarplusw 1.0032 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_Up ttbarplusw 0.997268 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_Down ttbarplusw 1.00275 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_Up ttbarplusw 0.999357 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_Down ttbarplusw 1.00064 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_Up ttbarplusw 0.996772 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_Down ttbarplusw 1.00325 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Up ttbarplusw 0.999255 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Down ttbarplusw 1.00075 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Up ttbarplusw 0.996842 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Down ttbarplusw 1.00318 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_Up ttbarplusw 0.997425 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_Down ttbarplusw 1.00259 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_Up ttbarplusw 0.999355 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_Down ttbarplusw 1.00065 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_Up ttbarplusw 0.999697 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_Down ttbarplusw 1.0003 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_wtag_Up ttbarplusw 1.07278 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_wtag_Down ttbarplusw 0.926741 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_wtag_Up ttbarplusw 1.07337 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_wtag_Down ttbarplusw 0.926157 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_wtag_Up ttbarplusw 1.08752 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_wtag_Down ttbarplusw 0.912145 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_wtag_Up ttbarplusw 1.05845 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_wtag_Down ttbarplusw 0.941165 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_wtag_Up ttbarplusw 1.09317 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_wtag_Down ttbarplusw 0.906536 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_wtag_Up ttbarplusw 1.04644 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_wtag_Down ttbarplusw 0.953511 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_Up ttbarplusw 0.996742 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_Down ttbarplusw 1.00328 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_wtag_Up ttbarplusw 0.996873 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_wtag_Down ttbarplusw 1.00315 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_wtag_Up ttbarplusw 0.998072 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_wtag_Down ttbarplusw 1.00194 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_wtag_Up ttbarplusw 0.997268 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_wtag_Down ttbarplusw 1.00275 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_wtag_Up ttbarplusw 0.999357 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_wtag_Down ttbarplusw 1.00064 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Up ttbarplusw 0.99628 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Down ttbarplusw 1.00375 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_Up ttbarplusw 0.996867 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_Down ttbarplusw 1.00315 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_Up ttbarplusw 0.999159 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_Down ttbarplusw 1.00084 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Up ttbarplusw 0.999255 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Down ttbarplusw 1.00075 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Up ttbarplusw 0.996842 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Down ttbarplusw 1.00318 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_Up ttbarplusw 0.99654 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_Down ttbarplusw 1.00348 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_wtag_Up ttbarplusw 0.99843 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_wtag_Down ttbarplusw 1.00158 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_wtag_Up ttbarplusw 0.999484 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_wtag_Down ttbarplusw 1.00052 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_wtag_Up ttbarplusw 0.999355 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_wtag_Down ttbarplusw 1.00065 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_wtag_Up ttbarplusw 0.999697 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_wtag_Down ttbarplusw 1.0003 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_wtag_Up ttbarplusw 1.07689 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_wtag_Down ttbarplusw 0.922616 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_wtag_Up ttbarplusw 1.04636 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_wtag_Down ttbarplusw 0.953466 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_wtag_Up ttbarplusw 0.996702 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_wtag_Down ttbarplusw 1.00332 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_wtag_Up ttbarplusw 0.99683 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_wtag_Down ttbarplusw 1.00319 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_wtag_Up ttbarplusw 0.998092 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_wtag_Down ttbarplusw 1.00192 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_wtag_Up ttbarplusw 0.996735 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_wtag_Down ttbarplusw 1.00329 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_wtag_Up ttbarplusw 0.99844 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_wtag_Down ttbarplusw 1.00156 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_wtag_Up ttbarplusw 0.999518 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_wtag_Down ttbarplusw 1.00048 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_wtag_Up ttbarplusw 1.09341 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_wtag_Down ttbarplusw 0.905993 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_wtag_Up ttbarplusw 1.04945 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_wtag_Down ttbarplusw 0.950369 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_wtag_Up ttbarplusw 0.996745 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_wtag_Down ttbarplusw 1.00328 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_wtag_Up ttbarplusw 0.998314 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_wtag_Down ttbarplusw 1.00169 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_Up ttbarplusw 1.08371 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_Down ttbarplusw 0.915767 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_wtag_Up ttbarplusw 0.996726 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_wtag_Down ttbarplusw 1.0033 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_wtag_Up ttbarplusw 0.998092 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_wtag_Down ttbarplusw 1.00192 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_wtag_Up ttbarplusw 0.997237 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_wtag_Down ttbarplusw 1.00278 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_wtag_Up ttbarplusw 0.999518 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_wtag_Down ttbarplusw 1.00048 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_Up ttbarplusw 1.03294 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_Down ttbarplusw 0.966854 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_wtag_Up ttbarplusw 0.996983 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_wtag_Down ttbarplusw 1.00303 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_wtag_Up ttbarplusw 0.995865 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_wtag_Down ttbarplusw 1.00417 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_wtag_Up ttbarplusw 0.999885 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_wtag_Down ttbarplusw 1.00012 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Up ttbarplusw 0.996285 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Down ttbarplusw 1.00374 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_wtag_Up ttbarplusw 0.996286 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_wtag_Down ttbarplusw 1.00374 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_wtag_Up ttbarplusw 0.999739 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_wtag_Down ttbarplusw 1.00026 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_wtag_Up ttbarplusw 0.997657 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_wtag_Down ttbarplusw 1.00235 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_wtag_Up ttbarplusw 0.998995 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_wtag_Down ttbarplusw 1.00101 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_wtag_Up ttbarplusw 0.987854 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_wtag_Down ttbarplusw 1.01245 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_wtag_Up ttbarplusw 1.0712 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_wtag_Down ttbarplusw 0.928362 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_wtag_Up ttbarplusw 1.07221 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_wtag_Down ttbarplusw 0.92722 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_wtag_Up ttbarplusw 1.0745 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_wtag_Down ttbarplusw 0.925183 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_Up ttbarplusw 0.996983 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_Down ttbarplusw 1.00303 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_wtag_Up ttbarplusw 0.995865 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_wtag_Down ttbarplusw 1.00417 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_wtag_Up ttbarplusw 0.999885 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_wtag_Down ttbarplusw 1.00012 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Up ttbarplusw 0.996285 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Down ttbarplusw 1.00374 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_wtag_Up ttbarplusw 0.996286 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_wtag_Down ttbarplusw 1.00374 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_wtag_Up ttbarplusw 0.999739 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_wtag_Down ttbarplusw 1.00026 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_Up ttbarplusw 0.997657 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_Down ttbarplusw 1.00235 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_wtag_Up ttbarplusw 0.998995 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_wtag_Down ttbarplusw 1.00101 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_wtag_Up ttbarplusw 0.987854 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_wtag_Down ttbarplusw 1.01245 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_wtag_Up ttbarplusw 1.08722 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_wtag_Down ttbarplusw 0.912209 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_wtag_Up ttbarplusw 0.996927 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_wtag_Down ttbarplusw 1.00309 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_wtag_Up ttbarplusw 0.996261 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_wtag_Down ttbarplusw 1.00377 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_wtag_Up ttbarplusw 1.0698 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_wtag_Down ttbarplusw 0.929746 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_wtag_Up ttbarplusw 0.996757 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_wtag_Down ttbarplusw 1.00326 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_Up ttbarplusw 1.11625 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_Down ttbarplusw 0.882989 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_wtag_Up ttbarplusw 0.996927 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_wtag_Down ttbarplusw 1.00309 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_wtag_Up ttbarplusw 0.996261 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_wtag_Down ttbarplusw 1.00377 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_Up ttbarplusw 1.05584 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_Down ttbarplusw 0.943797 diff --git a/Datacards/setup/SUSYNano19/values_unc_qcd.conf b/Datacards/setup/SUSYNano19/values_unc_qcd.conf deleted file mode 100644 index e4214b9..0000000 --- a/Datacards/setup/SUSYNano19/values_unc_qcd.conf +++ /dev/null @@ -1,5124 +0,0 @@ -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_up qcd 0.997432 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_down qcd 1.00256 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_up qcd 0.996753 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_down qcd 1.00329 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_up qcd 0.990567 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_down qcd 1.0102 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_up qcd 1.0103 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_down qcd 0.989752 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_up qcd 1.00218 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_down qcd 0.997882 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_up qcd 0.990364 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_down qcd 1.00953 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_up qcd 1.00761 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_down qcd 0.992218 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_up qcd 1.01137 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_down qcd 0.988573 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_up qcd 1.00415 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_down qcd 0.995661 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_up qcd 1.01897 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_down qcd 0.981289 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 b_up qcd 1.01688 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 b_down qcd 0.983499 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf b_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf b_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 b_up qcd 0.972293 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 b_down qcd 1.02747 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 b_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 b_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 b_up qcd 0.962756 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 b_down qcd 1.03541 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf b_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf b_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_up qcd 0.997141 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_down qcd 1.00014 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 b_up qcd 0.992972 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 b_down qcd 1.00487 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 b_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 b_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf b_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf b_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_up qcd 0.94457 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_down qcd 1.05809 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 b_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 b_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 b_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 b_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf b_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf b_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_up qcd 1.06645 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_down qcd 0.928554 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_up qcd 0.971108 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_down qcd 1.02929 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 b_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 b_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf b_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf b_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_up qcd 1.03952 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_down qcd 0.959229 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_up qcd 0.988147 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_down qcd 1.01311 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 b_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 b_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf b_up qcd 0.959345 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf b_down qcd 1.0406 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_up qcd 1.05425 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_down qcd 0.942089 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 b_up qcd 1.03726 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 b_down qcd 0.950792 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf b_up qcd 2 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf b_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 b_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 b_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 b_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 b_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf b_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf b_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_up qcd 1.21719 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_down qcd 0.794013 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 b_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 b_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf b_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf b_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_up qcd 1.00116 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_down qcd 0.99906 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 b_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 b_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf b_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf b_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 b_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 b_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 b_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 b_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf b_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf b_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 b_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 b_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 b_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 b_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf b_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf b_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_up qcd 1.03319 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_down qcd 0.96585 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 b_up qcd 0.968152 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 b_down qcd 1.0253 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf b_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf b_down qcd 0.001 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_up qcd 1.03735 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_down qcd 0.962557 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_up qcd 1.0125 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_down qcd 0.98706 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_up qcd 0.976087 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_down qcd 1.02392 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_up qcd 2 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_down qcd 0.001 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_up qcd 1.13476 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_down qcd 0.85972 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_up qcd 0.864101 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_down qcd 1.15945 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_up qcd 0.927526 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_down qcd 1.08097 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_up qcd 2 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_up qcd 1.0078 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_down qcd 0.991081 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_up qcd 1.01772 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_down qcd 0.980576 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_up qcd 0.959639 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_down qcd 1.04339 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_up qcd 0.941678 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_down qcd 1.06431 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_up qcd 0.998364 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_down qcd 0.998151 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_up qcd 1.04814 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_down qcd 0.953585 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_up qcd 1.10436 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_down qcd 0.884158 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_up qcd 0.922177 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_down qcd 1.08158 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 b_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 b_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 b_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 b_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf b_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf b_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_up qcd 0.98774 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_down qcd 1.01389 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 b_up qcd 0.968861 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 b_down qcd 1.03259 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 b_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 b_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf b_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf b_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 b_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 b_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 b_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 b_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf b_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf b_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 b_up qcd 0.883801 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 b_down qcd 1.12714 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 b_up qcd 0.948245 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 b_down qcd 1.05657 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf b_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf b_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 b_up qcd 0.989251 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 b_down qcd 1.01247 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 b_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 b_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 b_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 b_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 b_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 b_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf b_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf b_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 b_up qcd 0.980617 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 b_down qcd 1.02127 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 b_up qcd 0.904649 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 b_down qcd 1.10497 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 b_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 b_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 b_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 b_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf b_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf b_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 b_up qcd 0.917945 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 b_down qcd 1.09006 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 b_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 b_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 b_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 b_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 b_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 b_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf b_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf b_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 b_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 b_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf b_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf b_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 b_up qcd 0.950601 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 b_down qcd 1.053 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf b_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf b_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 b_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 b_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf b_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 b_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 b_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf b_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 b_up qcd 0.972685 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 b_down qcd 1.03567 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 b_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf b_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 b_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 b_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf b_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 b_up qcd 0.998411 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 b_down qcd 1.00213 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 b_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf b_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_up qcd 1.1193 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_down qcd 0.882039 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 b_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 b_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 b_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf b_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_up qcd 0.914287 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_down qcd 1.092 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 b_up qcd 0.965851 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 b_down qcd 1.04041 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 b_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 b_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf b_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_up qcd 0.981665 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_down qcd 1.02073 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 b_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 b_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 b_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf b_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 b_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf b_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 b_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 b_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf b_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 b_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 b_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf b_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 b_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf b_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 b_up qcd 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf b_up qcd 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 b_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf b_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 b_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf b_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf b_down qcd 0.001 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf b_up qcd 2 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf b_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 b_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 b_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 b_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 b_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf b_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf b_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 b_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 b_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 b_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 b_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf b_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf b_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 b_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 b_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 b_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 b_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf b_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf b_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 b_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 b_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 b_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 b_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf b_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf b_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 b_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 b_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf b_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf b_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 b_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 b_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf b_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf b_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 b_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 b_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf b_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf b_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf b_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf b_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 b_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 b_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf b_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf b_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf b_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf b_down qcd 0.001 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf b_up qcd 2 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf b_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 b_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 b_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf b_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf b_down qcd 0.001 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf b_up qcd 2 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf b_down qcd 0.001 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_e_up qcd 1.0018 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_e_down qcd 0.998146 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_e_up qcd 1.00266 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_e_down qcd 0.997259 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_e_up qcd 1.00365 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_e_down qcd 0.996232 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_e_up qcd 1.00733 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_e_down qcd 0.992438 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_e_up qcd 1.0015 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_e_down qcd 0.998448 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_e_up qcd 1.00204 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_e_down qcd 0.997891 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_e_up qcd 1.00356 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_e_down qcd 0.996324 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_e_up qcd 1.00364 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_e_down qcd 0.996243 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_e_up qcd 1.00245 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_e_down qcd 0.997469 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_e_up qcd 1.00653 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_e_down qcd 0.993268 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_e_up qcd 1.0046 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_e_down qcd 0.995255 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_e_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_e_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_e_up qcd 1.0024 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_e_down qcd 0.99752 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_e_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_e_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_e_up qcd 1.0024 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_e_down qcd 0.99752 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_e_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_e_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_e_up qcd 1.0051 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_e_down qcd 0.99476 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_e_up qcd 1.01059 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_e_down qcd 0.989123 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_e_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_e_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_e_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_e_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_e_up qcd 1.00661 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_e_down qcd 0.99321 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_e_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_e_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_e_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_e_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_e_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_e_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_e_up qcd 1.00182 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_e_down qcd 0.998131 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_e_up qcd 1.00222 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_e_down qcd 0.99772 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_e_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_e_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_e_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_e_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_e_up qcd 1.005 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_e_down qcd 0.994872 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_e_up qcd 1.00776 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_e_down qcd 0.992044 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_e_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_e_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_e_up qcd 1.0055 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_e_down qcd 0.994427 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_e_up qcd 1.00344 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_e_down qcd 0.996467 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_e_up qcd 1.00646 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_e_down qcd 0.993372 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_e_up qcd 2 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_e_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_e_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_e_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_e_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_e_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_e_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_e_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_e_up qcd 1.01065 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_e_down qcd 0.989049 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_e_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_e_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_e_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_e_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_e_up qcd 1.0051 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_e_down qcd 0.994771 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_e_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_e_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_e_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_e_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_e_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_e_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_e_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_e_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_e_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_e_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_e_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_e_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_e_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_e_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_e_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_e_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_e_up qcd 1.01358 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_e_down qcd 0.986111 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_e_up qcd 1.00702 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_e_down qcd 0.992919 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_e_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_e_down qcd 0.001 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_up qcd 1.00338 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_down qcd 0.996526 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_up qcd 1.00637 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_down qcd 0.993447 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_up qcd 1.00919 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_down qcd 0.99054 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_up qcd 2 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_down qcd 0.001 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_up qcd 1.01094 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_down qcd 0.988743 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_up qcd 1.0309 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_down qcd 0.968196 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_up qcd 1.02644 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_down qcd 0.972782 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_up qcd 2 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_up qcd 1.00085 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_down qcd 0.999131 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_up qcd 1.00143 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_down qcd 0.998536 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_up qcd 1.00174 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_down qcd 0.998212 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_up qcd 1.00325 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_down qcd 0.996658 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_up qcd 1.00099 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_down qcd 0.998979 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_up qcd 1.00169 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_down qcd 0.998263 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_up qcd 1.0018 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_down qcd 0.998148 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_up qcd 1.0032 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_down qcd 0.996707 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_up qcd 1.00115 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_down qcd 0.99882 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_up qcd 1.00085 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_down qcd 0.999123 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_e_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_e_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_e_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_e_up qcd 1.00075 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_e_down qcd 0.999233 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_e_up qcd 1.00128 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_e_down qcd 0.998684 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_e_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_e_up qcd 1.00221 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_e_down qcd 0.997724 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_e_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_e_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_e_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_e_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_e_up qcd 1.00094 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_e_down qcd 0.999034 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_e_up qcd 1.00167 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_e_down qcd 0.998287 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_e_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_e_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_e_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_e_up qcd 1.00067 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_e_down qcd 0.99931 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_e_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_e_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_e_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_e_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_e_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_e_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_e_up qcd 1.0018 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_e_down qcd 0.998145 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_e_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_e_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_e_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_e_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_up qcd 1.00108 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_down qcd 0.998891 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_e_up qcd 1.00089 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_e_down qcd 0.999088 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_up qcd 1.00213 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_down qcd 0.997806 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_up qcd 1.00097 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_down qcd 0.999005 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_e_up qcd 1.00166 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_e_down qcd 0.998295 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_up qcd 1.00082 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_down qcd 0.999152 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_e_down qcd 0.001 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_up qcd 2 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_e_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_e_down qcd 0.001 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_up qcd 2 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_down qcd 0.001 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ISR_Weight_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ISR_Weight_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ISR_Weight_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ISR_Weight_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ISR_Weight_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ISR_Weight_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ISR_Weight_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ISR_Weight_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ISR_Weight_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ISR_Weight_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ISR_Weight_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ISR_Weight_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ISR_Weight_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ISR_Weight_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ISR_Weight_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ISR_Weight_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ISR_Weight_up qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ISR_Weight_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ISR_Weight_up qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ISR_Weight_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ISR_Weight_up qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ISR_Weight_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ISR_Weight_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ISR_Weight_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ISR_Weight_up qcd 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ISR_Weight_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ISR_Weight_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ISR_Weight_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ISR_Weight_up qcd 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ISR_Weight_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ISR_Weight_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ISR_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ISR_Weight_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ISR_Weight_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ISR_Weight_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ISR_Weight_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ISR_Weight_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ISR_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ISR_Weight_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ISR_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ISR_Weight_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ISR_Weight_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ISR_Weight_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ISR_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ISR_Weight_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ISR_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ISR_Weight_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ISR_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ISR_Weight_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ISR_Weight_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ISR_Weight_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ISR_Weight_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ISR_Weight_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ISR_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ISR_Weight_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ISR_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ISR_Weight_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ISR_Weight_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ISR_Weight_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ISR_Weight_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ISR_Weight_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ISR_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ISR_Weight_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ISR_Weight_down qcd 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ISR_Weight_up qcd 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ISR_Weight_down qcd 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ISR_Weight_up qcd 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ISR_Weight_down qcd 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ISR_Weight_up qcd 2 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ISR_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ISR_Weight_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ISR_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ISR_Weight_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ISR_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ISR_Weight_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ISR_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ISR_Weight_up qcd 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ISR_Weight_down qcd 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ISR_Weight_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ISR_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ISR_Weight_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ISR_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ISR_Weight_up qcd 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ISR_Weight_down qcd 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ISR_Weight_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ISR_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ISR_Weight_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ISR_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ISR_Weight_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ISR_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ISR_Weight_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ISR_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ISR_Weight_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ISR_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ISR_Weight_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ISR_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ISR_Weight_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ISR_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ISR_Weight_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ISR_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ISR_Weight_up qcd 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ISR_Weight_down qcd 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ISR_Weight_up qcd 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ISR_Weight_down qcd 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ISR_Weight_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ISR_Weight_down qcd 0.001 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ISR_Weight_up qcd 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ISR_Weight_down qcd 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ISR_Weight_up qcd 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ISR_Weight_down qcd 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ISR_Weight_up qcd 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ISR_Weight_down qcd 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ISR_Weight_up qcd 2 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ISR_Weight_down qcd 0.001 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ISR_Weight_up qcd 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ISR_Weight_down qcd 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ISR_Weight_up qcd 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ISR_Weight_down qcd 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ISR_Weight_up qcd 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ISR_Weight_down qcd 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ISR_Weight_up qcd 2 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ISR_Weight_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ISR_Weight_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ISR_Weight_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ISR_Weight_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ISR_Weight_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ISR_Weight_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ISR_Weight_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ISR_Weight_down qcd 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ISR_Weight_up qcd 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ISR_Weight_down qcd 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ISR_Weight_up qcd 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ISR_Weight_down qcd 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ISR_Weight_up qcd 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ISR_Weight_down qcd 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ISR_Weight_up qcd 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ISR_Weight_down qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ISR_Weight_up qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ISR_Weight_down qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ISR_Weight_up qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ISR_Weight_down qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ISR_Weight_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ISR_Weight_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ISR_Weight_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ISR_Weight_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ISR_Weight_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ISR_Weight_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ISR_Weight_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ISR_Weight_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ISR_Weight_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ISR_Weight_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ISR_Weight_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ISR_Weight_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ISR_Weight_up qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ISR_Weight_down qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ISR_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ISR_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ISR_Weight_up qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ISR_Weight_down qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ISR_Weight_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ISR_Weight_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ISR_Weight_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ISR_Weight_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ISR_Weight_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ISR_Weight_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ISR_Weight_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ISR_Weight_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ISR_Weight_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ISR_Weight_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ISR_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ISR_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ISR_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ISR_Weight_up qcd 2 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ISR_Weight_down qcd 0.001 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_up qcd 1.11599 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_down qcd 1.115 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_up qcd 1.10963 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_down qcd 1.13199 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_up qcd 1.1454 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_down qcd 1.15747 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_up qcd 1.33093 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_down qcd 1.3497 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_up qcd 1.0577 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_down qcd 1.08684 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_up qcd 1.09385 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_down qcd 1.07776 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_up qcd 1.18919 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_down qcd 1.18627 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_up qcd 1.04554 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_down qcd 1.04552 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_up qcd 1.10469 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_down qcd 1.10761 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_up qcd 1.6328 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_down qcd 1.63866 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 JES_up qcd 1.0659 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 JES_down qcd 1.09804 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf JES_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf JES_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 JES_up qcd 1.11752 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 JES_down qcd 1.11752 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 JES_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 JES_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 JES_up qcd 1.11752 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 JES_down qcd 1.11752 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf JES_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf JES_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_up qcd 1.21334 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_down qcd 1.22284 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 JES_up qcd 0.619849 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 JES_down qcd 0.656431 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 JES_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 JES_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf JES_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf JES_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_up qcd 1.38302 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_down qcd 1.39117 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 JES_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 JES_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 JES_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 JES_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf JES_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf JES_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_up qcd 1.04491 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_down qcd 1.04667 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_up qcd 1.08047 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_down qcd 1.09137 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 JES_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 JES_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf JES_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf JES_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_up qcd 1.11581 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_down qcd 1.11477 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_up qcd 1.2279 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_down qcd 1.22484 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 JES_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 JES_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf JES_up qcd 1.76603 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf JES_down qcd 1.77906 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_up qcd 1.28775 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_down qcd 1.28668 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 JES_up qcd 1.58691 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 JES_down qcd 1.58959 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf JES_up qcd 2 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf JES_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 JES_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 JES_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 JES_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 JES_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf JES_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf JES_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_up qcd 1.52514 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_down qcd 1.52669 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 JES_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 JES_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf JES_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf JES_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_up qcd 1.32968 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_down qcd 1.32968 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 JES_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 JES_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf JES_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf JES_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 JES_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 JES_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 JES_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 JES_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf JES_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf JES_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 JES_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 JES_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 JES_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 JES_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf JES_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf JES_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_up qcd 2.15615 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_down qcd 2.15615 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 JES_up qcd 2.62164 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 JES_down qcd 2.62164 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf JES_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf JES_down qcd 0.001 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_up qcd 1.22759 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_down qcd 1.3367 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_up qcd 1.41951 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_down qcd 1.38041 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_up qcd 1.59949 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_down qcd 1.59949 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_up qcd 2 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_down qcd 0.001 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_up qcd 1.66923 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_down qcd 2.7003 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_up qcd 3.11644 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_down qcd 3.11644 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_up qcd 2.72908 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_down qcd 2.72908 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_up qcd 2 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_up qcd 1.06259 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_down qcd 0.966463 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_up qcd 1.09714 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_down qcd 1.08625 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_up qcd 1.10532 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_down qcd 1.10346 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_up qcd 1.17076 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_down qcd 1.153 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_up qcd 1.07047 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_down qcd 1.0527 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_up qcd 1.11238 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_down qcd 1.10009 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_up qcd 1.1089 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_down qcd 1.10367 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_up qcd 1.17042 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_down qcd 1.16448 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 JES_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 JES_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 JES_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 JES_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf JES_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf JES_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_down qcd 1.09543 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 JES_up qcd 1.0613 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 JES_down qcd 1.02051 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 JES_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 JES_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf JES_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf JES_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 JES_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 JES_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 JES_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 JES_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf JES_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf JES_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 JES_up qcd 1.05517 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 JES_down qcd 1.08002 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 JES_up qcd 1.08526 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 JES_down qcd 1.07231 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf JES_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf JES_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 JES_up qcd 1.13022 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 JES_down qcd 1.20978 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 JES_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 JES_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 JES_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 JES_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 JES_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 JES_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf JES_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf JES_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 JES_up qcd 1.0788 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 JES_down qcd 1.09367 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 JES_up qcd 1.11235 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 JES_down qcd 1.10252 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 JES_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 JES_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 JES_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 JES_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf JES_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf JES_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 JES_up qcd 1.05205 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 JES_down qcd 1.07366 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 JES_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 JES_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 JES_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 JES_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 JES_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 JES_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf JES_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf JES_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 JES_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 JES_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf JES_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf JES_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 JES_up qcd 1.11552 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 JES_down qcd 1.14996 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf JES_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf JES_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 JES_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 JES_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf JES_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 JES_up qcd 1.08185 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 JES_down qcd 1.09953 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 JES_up qcd 1.07039 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 JES_down qcd 1.15854 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_up qcd 1.12718 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_down qcd 1.20497 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_up qcd 1.0553 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_down qcd 1.10446 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 JES_up qcd 1.09811 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 JES_down qcd 1.08744 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_up qcd 1.07624 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_down qcd 1.1076 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf JES_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf JES_down qcd 0.001 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf JES_up qcd 2 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 JES_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 JES_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf JES_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 JES_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 JES_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf JES_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 JES_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 JES_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf JES_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 JES_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 JES_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf JES_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 JES_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf JES_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 JES_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf JES_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 JES_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf JES_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf JES_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 JES_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf JES_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf JES_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf JES_up qcd 2 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 JES_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 JES_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf JES_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf JES_down qcd 0.001 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf JES_up qcd 2 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf JES_down qcd 0.001 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 metres_up qcd 2 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 metres_down qcd 0.001 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 metres_up qcd 2 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 metres_down qcd 0.001 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 metres_up qcd 2 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 metres_down qcd 0.001 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf metres_up qcd 2 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf metres_down qcd 0.001 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 metres_up qcd 2 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 metres_down qcd 0.001 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 metres_up qcd 2 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 metres_down qcd 0.001 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 metres_up qcd 2 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 metres_down qcd 0.001 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf metres_up qcd 2 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf metres_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 metres_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 metres_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 metres_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 metres_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 metres_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 metres_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf metres_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf metres_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 metres_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 metres_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 metres_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 metres_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 metres_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 metres_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf metres_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf metres_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 metres_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 metres_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 metres_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 metres_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 metres_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 metres_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf metres_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf metres_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 metres_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 metres_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 metres_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 metres_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 metres_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 metres_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf metres_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf metres_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 metres_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 metres_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 metres_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 metres_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 metres_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 metres_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf metres_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf metres_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 metres_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 metres_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 metres_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 metres_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 metres_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 metres_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf metres_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf metres_down qcd 0.001 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 metres_up qcd 2 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 metres_down qcd 0.001 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 metres_up qcd 2 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 metres_down qcd 0.001 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf metres_up qcd 2 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf metres_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 metres_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 metres_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 metres_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 metres_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf metres_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf metres_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 metres_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 metres_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 metres_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 metres_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf metres_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf metres_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 metres_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 metres_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 metres_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 metres_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf metres_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf metres_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 metres_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 metres_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 metres_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 metres_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf metres_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf metres_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 metres_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 metres_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 metres_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 metres_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf metres_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf metres_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 metres_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 metres_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 metres_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 metres_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf metres_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf metres_down qcd 0.001 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_up qcd 2 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_down qcd 0.001 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_up qcd 2 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_down qcd 0.001 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_up qcd 2 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_down qcd 0.001 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_up qcd 2 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_down qcd 0.001 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_up qcd 2 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_down qcd 0.001 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_up qcd 2 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_down qcd 0.001 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_up qcd 2 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_down qcd 0.001 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_up qcd 2 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_down qcd 0.001 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_up qcd 2 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_down qcd 0.001 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_up qcd 2 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_down qcd 0.001 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_up qcd 2 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_down qcd 0.001 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_up qcd 2 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 metres_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 metres_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 metres_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 metres_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf metres_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf metres_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 metres_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 metres_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 metres_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 metres_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf metres_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf metres_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 metres_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 metres_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf metres_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf metres_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 metres_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 metres_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf metres_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 metres_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf metres_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf metres_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf metres_down qcd 0.001 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf metres_up qcd 2 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 metres_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 metres_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf metres_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 metres_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 metres_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf metres_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 metres_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 metres_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf metres_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 metres_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 metres_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf metres_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 metres_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf metres_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 metres_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf metres_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 metres_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf metres_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf metres_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 metres_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf metres_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf metres_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf metres_up qcd 2 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 metres_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 metres_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf metres_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf metres_down qcd 0.001 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf metres_up qcd 2 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf metres_down qcd 0.001 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 err_mu_up qcd 1.00009 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 err_mu_down qcd 0.999913 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 err_mu_up qcd 1.00013 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 err_mu_down qcd 0.999872 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 err_mu_up qcd 1.00018 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 err_mu_down qcd 0.999824 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf err_mu_up qcd 1.00035 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf err_mu_down qcd 0.999646 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 err_mu_up qcd 1.00007 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 err_mu_down qcd 0.999929 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 err_mu_up qcd 1.0001 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 err_mu_down qcd 0.999904 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 err_mu_up qcd 1.00017 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 err_mu_down qcd 0.999832 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf err_mu_up qcd 1.00017 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf err_mu_down qcd 0.999828 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 err_mu_up qcd 1.00009 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 err_mu_down qcd 0.999909 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 err_mu_up qcd 1.00024 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 err_mu_down qcd 0.999757 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 err_mu_up qcd 1.00017 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 err_mu_down qcd 0.999829 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf err_mu_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf err_mu_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 err_mu_up qcd 1.00008 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 err_mu_down qcd 0.999917 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 err_mu_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 err_mu_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 err_mu_up qcd 1.00008 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 err_mu_down qcd 0.999917 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf err_mu_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf err_mu_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 err_mu_up qcd 1.00037 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 err_mu_down qcd 0.999631 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 err_mu_up qcd 1.00076 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 err_mu_down qcd 0.999234 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 err_mu_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 err_mu_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf err_mu_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf err_mu_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 err_mu_up qcd 1.00038 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 err_mu_down qcd 0.999623 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 err_mu_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 err_mu_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 err_mu_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 err_mu_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf err_mu_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf err_mu_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 err_mu_up qcd 1.00013 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 err_mu_down qcd 0.999867 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 err_mu_up qcd 1.00016 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 err_mu_down qcd 0.999838 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 err_mu_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 err_mu_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf err_mu_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf err_mu_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 err_mu_up qcd 1.00025 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 err_mu_down qcd 0.999754 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 err_mu_up qcd 1.00038 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 err_mu_down qcd 0.999618 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 err_mu_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 err_mu_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf err_mu_up qcd 1.00027 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf err_mu_down qcd 0.999731 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 err_mu_up qcd 1.0002 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 err_mu_down qcd 0.999802 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 err_mu_up qcd 1.00037 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 err_mu_down qcd 0.999628 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf err_mu_up qcd 2 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf err_mu_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 err_mu_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 err_mu_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 err_mu_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 err_mu_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf err_mu_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf err_mu_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 err_mu_up qcd 1.00059 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 err_mu_down qcd 0.999404 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 err_mu_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 err_mu_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf err_mu_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf err_mu_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 err_mu_up qcd 1.00028 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 err_mu_down qcd 0.999723 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 err_mu_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 err_mu_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf err_mu_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf err_mu_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 err_mu_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 err_mu_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 err_mu_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 err_mu_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf err_mu_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf err_mu_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 err_mu_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 err_mu_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 err_mu_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 err_mu_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf err_mu_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf err_mu_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 err_mu_up qcd 1.00078 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 err_mu_down qcd 0.999214 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 err_mu_up qcd 1.0004 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 err_mu_down qcd 0.999597 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf err_mu_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf err_mu_down qcd 0.001 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_up qcd 1.00019 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_down qcd 0.999805 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_up qcd 1.00037 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_down qcd 0.999633 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_up qcd 1.00053 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_down qcd 0.99947 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_up qcd 2 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_down qcd 0.001 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_up qcd 1.00059 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_down qcd 0.999409 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_up qcd 1.00167 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_down qcd 0.99833 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_up qcd 1.00143 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_down qcd 0.998571 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_up qcd 2 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_up qcd 1.00005 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_down qcd 0.999946 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_up qcd 1.00009 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_down qcd 0.999909 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_up qcd 1.00011 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_down qcd 0.999889 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_up qcd 1.00021 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_down qcd 0.999793 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_up qcd 1.00006 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_down qcd 0.999936 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_up qcd 1.00011 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_down qcd 0.999892 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_up qcd 1.00012 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_down qcd 0.999884 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_up qcd 1.00021 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_down qcd 0.999794 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_up qcd 1.00007 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_down qcd 0.999928 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_up qcd 1.00006 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_down qcd 0.999943 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 err_mu_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 err_mu_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf err_mu_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 err_mu_up qcd 1.00005 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 err_mu_down qcd 0.99995 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 err_mu_up qcd 1.00009 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 err_mu_down qcd 0.999914 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf err_mu_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 err_mu_up qcd 1.00013 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 err_mu_down qcd 0.999868 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 err_mu_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 err_mu_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 err_mu_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf err_mu_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 err_mu_up qcd 1.00006 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 err_mu_down qcd 0.999941 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 err_mu_up qcd 1.0001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 err_mu_down qcd 0.999895 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 err_mu_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 err_mu_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf err_mu_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 err_mu_up qcd 1.00004 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 err_mu_down qcd 0.999955 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 err_mu_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 err_mu_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 err_mu_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf err_mu_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 err_mu_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf err_mu_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 err_mu_up qcd 1.00011 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 err_mu_down qcd 0.999892 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf err_mu_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 err_mu_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 err_mu_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf err_mu_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_up qcd 1.00007 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_down qcd 0.999934 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 err_mu_up qcd 1.00005 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 err_mu_down qcd 0.999947 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_up qcd 1.00013 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_down qcd 0.999868 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_up qcd 1.00006 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_down qcd 0.999942 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 err_mu_up qcd 1.0001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 err_mu_down qcd 0.999901 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_up qcd 1.00005 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_down qcd 0.999949 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf err_mu_down qcd 0.001 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_up qcd 2 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf err_mu_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf err_mu_down qcd 0.001 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_up qcd 2 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_down qcd 0.001 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_up qcd 1.00068 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_down qcd 0.999354 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_up qcd 1.00101 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_down qcd 0.999042 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_up qcd 0.998747 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_down qcd 1.00127 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_up qcd 0.997726 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_down qcd 1.00234 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 Prefire_Weight_up qcd 0.995948 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 Prefire_Weight_down qcd 1.00418 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 Prefire_Weight_up qcd 0.998093 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 Prefire_Weight_down qcd 1.00196 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 Prefire_Weight_up qcd 1.00473 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 Prefire_Weight_down qcd 0.995425 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf Prefire_Weight_up qcd 1.00094 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf Prefire_Weight_down qcd 0.999227 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_up qcd 0.999183 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_down qcd 1.00083 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_up qcd 1.0022 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_down qcd 0.99792 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_up qcd 1.00334 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_down qcd 0.996763 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 Prefire_Weight_up qcd 0.987179 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 Prefire_Weight_down qcd 1.01292 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 Prefire_Weight_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 Prefire_Weight_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 Prefire_Weight_up qcd 1.00392 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 Prefire_Weight_down qcd 0.996299 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf Prefire_Weight_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf Prefire_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 Prefire_Weight_up qcd 1.00198 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 Prefire_Weight_down qcd 0.998203 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 Prefire_Weight_up qcd 1.04604 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 Prefire_Weight_down qcd 0.956966 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 Prefire_Weight_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 Prefire_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf Prefire_Weight_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf Prefire_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 Prefire_Weight_up qcd 1.00085 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 Prefire_Weight_down qcd 0.999113 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 Prefire_Weight_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 Prefire_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 Prefire_Weight_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 Prefire_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf Prefire_Weight_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf Prefire_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 Prefire_Weight_up qcd 0.99348 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 Prefire_Weight_down qcd 1.00362 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 Prefire_Weight_up qcd 1.00024 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 Prefire_Weight_down qcd 0.99977 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 Prefire_Weight_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 Prefire_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf Prefire_Weight_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf Prefire_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 Prefire_Weight_up qcd 1.00167 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 Prefire_Weight_down qcd 0.998147 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 Prefire_Weight_up qcd 1.00213 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 Prefire_Weight_down qcd 0.99803 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 Prefire_Weight_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 Prefire_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf Prefire_Weight_up qcd 1.0006 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf Prefire_Weight_down qcd 0.999377 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 Prefire_Weight_up qcd 0.999845 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 Prefire_Weight_down qcd 0.997169 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 Prefire_Weight_up qcd 1.00088 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 Prefire_Weight_down qcd 0.999087 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf Prefire_Weight_up qcd 2 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf Prefire_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 Prefire_Weight_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 Prefire_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 Prefire_Weight_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 Prefire_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf Prefire_Weight_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf Prefire_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 Prefire_Weight_up qcd 1.00457 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 Prefire_Weight_down qcd 0.995561 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 Prefire_Weight_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 Prefire_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf Prefire_Weight_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf Prefire_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 Prefire_Weight_up qcd 1.01559 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 Prefire_Weight_down qcd 0.985196 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 Prefire_Weight_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 Prefire_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf Prefire_Weight_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf Prefire_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 Prefire_Weight_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 Prefire_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 Prefire_Weight_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 Prefire_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf Prefire_Weight_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf Prefire_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 Prefire_Weight_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 Prefire_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 Prefire_Weight_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 Prefire_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf Prefire_Weight_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf Prefire_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 Prefire_Weight_up qcd 1.0012 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 Prefire_Weight_down qcd 0.998853 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 Prefire_Weight_up qcd 1.00122 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 Prefire_Weight_down qcd 0.998871 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf Prefire_Weight_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_up qcd 0.993632 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_down qcd 1.0065 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_up qcd 1.00046 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_down qcd 0.999604 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_up qcd 1.00061 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_down qcd 0.999323 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_up qcd 2 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_up qcd 1.01365 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_down qcd 0.986704 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_up qcd 1.00202 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_down qcd 0.997933 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_up qcd 0.995516 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_down qcd 1.00436 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_up qcd 2 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_up qcd 0.999902 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_down qcd 1.00014 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_up qcd 0.992565 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_down qcd 1.0075 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_up qcd 0.99332 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_down qcd 1.00676 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_up qcd 0.996787 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_down qcd 1.00328 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_up qcd 0.98856 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_down qcd 1.01139 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_up qcd 0.970615 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_down qcd 1.03014 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_up qcd 1.00295 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_down qcd 0.99705 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_up qcd 1.00224 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_down qcd 0.997927 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_up qcd 0.999875 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_down qcd 0.995329 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_up qcd 0.999498 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_down qcd 1.00061 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 Prefire_Weight_up qcd 1.00367 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 Prefire_Weight_down qcd 0.996432 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 Prefire_Weight_up qcd 1.00332 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 Prefire_Weight_down qcd 0.996744 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_up qcd 1.00626 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_down qcd 0.993851 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_up qcd 0.997384 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_down qcd 1.0026 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_up qcd 1.00418 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_down qcd 0.99594 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_up qcd 1.00312 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_down qcd 0.996965 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 Prefire_Weight_up qcd 1.0049 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 Prefire_Weight_down qcd 0.995186 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 Prefire_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf Prefire_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_up qcd 1.00246 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_down qcd 0.997607 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 Prefire_Weight_up qcd 1.0023 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 Prefire_Weight_down qcd 0.997766 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_up qcd 1.00055 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_down qcd 0.999423 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_up qcd 1.00486 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_down qcd 0.995193 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_up qcd 1.00168 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_down qcd 0.998418 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_up qcd 1.00263 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_down qcd 0.99744 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf Prefire_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf Prefire_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_up qcd 2 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_down qcd 0.001 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_up qcd 1.0384 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_down qcd 0.960242 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_up qcd 1.02802 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_down qcd 0.971674 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_up qcd 1.05066 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_down qcd 0.954582 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_up qcd 1.06394 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_down qcd 0.938532 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_up qcd 1.03595 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_down qcd 0.97254 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_up qcd 1.01206 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_down qcd 0.99572 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_up qcd 1.09085 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_down qcd 0.91735 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_up qcd 1.14422 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_down qcd 0.846105 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_up qcd 0.985927 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_down qcd 1.0035 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_up qcd 0.923441 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_down qcd 1.09066 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PU_Weight_up qcd 0.934082 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PU_Weight_down qcd 1.07932 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PU_Weight_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PU_Weight_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PU_Weight_up qcd 1.00025 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PU_Weight_down qcd 0.995872 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PU_Weight_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PU_Weight_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PU_Weight_up qcd 1.55364 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PU_Weight_down qcd 0.623158 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PU_Weight_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PU_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_up qcd 1.04128 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_down qcd 0.963919 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PU_Weight_up qcd 1.15394 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PU_Weight_down qcd 0.79509 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PU_Weight_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PU_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PU_Weight_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PU_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_up qcd 0.987777 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_down qcd 1.01272 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PU_Weight_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PU_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PU_Weight_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PU_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PU_Weight_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PU_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_up qcd 0.968827 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_down qcd 1.02878 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_up qcd 1.00161 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_down qcd 0.99508 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PU_Weight_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PU_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PU_Weight_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PU_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_up qcd 1.10665 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_down qcd 0.893798 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_up qcd 1.03913 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_down qcd 0.944957 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PU_Weight_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PU_Weight_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PU_Weight_up qcd 1.05206 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PU_Weight_down qcd 0.931142 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PU_Weight_up qcd 0.977671 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PU_Weight_down qcd 1.0209 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PU_Weight_up qcd 1.09636 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PU_Weight_down qcd 0.887646 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PU_Weight_up qcd 2 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PU_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PU_Weight_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PU_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PU_Weight_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PU_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PU_Weight_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PU_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_up qcd 0.946018 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_down qcd 1.05675 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PU_Weight_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PU_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PU_Weight_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PU_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_up qcd 1.00799 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_down qcd 1.01114 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PU_Weight_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PU_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PU_Weight_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PU_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PU_Weight_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PU_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PU_Weight_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PU_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PU_Weight_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PU_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PU_Weight_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PU_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PU_Weight_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PU_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PU_Weight_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PU_Weight_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_up qcd 1.1034 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_down qcd 0.899394 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PU_Weight_up qcd 0.980307 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PU_Weight_down qcd 1.01334 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PU_Weight_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PU_Weight_down qcd 0.001 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_up qcd 0.910255 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_down qcd 1.09265 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_up qcd 0.955808 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_down qcd 1.04786 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_up qcd 0.930536 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_down qcd 1.06867 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_up qcd 2 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_down qcd 0.001 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_up qcd 0.965861 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_down qcd 1.03226 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_up qcd 0.950188 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_down qcd 1.05367 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_up qcd 0.91567 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_down qcd 1.08445 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_up qcd 2 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_up qcd 1.04932 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_down qcd 0.950886 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_up qcd 1.02855 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_down qcd 0.969681 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_up qcd 1.01117 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_down qcd 0.984059 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_up qcd 0.970307 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_down qcd 1.0331 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_up qcd 1.00389 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_down qcd 0.991677 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_up qcd 1.04152 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_down qcd 0.962493 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_up qcd 1.29363 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_down qcd 0.743278 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_up qcd 1.31686 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_down qcd 0.729593 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_up qcd 1.62095 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_down qcd 0.568195 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_up qcd 1.02627 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_down qcd 0.97041 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PU_Weight_up qcd 1.01075 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PU_Weight_down qcd 0.98236 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PU_Weight_up qcd 1.07755 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PU_Weight_down qcd 0.91423 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PU_Weight_up qcd 1.03821 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PU_Weight_down qcd 0.94326 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_up qcd 1.12311 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_down qcd 0.902046 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_up qcd 1.04053 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_down qcd 0.946213 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PU_Weight_up qcd 0.915636 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PU_Weight_down qcd 1.092 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PU_Weight_up qcd 1.07952 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PU_Weight_down qcd 0.90149 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PU_Weight_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PU_Weight_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_up qcd 1.04994 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_down qcd 0.941623 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PU_Weight_up qcd 0.887449 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PU_Weight_down qcd 1.12652 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_up qcd 1.07712 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_down qcd 0.9308 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_up qcd 0.952464 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_down qcd 1.05004 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_up qcd 0.905736 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_down qcd 1.09558 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_up qcd 1.04692 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_down qcd 0.932844 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PU_Weight_down qcd 0.001 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_up qcd 2 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PU_Weight_down qcd 0.001 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_up qcd 2 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_down qcd 0.001 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restop_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restop_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restop_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restop_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restop_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restop_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restop_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restop_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restop_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restop_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restop_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restop_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restop_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restop_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restop_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restop_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restop_up qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restop_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restop_up qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restop_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_restop_up qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_restop_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_restop_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_restop_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_restop_up qcd 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_restop_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_restop_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_restop_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_restop_up qcd 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_restop_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_restop_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_restop_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restop_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restop_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_restop_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_restop_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_restop_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_restop_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_restop_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_restop_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restop_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restop_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_restop_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_restop_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_restop_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_restop_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_restop_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_restop_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restop_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restop_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restop_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restop_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_restop_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_restop_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_restop_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_restop_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restop_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restop_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restop_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restop_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_restop_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_restop_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_restop_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_restop_down qcd 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restop_up qcd 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restop_down qcd 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_restop_up qcd 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_restop_down qcd 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_restop_up qcd 2 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_restop_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_restop_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_restop_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_restop_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_restop_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_restop_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_restop_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restop_up qcd 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restop_down qcd 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_restop_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_restop_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_restop_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_restop_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restop_up qcd 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restop_down qcd 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_restop_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_restop_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_restop_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_restop_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_restop_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_restop_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_restop_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_restop_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_restop_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_restop_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_restop_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_restop_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_restop_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_restop_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_restop_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_restop_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restop_up qcd 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restop_down qcd 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_restop_up qcd 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_restop_down qcd 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_restop_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_restop_down qcd 0.001 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restop_up qcd 0.955021 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restop_down qcd 1.06239 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restop_up qcd 0.973216 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restop_down qcd 1.03581 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restop_up qcd 1.17806 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restop_down qcd 0.693983 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restop_up qcd 2 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restop_down qcd 0.001 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restop_up qcd 1.15886 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restop_down qcd 0.726994 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restop_up qcd 0.919061 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restop_down qcd 1.10295 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restop_up qcd 0.978542 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restop_down qcd 1.00171 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restop_up qcd 2 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restop_up qcd 0.991108 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restop_down qcd 1.00905 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restop_up qcd 0.990684 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restop_down qcd 1.00949 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restop_up qcd 0.995755 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restop_down qcd 1.00428 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restop_up qcd 0.990391 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restop_down qcd 1.00979 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restop_up qcd 0.98346 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restop_down qcd 1.0171 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restop_up qcd 0.989541 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restop_down qcd 1.01068 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restop_up qcd 0.976221 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restop_down qcd 1.02495 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restop_up qcd 0.997707 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restop_down qcd 1.00224 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restop_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restop_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restop_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restop_up qcd 0.990181 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restop_down qcd 1.01002 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restop_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restop_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restop_up qcd 0.993671 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restop_down qcd 1.00641 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restop_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restop_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_restop_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_restop_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_restop_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_restop_up qcd 0.993772 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_restop_down qcd 1.00631 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_restop_up qcd 0.991028 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_restop_down qcd 1.00914 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_restop_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_restop_up qcd 1.12563 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_restop_down qcd 0.872674 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_restop_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_restop_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_restop_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_restop_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_restop_up qcd 1.12117 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_restop_down qcd 0.876292 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_restop_up qcd 1.12667 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_restop_down qcd 0.870677 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_restop_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_restop_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_restop_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_restop_up qcd 1.31935 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_restop_down qcd 0.676827 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_restop_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_restop_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_restop_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_restop_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_restop_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_restop_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_restop_up qcd 1.12563 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_restop_down qcd 0.872496 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_restop_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_restop_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_restop_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_restop_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restop_up qcd 0.987135 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restop_down qcd 1.0132 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_restop_up qcd 0.987764 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_restop_down qcd 1.01254 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restop_up qcd 1.04733 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restop_down qcd 0.950379 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restop_up qcd 1.30495 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restop_down qcd 0.68238 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_restop_up qcd 1.23888 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_restop_down qcd 0.754992 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restop_up qcd 1.07039 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restop_down qcd 0.92747 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_restop_down qcd 0.001 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restop_up qcd 2 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_restop_down qcd 0.001 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restop_up qcd 2 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restop_down qcd 0.001 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_up qcd 0.990851 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_down qcd 1.00881 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_up qcd 0.961989 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_down qcd 1.03697 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ivfunc_up qcd 0.967564 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ivfunc_down qcd 1.03281 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ivfunc_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ivfunc_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ivfunc_up qcd 0.972109 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ivfunc_down qcd 1.03077 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ivfunc_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ivfunc_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ivfunc_up qcd 0.993529 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ivfunc_down qcd 1.00676 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ivfunc_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ivfunc_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ivfunc_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ivfunc_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ivfunc_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ivfunc_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ivfunc_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ivfunc_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ivfunc_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ivfunc_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ivfunc_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ivfunc_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ivfunc_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ivfunc_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ivfunc_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ivfunc_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ivfunc_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ivfunc_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ivfunc_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ivfunc_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ivfunc_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ivfunc_down qcd 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_up qcd 0.996313 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_down qcd 1.00323 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ivfunc_up qcd 0.981279 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ivfunc_down qcd 1.01876 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ivfunc_up qcd 2 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ivfunc_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ivfunc_up qcd 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ivfunc_down qcd 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ivfunc_up qcd 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ivfunc_down qcd 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ivfunc_up qcd 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ivfunc_down qcd 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_up qcd 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_down qcd 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ivfunc_up qcd 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ivfunc_down qcd 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ivfunc_up qcd 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ivfunc_down qcd 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_up qcd 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_down qcd 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ivfunc_up qcd 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ivfunc_down qcd 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ivfunc_up qcd 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ivfunc_down qcd 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ivfunc_up qcd 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ivfunc_down qcd 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ivfunc_up qcd 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ivfunc_down qcd 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ivfunc_up qcd 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ivfunc_down qcd 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ivfunc_up qcd 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ivfunc_down qcd 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ivfunc_up qcd 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ivfunc_down qcd 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ivfunc_up qcd 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ivfunc_down qcd 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_up qcd 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_down qcd 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ivfunc_up qcd 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ivfunc_down qcd 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ivfunc_up qcd 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ivfunc_down qcd 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_up qcd 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_down qcd 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_up qcd 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_down qcd 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_up qcd 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_down qcd 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_up qcd 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_down qcd 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_up qcd 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_down qcd 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_up qcd 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_down qcd 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_up qcd 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_down qcd 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_up qcd 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_down qcd 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_up qcd 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_down qcd 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_up qcd 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_down qcd 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_up qcd 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_down qcd 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_up qcd 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_down qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_up qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_down qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_up qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_down qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_up qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ivfunc_down qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ivfunc_up qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ivfunc_down qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ivfunc_up qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ivfunc_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ivfunc_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ivfunc_down qcd 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_up qcd 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ivfunc_down qcd 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_up qcd 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_tau_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_tau_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_tau_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_tau_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_tau_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_tau_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_tau_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_tau_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_tau_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_tau_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_tau_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_tau_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_tau_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_tau_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_tau_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_tau_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_tau_up qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_tau_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_tau_up qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_tau_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_tau_up qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_tau_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_tau_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_tau_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_tau_up qcd 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_tau_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_tau_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_tau_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_tau_up qcd 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_tau_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_tau_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_tau_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_tau_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_tau_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_tau_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_tau_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_tau_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_tau_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_tau_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_tau_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_tau_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_tau_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_tau_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_tau_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_tau_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_tau_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_tau_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_tau_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_tau_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_tau_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_tau_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_tau_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_tau_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_tau_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_tau_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_tau_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_tau_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_tau_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_tau_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_tau_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_tau_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_tau_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_tau_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_tau_down qcd 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_tau_up qcd 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_tau_down qcd 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_tau_up qcd 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_tau_down qcd 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_tau_up qcd 2 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_tau_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_tau_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_tau_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_tau_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_tau_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_tau_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_tau_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_tau_up qcd 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_tau_down qcd 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_tau_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_tau_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_tau_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_tau_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_tau_up qcd 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_tau_down qcd 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_tau_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_tau_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_tau_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_tau_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_tau_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_tau_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_tau_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_tau_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_tau_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_tau_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_tau_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_tau_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_tau_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_tau_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_tau_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_tau_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_tau_up qcd 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_tau_down qcd 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_tau_up qcd 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_tau_down qcd 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_tau_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_tau_down qcd 0.001 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_up qcd 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_down qcd 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_up qcd 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_down qcd 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_up qcd 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_down qcd 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_up qcd 2 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_down qcd 0.001 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_up qcd 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_down qcd 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_up qcd 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_down qcd 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_up qcd 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_down qcd 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_up qcd 2 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_down qcd 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_up qcd 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_down qcd 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_up qcd 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_down qcd 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_up qcd 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_down qcd 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_up qcd 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_down qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_up qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_down qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_up qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_down qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_tau_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_tau_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_tau_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_tau_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_tau_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_tau_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_tau_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_tau_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_tau_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_tau_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_tau_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_tau_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_tau_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_tau_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_tau_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_tau_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_tau_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_tau_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_tau_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_tau_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_tau_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_tau_up qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_tau_down qcd 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_tau_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_tau_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_tau_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_tau_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_tau_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_tau_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_tau_up qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_tau_down qcd 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_tau_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_tau_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_tau_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_tau_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_up qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_down qcd 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_tau_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_tau_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_tau_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_tau_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_up qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_down qcd 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_tau_down qcd 0.001 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_up qcd 2 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_tau_down qcd 0.001 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_up qcd 2 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_down qcd 0.001 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_up qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_up qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_toptag_up qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_toptag_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_toptag_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_toptag_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_toptag_up qcd 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_toptag_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_toptag_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_toptag_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_toptag_up qcd 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_toptag_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_toptag_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_toptag_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_toptag_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_toptag_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_toptag_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_toptag_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_toptag_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_toptag_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_toptag_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_toptag_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_toptag_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_toptag_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_toptag_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_toptag_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_toptag_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_toptag_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_toptag_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_toptag_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_toptag_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_toptag_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_toptag_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_toptag_down qcd 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_up qcd 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_down qcd 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_toptag_up qcd 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_toptag_down qcd 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_toptag_up qcd 2 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_toptag_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_toptag_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_toptag_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_toptag_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_toptag_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_toptag_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_toptag_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_up qcd 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_down qcd 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_toptag_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_toptag_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_toptag_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_toptag_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_up qcd 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_down qcd 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_toptag_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_toptag_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_toptag_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_toptag_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_toptag_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_toptag_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_toptag_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_toptag_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_toptag_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_toptag_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_toptag_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_toptag_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_toptag_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_toptag_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_toptag_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_toptag_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_up qcd 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_down qcd 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_toptag_up qcd 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_toptag_down qcd 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_toptag_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_toptag_down qcd 0.001 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_up qcd 0.999714 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_down qcd 1.00029 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_up qcd 0.998848 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_down qcd 1.00116 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_up qcd 0.997978 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_down qcd 1.00203 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_up qcd 2 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_down qcd 0.001 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_up qcd 0.997577 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_down qcd 1.00243 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_up qcd 0.991763 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_down qcd 1.00829 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_up qcd 0.992184 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_down qcd 1.00789 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_up qcd 2 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_up qcd 0.997513 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_down qcd 1.0025 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_up qcd 0.998 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_down qcd 1.00202 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_up qcd 0.997877 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_down qcd 1.00214 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_up qcd 0.999049 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_down qcd 1.00094 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_up qcd 0.9968 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_down qcd 1.00323 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_up qcd 0.997249 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_down qcd 1.00277 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_up qcd 0.997409 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_down qcd 1.0026 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_up qcd 1.00076 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_down qcd 0.99919 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_up qcd 1.08971 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_down qcd 0.909823 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_up qcd 1.05724 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_down qcd 0.942562 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_toptag_up qcd 0.997292 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_toptag_down qcd 1.00273 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_toptag_up qcd 0.998253 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_toptag_down qcd 1.00176 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_toptag_up qcd 0.996869 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_toptag_down qcd 1.00315 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_up qcd 0.997225 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_down qcd 1.0028 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_up qcd 0.99758 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_down qcd 1.00244 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_toptag_up qcd 0.998154 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_toptag_down qcd 1.00186 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_toptag_up qcd 1.07028 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_toptag_down qcd 0.92927 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_toptag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_toptag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_up qcd 1.0979 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_down qcd 0.901631 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_toptag_up qcd 0.998002 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_toptag_down qcd 1.00201 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_up qcd 0.998033 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_down qcd 1.00198 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_up qcd 0.997386 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_down qcd 1.00263 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_up qcd 0.997804 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_down qcd 1.0022 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_up qcd 0.997145 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_down qcd 1.00288 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_toptag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_up qcd 2 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_toptag_down qcd 0.001 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_up qcd 2 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_down qcd 0.001 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_up qcd 0.999808 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_down qcd 1.00025 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_up qcd 0.999782 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_down qcd 1.00042 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_up qcd 0.999379 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_down qcd 1.00101 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_up qcd 0.999128 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_down qcd 1.00147 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_up qcd 0.999866 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_down qcd 1.00016 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_down qcd 1.00005 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_up qcd 0.999415 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_down qcd 1.00089 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_up qcd 0.998906 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_down qcd 1.00149 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_up qcd 0.999656 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_down qcd 1.00041 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_up qcd 0.998371 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_down qcd 1.00242 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 trigger_err_up qcd 1.00016 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 trigger_err_down qcd 1.00019 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf trigger_err_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf trigger_err_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 trigger_err_up qcd 0.999732 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 trigger_err_down qcd 1.00044 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 trigger_err_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 trigger_err_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 trigger_err_up qcd 1.00082 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 trigger_err_down qcd 0.99906 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf trigger_err_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf trigger_err_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_up qcd 0.999898 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_down qcd 1.0001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 trigger_err_up qcd 0.99935 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 trigger_err_down qcd 1.00086 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 trigger_err_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 trigger_err_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf trigger_err_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf trigger_err_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_up qcd 0.999787 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_down qcd 1.00019 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 trigger_err_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 trigger_err_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 trigger_err_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 trigger_err_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf trigger_err_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf trigger_err_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_up qcd 0.99981 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_down qcd 1.00028 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_up qcd 1.00009 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_down qcd 0.999999 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 trigger_err_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 trigger_err_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf trigger_err_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf trigger_err_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_up qcd 0.999688 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_down qcd 1.00037 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_up qcd 0.999949 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_down qcd 1.00027 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 trigger_err_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 trigger_err_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf trigger_err_up qcd 1.00435 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf trigger_err_down qcd 0.994722 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_up qcd 0.999485 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_down qcd 1.00055 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 trigger_err_up qcd 0.999906 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 trigger_err_down qcd 1.00039 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf trigger_err_up qcd 2 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf trigger_err_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 trigger_err_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 trigger_err_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 trigger_err_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 trigger_err_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf trigger_err_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf trigger_err_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_up qcd 0.999604 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_down qcd 1.0004 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 trigger_err_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 trigger_err_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf trigger_err_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf trigger_err_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_up qcd 1.00003 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_down qcd 0.99994 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 trigger_err_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 trigger_err_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf trigger_err_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf trigger_err_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 trigger_err_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 trigger_err_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 trigger_err_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 trigger_err_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf trigger_err_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf trigger_err_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 trigger_err_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 trigger_err_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 trigger_err_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 trigger_err_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf trigger_err_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf trigger_err_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_up qcd 0.999902 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_down qcd 0.99998 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 trigger_err_up qcd 1.00169 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 trigger_err_down qcd 0.997598 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf trigger_err_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf trigger_err_down qcd 0.001 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_up qcd 0.999545 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_down qcd 1.00046 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_up qcd 1.00026 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_down qcd 0.999675 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_up qcd 1.00067 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_down qcd 0.999284 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_up qcd 2 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_down qcd 0.001 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_up qcd 1.00005 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_down qcd 0.999774 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_up qcd 1.00115 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_down qcd 0.998693 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_up qcd 1.00096 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_down qcd 0.999276 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_up qcd 2 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_up qcd 1.00019 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_down qcd 0.999794 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_up qcd 0.999905 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_down qcd 1.00013 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_up qcd 1.00023 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_down qcd 0.999771 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_up qcd 1.00031 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_down qcd 0.999753 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_up qcd 1.0004 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_down qcd 0.999582 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_up qcd 1.00004 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_down qcd 0.999942 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_up qcd 1.00016 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_down qcd 0.999868 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_up qcd 1.00051 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_down qcd 0.999495 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_up qcd 1.00071 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_down qcd 0.999337 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_up qcd 1.00112 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_down qcd 0.998816 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 trigger_err_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 trigger_err_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf trigger_err_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 trigger_err_up qcd 1.00042 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 trigger_err_down qcd 0.99966 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 trigger_err_up qcd 1.00022 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 trigger_err_down qcd 0.999739 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf trigger_err_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 trigger_err_up qcd 1.00124 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 trigger_err_down qcd 0.998617 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 trigger_err_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 trigger_err_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 trigger_err_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf trigger_err_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 trigger_err_up qcd 1.00049 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 trigger_err_down qcd 0.999456 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 trigger_err_up qcd 1.00018 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 trigger_err_down qcd 0.999835 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 trigger_err_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 trigger_err_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf trigger_err_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 trigger_err_up qcd 0.998519 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 trigger_err_down qcd 1.00153 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 trigger_err_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 trigger_err_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 trigger_err_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf trigger_err_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 trigger_err_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf trigger_err_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 trigger_err_up qcd 1.00153 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 trigger_err_down qcd 0.998203 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf trigger_err_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 trigger_err_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 trigger_err_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf trigger_err_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_up qcd 1.00065 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_down qcd 0.999421 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 trigger_err_up qcd 0.998345 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 trigger_err_down qcd 1.00172 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_up qcd 0.998244 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_down qcd 1.00186 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_up qcd 0.998554 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_down qcd 1.00149 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 trigger_err_up qcd 0.999875 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 trigger_err_down qcd 1.00023 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_up qcd 0.998549 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_down qcd 1.0015 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf trigger_err_down qcd 0.001 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_up qcd 2 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf trigger_err_down qcd 0.001 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_up qcd 2 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_down qcd 0.001 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_down qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_up qcd 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_up qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_up qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_wtag_up qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_wtag_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_wtag_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_wtag_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_wtag_up qcd 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_wtag_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_wtag_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_wtag_down qcd 0.001 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_wtag_up qcd 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_wtag_down qcd 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_wtag_up qcd 2 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_wtag_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_wtag_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_wtag_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_wtag_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_wtag_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_wtag_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_wtag_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_wtag_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_wtag_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_wtag_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_wtag_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_wtag_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_wtag_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_wtag_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_wtag_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_wtag_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_wtag_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_down qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_wtag_up qcd 2 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_wtag_down qcd 0.001 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_wtag_up qcd 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_wtag_down qcd 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_up qcd 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_down qcd 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_wtag_up qcd 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_wtag_down qcd 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_wtag_up qcd 2 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_wtag_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_wtag_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_wtag_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_wtag_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_wtag_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_wtag_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_wtag_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_up qcd 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_down qcd 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_wtag_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_wtag_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_wtag_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_wtag_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_up qcd 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_down qcd 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_wtag_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_wtag_down qcd 0.001 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_wtag_up qcd 2 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_wtag_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_wtag_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_wtag_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_wtag_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_wtag_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_wtag_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_wtag_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_wtag_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_wtag_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_wtag_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_wtag_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_wtag_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_wtag_down qcd 0.001 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_up qcd 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_down qcd 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_wtag_up qcd 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_wtag_down qcd 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_wtag_up qcd 2 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_wtag_down qcd 0.001 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_up qcd 0.977612 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_down qcd 1.02343 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_up qcd 0.998696 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_down qcd 1.00131 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_up qcd 1.00045 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_down qcd 0.999544 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_up qcd 2 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_down qcd 0.001 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_up qcd 0.999901 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_down qcd 1.0001 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_up qcd 0.999408 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_down qcd 1.00059 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_up qcd 0.998858 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_down qcd 1.00114 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_up qcd 2 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_up qcd 0.998918 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_down qcd 1.00108 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_up qcd 0.997398 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_down qcd 1.00262 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_up qcd 0.99943 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_down qcd 1.00057 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_up qcd 0.998295 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_down qcd 1.00171 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_up qcd 0.999476 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_down qcd 1.00052 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_up qcd 0.998108 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_down qcd 1.0019 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_up qcd 0.998606 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_down qcd 1.0014 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_up qcd 0.999499 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_down qcd 1.0005 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_up qcd 0.998284 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_down qcd 1.00172 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_up qcd 0.99915 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_down qcd 1.00085 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_wtag_up qcd 1.13597 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_wtag_down qcd 0.863761 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_wtag_up qcd 1.03595 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_wtag_down qcd 0.963953 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_wtag_up qcd 0.998315 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_wtag_down qcd 1.00169 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_up qcd 0.998757 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_down qcd 1.00125 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_up qcd 0.996482 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_down qcd 1.00354 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_wtag_up qcd 0.99925 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_wtag_down qcd 1.00075 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_wtag_up qcd 0.998538 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_wtag_down qcd 1.00147 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_wtag_down qcd 0.001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_wtag_up qcd 2 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_up qcd 0.999429 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_down qcd 1.00057 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_wtag_up qcd 1.05041 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_wtag_down qcd 0.949502 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_up qcd 0.999729 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_down qcd 1.00027 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_up qcd 0.999146 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_down qcd 1.00086 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_up qcd 0.99892 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_down qcd 1.00108 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_up qcd 0.999831 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_down qcd 1.00017 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_wtag_down qcd 0.001 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_up qcd 2 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_wtag_down qcd 0.001 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_up qcd 2 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_down qcd 0.001 diff --git a/Datacards/setup/SUSYNano19/values_unc_qcd_cr.conf b/Datacards/setup/SUSYNano19/values_unc_qcd_cr.conf new file mode 100644 index 0000000..39e2d12 --- /dev/null +++ b/Datacards/setup/SUSYNano19/values_unc_qcd_cr.conf @@ -0,0 +1,6624 @@ +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 PU_Weight_Up Rare 1.011632 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 PU_Weight_Down Rare 0.988975 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 PU_Weight_Up znunu 1.004255 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 PU_Weight_Down znunu 0.994700 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 PU_Weight_Up ttbarplusw 0.980617 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 PU_Weight_Down ttbarplusw 1.021296 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 PU_Weight_Up qcd 0.998375 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 PU_Weight_Down qcd 1.002148 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 b_Up Rare 0.968885 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 b_Down Rare 1.030325 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 b_Up znunu 1.040767 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 b_Down znunu 0.958117 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 b_Up ttbarplusw 0.991751 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 b_Down ttbarplusw 1.006507 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 b_Up qcd 1.017764 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 b_Down qcd 0.980715 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 eff_restoptag_Up Rare 1.062249 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 eff_restoptag_Down Rare 0.938003 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 eff_restoptag_Up znunu 1.008567 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 eff_restoptag_Down znunu 0.991515 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 eff_restoptag_Up ttbarplusw 1.027584 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 eff_restoptag_Down ttbarplusw 0.972393 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 eff_restoptag_Up qcd 1.008754 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 eff_restoptag_Down qcd 0.991206 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 eff_toptag_Up Rare 1.000792 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 eff_toptag_Down Rare 0.999558 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 eff_toptag_Up znunu 1.001503 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 eff_toptag_Down znunu 0.998497 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 eff_toptag_Up ttbarplusw 1.025917 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 eff_toptag_Down ttbarplusw 0.974433 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 eff_toptag_Up qcd 1.001250 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 eff_toptag_Down qcd 0.998747 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 eff_wtag_Up Rare 1.018552 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 eff_wtag_Down Rare 0.981448 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 eff_wtag_Up znunu 1.001589 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 eff_wtag_Down znunu 0.998411 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 eff_wtag_Up ttbarplusw 1.007168 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 eff_wtag_Down ttbarplusw 0.992832 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 eff_wtag_Up qcd 1.000258 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 eff_wtag_Down qcd 0.999740 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 ivfunc_Up Rare 1.012276 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 ivfunc_Down Rare 0.987712 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 ivfunc_Up znunu 1.002581 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 ivfunc_Down znunu 0.997425 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 ivfunc_Up ttbarplusw 1.005116 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 ivfunc_Down ttbarplusw 0.994885 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 ivfunc_Up qcd 0.999936 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 ivfunc_Down qcd 1.000057 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 trigger_err_Up Rare 1.004483 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 trigger_err_Down Rare 0.995366 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 trigger_err_Up znunu 1.004928 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 trigger_err_Down znunu 0.994932 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 trigger_err_Up ttbarplusw 1.005204 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 trigger_err_Down ttbarplusw 0.994626 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 trigger_err_Up qcd 0.999722 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 trigger_err_Down qcd 1.000293 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 JES_Up Rare 1.104872 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 JES_Down Rare 1.214459 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 JES_Up znunu 1.089756 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 JES_Down znunu 0.909892 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 JES_Up ttbarplusw 1.036979 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 JES_Down ttbarplusw 0.989349 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 JES_Up qcd 1.020698 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 JES_Down qcd 0.985234 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 metres_Up Rare 1.091343 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 metres_Down Rare 1.237259 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 metres_Up znunu 1.025172 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 metres_Down znunu 0.998895 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 metres_Up ttbarplusw 1.031513 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 metres_Down ttbarplusw 1.063525 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 metres_Up qcd 1.008101 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt250to350 metres_Down qcd 1.002057 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 PU_Weight_Up Rare 1.000220 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 PU_Weight_Down Rare 0.995578 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 PU_Weight_Up znunu 1.012049 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 PU_Weight_Down znunu 0.988641 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 PU_Weight_Up ttbarplusw 0.991175 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 PU_Weight_Down ttbarplusw 1.009939 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 PU_Weight_Up qcd 1.003589 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 PU_Weight_Down qcd 0.996749 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 b_Up Rare 0.975271 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 b_Down Rare 1.024010 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 b_Up znunu 1.036327 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 b_Down znunu 0.962553 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 b_Up ttbarplusw 0.994075 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 b_Down ttbarplusw 1.000401 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 b_Up qcd 1.022445 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 b_Down qcd 0.975951 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 eff_restoptag_Up Rare 1.026014 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 eff_restoptag_Down Rare 0.973980 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 eff_restoptag_Up znunu 1.006682 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 eff_restoptag_Down znunu 0.993295 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 eff_restoptag_Up ttbarplusw 1.001215 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 eff_restoptag_Down ttbarplusw 0.998791 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 eff_restoptag_Up qcd 1.009211 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 eff_restoptag_Down qcd 0.990748 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 eff_toptag_Up Rare 1.013361 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 eff_toptag_Down Rare 0.986639 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 eff_toptag_Up znunu 1.001673 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 eff_toptag_Down znunu 0.998327 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 eff_toptag_Up ttbarplusw 1.020628 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 eff_toptag_Down ttbarplusw 0.979372 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 eff_toptag_Up qcd 1.001561 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 eff_toptag_Down qcd 0.998434 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 eff_wtag_Up Rare 1.011721 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 eff_wtag_Down Rare 0.988279 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 eff_wtag_Up znunu 1.000793 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 eff_wtag_Down znunu 0.999207 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 eff_wtag_Up ttbarplusw 1.006931 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 eff_wtag_Down ttbarplusw 0.993069 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 eff_wtag_Up qcd 1.000969 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 eff_wtag_Down qcd 0.999031 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 ivfunc_Up Rare 1.003340 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 ivfunc_Down Rare 0.996660 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 ivfunc_Up znunu 1.001498 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 ivfunc_Down znunu 0.998502 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 ivfunc_Up ttbarplusw 1.000674 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 ivfunc_Down ttbarplusw 0.999335 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 ivfunc_Up qcd 0.999578 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 ivfunc_Down qcd 1.000416 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 trigger_err_Up Rare 1.004311 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 trigger_err_Down Rare 0.995497 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 trigger_err_Up znunu 1.004244 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 trigger_err_Down znunu 0.995582 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 trigger_err_Up ttbarplusw 1.004430 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 trigger_err_Down ttbarplusw 0.995354 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 trigger_err_Up qcd 0.998769 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 trigger_err_Down qcd 1.001242 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 JES_Up Rare 1.026721 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 JES_Down Rare 0.895717 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 JES_Up znunu 1.144637 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 JES_Down znunu 0.892716 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 JES_Up ttbarplusw 1.128934 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 JES_Down ttbarplusw 1.116191 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 JES_Up qcd 1.100438 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 JES_Down qcd 0.962140 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 metres_Up Rare 0.878834 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 metres_Down Rare 1.004016 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 metres_Up znunu 0.984620 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 metres_Down znunu 0.989230 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 metres_Up ttbarplusw 1.078920 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 metres_Down ttbarplusw 1.113582 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 metres_Up qcd 1.000089 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt350to450 metres_Down qcd 1.029372 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 PU_Weight_Up Rare 1.017326 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 PU_Weight_Down Rare 0.964931 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 PU_Weight_Up znunu 0.990667 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 PU_Weight_Down znunu 1.010542 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 PU_Weight_Up ttbarplusw 1.003045 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 PU_Weight_Down ttbarplusw 0.997751 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 PU_Weight_Up qcd 1.000303 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 PU_Weight_Down qcd 1.000295 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 b_Up Rare 0.991085 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 b_Down Rare 1.007097 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 b_Up znunu 1.041709 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 b_Down znunu 0.957257 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 b_Up ttbarplusw 0.987389 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 b_Down ttbarplusw 1.011778 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 b_Up qcd 1.022979 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 b_Down qcd 0.975520 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 eff_restoptag_Up Rare 0.951331 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 eff_restoptag_Down Rare 1.048802 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 eff_restoptag_Up znunu 1.007433 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 eff_restoptag_Down znunu 0.992531 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 eff_restoptag_Up ttbarplusw 1.015794 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 eff_restoptag_Down ttbarplusw 0.984200 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 eff_restoptag_Up qcd 1.006574 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 eff_restoptag_Down qcd 0.993378 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 eff_toptag_Up Rare 1.015892 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 eff_toptag_Down Rare 0.984108 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 eff_toptag_Up znunu 1.001783 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 eff_toptag_Down znunu 0.998217 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 eff_toptag_Up ttbarplusw 1.009574 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 eff_toptag_Down ttbarplusw 0.990426 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 eff_toptag_Up qcd 1.000618 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 eff_toptag_Down qcd 0.999381 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 eff_wtag_Up Rare 1.015307 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 eff_wtag_Down Rare 0.984693 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 eff_wtag_Up ttbarplusw 1.016720 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 eff_wtag_Down ttbarplusw 0.983280 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 eff_wtag_Up qcd 0.999058 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 eff_wtag_Down qcd 1.000943 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 ivfunc_Up Rare 1.007915 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 ivfunc_Down Rare 0.992085 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 ivfunc_Up znunu 1.002672 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 ivfunc_Down znunu 0.997328 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 ivfunc_Up ttbarplusw 1.000576 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 ivfunc_Down ttbarplusw 0.999424 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 ivfunc_Up qcd 0.998838 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 ivfunc_Down qcd 1.001159 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 trigger_err_Up Rare 1.004209 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 trigger_err_Down Rare 0.995563 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 trigger_err_Up znunu 1.004595 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 trigger_err_Down znunu 0.995107 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 trigger_err_Up ttbarplusw 1.004507 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 trigger_err_Down ttbarplusw 0.995202 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 trigger_err_Up qcd 0.998719 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 trigger_err_Down qcd 1.001211 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 JES_Up Rare 0.886168 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 JES_Down Rare 1.250753 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 JES_Up znunu 0.908192 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 JES_Down znunu 0.942792 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 JES_Up ttbarplusw 1.146196 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 JES_Down ttbarplusw 0.704559 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 JES_Up qcd 1.042182 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 JES_Down qcd 0.933284 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 metres_Up Rare 1.266045 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 metres_Down Rare 1.371351 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 metres_Up znunu 0.965550 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 metres_Down znunu 1.045243 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 metres_Up ttbarplusw 0.811939 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 metres_Down ttbarplusw 1.112303 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 metres_Up qcd 1.007824 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt450to550 metres_Down qcd 0.991751 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 PU_Weight_Up Rare 0.958136 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 PU_Weight_Down Rare 1.043025 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 PU_Weight_Up znunu 1.003720 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 PU_Weight_Down znunu 0.996129 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 PU_Weight_Up ttbarplusw 1.015700 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 PU_Weight_Down ttbarplusw 0.984555 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 PU_Weight_Up qcd 0.998950 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 PU_Weight_Down qcd 1.003099 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 b_Up Rare 1.002236 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 b_Down Rare 0.997242 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 b_Up znunu 1.048762 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 b_Down znunu 0.949026 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 b_Up ttbarplusw 1.050963 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 b_Down ttbarplusw 0.948022 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 b_Up qcd 1.019361 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 b_Down qcd 0.979415 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 eff_restoptag_Up Rare 1.001194 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 eff_restoptag_Down Rare 0.998822 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 eff_restoptag_Up znunu 1.009808 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 eff_restoptag_Down znunu 0.990139 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 eff_restoptag_Up ttbarplusw 1.008788 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 eff_restoptag_Down ttbarplusw 0.991199 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 eff_restoptag_Up qcd 1.003139 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 eff_restoptag_Down qcd 0.996885 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 eff_toptag_Up Rare 1.027672 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 eff_toptag_Down Rare 0.972328 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 eff_toptag_Up znunu 1.001481 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 eff_toptag_Down znunu 0.998519 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 eff_toptag_Up ttbarplusw 1.001092 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 eff_toptag_Down ttbarplusw 0.998908 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 eff_toptag_Up qcd 1.000926 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 eff_toptag_Down qcd 0.999072 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 eff_wtag_Up Rare 0.999000 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 eff_wtag_Down Rare 1.001000 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 eff_wtag_Up qcd 0.998646 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 eff_wtag_Down qcd 1.001357 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 ivfunc_Up Rare 1.007907 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 ivfunc_Down Rare 0.992093 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 ivfunc_Up znunu 1.002606 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 ivfunc_Down znunu 0.997402 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 ivfunc_Up ttbarplusw 1.003172 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 ivfunc_Down ttbarplusw 0.996828 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 ivfunc_Up qcd 0.998967 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 ivfunc_Down qcd 1.001031 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 trigger_err_Up Rare 1.004951 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 trigger_err_Down Rare 0.994637 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 trigger_err_Up znunu 1.004910 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 trigger_err_Down znunu 0.994692 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 trigger_err_Up ttbarplusw 1.004848 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 trigger_err_Down ttbarplusw 0.994774 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 trigger_err_Up qcd 0.998816 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 trigger_err_Down qcd 1.000999 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 JES_Up Rare 1.085986 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 JES_Down Rare 0.745384 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 JES_Up znunu 1.259328 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 JES_Down znunu 0.900383 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 JES_Up ttbarplusw 1.066822 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 JES_Down ttbarplusw 0.957163 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 JES_Up qcd 1.149798 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 JES_Down qcd 1.019814 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 metres_Up Rare 1.104430 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 metres_Down Rare 0.918773 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 metres_Up znunu 0.993427 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 metres_Down znunu 1.012661 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 metres_Up ttbarplusw 1.001339 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 metres_Down ttbarplusw 1.001360 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 metres_Up qcd 1.030675 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt550to650 metres_Down qcd 1.077715 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf PU_Weight_Up Rare 0.965554 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf PU_Weight_Down Rare 1.016314 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf PU_Weight_Up znunu 0.995439 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf PU_Weight_Down znunu 1.006461 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf PU_Weight_Up ttbarplusw 1.015347 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf PU_Weight_Down ttbarplusw 0.987707 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf PU_Weight_Up qcd 1.000416 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf PU_Weight_Down qcd 0.996808 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf b_Up Rare 1.010050 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf b_Down Rare 0.989193 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf b_Up znunu 1.048831 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf b_Down znunu 0.950285 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf b_Up ttbarplusw 1.046720 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf b_Down ttbarplusw 0.952125 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf b_Up qcd 1.014694 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf b_Down qcd 0.984397 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf eff_restoptag_Up Rare 1.014531 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf eff_restoptag_Down Rare 0.985472 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf eff_restoptag_Up znunu 1.007711 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf eff_restoptag_Down znunu 0.992259 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf eff_restoptag_Up ttbarplusw 1.005273 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf eff_restoptag_Down ttbarplusw 0.994642 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf eff_restoptag_Up qcd 1.000184 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf eff_restoptag_Down qcd 0.999810 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf eff_toptag_Up Rare 1.040078 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf eff_toptag_Down Rare 0.959922 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf eff_toptag_Up znunu 1.003049 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf eff_toptag_Down znunu 0.996951 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf eff_toptag_Up ttbarplusw 1.001226 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf eff_toptag_Down ttbarplusw 0.998774 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf eff_toptag_Up qcd 1.011955 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf eff_toptag_Down qcd 0.988044 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf eff_wtag_Up Rare 1.022308 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf eff_wtag_Down Rare 0.978542 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf eff_wtag_Up ttbarplusw 1.003285 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf eff_wtag_Down ttbarplusw 0.996715 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf eff_wtag_Up qcd 0.998518 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf eff_wtag_Down qcd 1.001486 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf ivfunc_Up Rare 1.001779 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf ivfunc_Down Rare 0.998221 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf ivfunc_Up znunu 1.006927 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf ivfunc_Down znunu 0.993073 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf ivfunc_Up ttbarplusw 1.001928 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf ivfunc_Down ttbarplusw 0.998091 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf ivfunc_Up qcd 0.998714 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf ivfunc_Down qcd 1.001281 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf trigger_err_Up Rare 1.004287 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf trigger_err_Down Rare 0.995362 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf trigger_err_Up znunu 1.004782 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf trigger_err_Down znunu 0.994828 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf trigger_err_Up ttbarplusw 1.004930 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf trigger_err_Down ttbarplusw 0.994667 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf trigger_err_Up qcd 0.998151 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf trigger_err_Down qcd 1.001702 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf JES_Up Rare 0.518860 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf JES_Down Rare 1.160151 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf JES_Up znunu 1.130959 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf JES_Down znunu 0.956716 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf JES_Up ttbarplusw 1.108315 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf JES_Down ttbarplusw 0.980308 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf JES_Up qcd 1.053384 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf JES_Down qcd 0.905471 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf metres_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf metres_Down Rare 0.584059 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf metres_Up znunu 1.084317 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf metres_Down znunu 0.999498 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf metres_Up ttbarplusw 0.972350 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf metres_Down ttbarplusw 1.042621 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf metres_Up qcd 0.998040 +bin_qcdcr_hm_nb1_highmtb_ht1000to1300_MET_pt650toinf metres_Down qcd 1.011632 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 PU_Weight_Up Rare 1.013980 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 PU_Weight_Down Rare 0.993685 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 PU_Weight_Up znunu 1.008919 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 PU_Weight_Down znunu 0.993684 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 PU_Weight_Up ttbarplusw 0.978122 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 PU_Weight_Down ttbarplusw 1.022489 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 PU_Weight_Up qcd 0.997512 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 PU_Weight_Down qcd 1.003034 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 b_Up Rare 0.976033 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 b_Down Rare 1.022855 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 b_Up znunu 1.040060 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 b_Down znunu 0.958832 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 b_Up ttbarplusw 0.992419 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 b_Down ttbarplusw 1.005844 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 b_Up qcd 1.019259 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 b_Down qcd 0.978874 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 eff_restoptag_Up Rare 1.003187 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 eff_restoptag_Down Rare 0.996815 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 eff_restoptag_Up znunu 1.005538 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 eff_restoptag_Down znunu 0.994454 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 eff_restoptag_Up ttbarplusw 1.008409 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 eff_restoptag_Down ttbarplusw 0.991586 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 eff_restoptag_Up qcd 1.007413 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 eff_restoptag_Down qcd 0.992569 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 eff_toptag_Up Rare 1.025945 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 eff_toptag_Down Rare 0.974723 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 eff_toptag_Up znunu 1.002333 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 eff_toptag_Down znunu 0.997667 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 eff_toptag_Up ttbarplusw 1.024230 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 eff_toptag_Down ttbarplusw 0.976293 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 eff_toptag_Up qcd 1.001101 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 eff_toptag_Down qcd 0.998896 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 eff_wtag_Up Rare 1.004325 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 eff_wtag_Down Rare 0.995675 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 eff_wtag_Up znunu 1.002324 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 eff_wtag_Down znunu 0.997676 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 eff_wtag_Up ttbarplusw 1.000146 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 eff_wtag_Down ttbarplusw 0.999854 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 eff_wtag_Up qcd 1.000550 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 eff_wtag_Down qcd 0.999446 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 ivfunc_Up Rare 1.020962 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 ivfunc_Down Rare 0.979983 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 ivfunc_Up znunu 1.003860 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 ivfunc_Down znunu 0.996140 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 ivfunc_Up ttbarplusw 1.000189 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 ivfunc_Down ttbarplusw 0.999813 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 ivfunc_Up qcd 0.999603 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 ivfunc_Down qcd 1.000392 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 trigger_err_Up Rare 1.005286 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 trigger_err_Down Rare 0.994549 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 trigger_err_Up znunu 1.004760 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 trigger_err_Down znunu 0.995114 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 trigger_err_Up ttbarplusw 1.005016 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 trigger_err_Down ttbarplusw 0.994813 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 trigger_err_Up qcd 0.999597 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 trigger_err_Down qcd 1.000423 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 JES_Up Rare 1.291752 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 JES_Down Rare 0.789081 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 JES_Up znunu 1.032997 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 JES_Down znunu 1.030103 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 JES_Up ttbarplusw 0.989832 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 JES_Down ttbarplusw 0.925624 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 JES_Up qcd 1.059012 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 JES_Down qcd 0.960451 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 metres_Up Rare 1.081603 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 metres_Down Rare 1.016007 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 metres_Up znunu 1.064093 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 metres_Down znunu 0.929069 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 metres_Up ttbarplusw 0.975033 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 metres_Down ttbarplusw 0.989458 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 metres_Up qcd 0.994109 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt250to350 metres_Down qcd 0.990999 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 PU_Weight_Up Rare 0.952300 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 PU_Weight_Down Rare 1.034471 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 PU_Weight_Up znunu 1.011490 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 PU_Weight_Down znunu 0.989652 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 PU_Weight_Up ttbarplusw 1.015714 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 PU_Weight_Down ttbarplusw 0.993750 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 PU_Weight_Up qcd 0.998907 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 PU_Weight_Down qcd 1.002026 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 b_Up Rare 0.981747 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 b_Down Rare 1.018814 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 b_Up znunu 1.035185 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 b_Down znunu 0.963618 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 b_Up ttbarplusw 1.027026 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 b_Down ttbarplusw 0.969972 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 b_Up qcd 1.018394 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 b_Down qcd 0.979942 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 eff_restoptag_Up Rare 1.025506 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 eff_restoptag_Down Rare 0.977012 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 eff_restoptag_Up znunu 1.003797 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 eff_restoptag_Down znunu 0.996202 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 eff_restoptag_Up ttbarplusw 1.003773 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 eff_restoptag_Down ttbarplusw 0.996223 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 eff_restoptag_Up qcd 1.006249 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 eff_restoptag_Down qcd 0.993720 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 eff_toptag_Up Rare 1.037160 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 eff_toptag_Down Rare 0.962692 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 eff_toptag_Up znunu 1.002076 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 eff_toptag_Down znunu 0.997924 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 eff_toptag_Up ttbarplusw 1.020967 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 eff_toptag_Down ttbarplusw 0.979033 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 eff_toptag_Up qcd 1.000927 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 eff_toptag_Down qcd 0.999071 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 eff_wtag_Up Rare 1.007927 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 eff_wtag_Down Rare 0.992441 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 eff_wtag_Up znunu 1.000844 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 eff_wtag_Down znunu 0.999156 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 eff_wtag_Up ttbarplusw 1.001273 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 eff_wtag_Down ttbarplusw 0.998727 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 eff_wtag_Up qcd 0.999767 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 eff_wtag_Down qcd 1.000232 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 ivfunc_Up Rare 1.012342 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 ivfunc_Down Rare 0.987808 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 ivfunc_Up znunu 1.001075 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 ivfunc_Down znunu 0.998925 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 ivfunc_Up ttbarplusw 1.001442 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 ivfunc_Down ttbarplusw 0.998564 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 ivfunc_Up qcd 0.999327 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 ivfunc_Down qcd 1.000669 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 trigger_err_Up Rare 1.004201 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 trigger_err_Down Rare 0.995609 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 trigger_err_Up znunu 1.004282 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 trigger_err_Down znunu 0.995543 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 trigger_err_Up ttbarplusw 1.004362 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 trigger_err_Down ttbarplusw 0.995435 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 trigger_err_Up qcd 0.998849 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 trigger_err_Down qcd 1.001158 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 JES_Up Rare 1.385958 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 JES_Down Rare 1.059470 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 JES_Up znunu 1.113223 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 JES_Down znunu 0.841651 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 JES_Up ttbarplusw 1.071169 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 JES_Down ttbarplusw 1.172678 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 JES_Up qcd 1.041405 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 JES_Down qcd 0.963895 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 metres_Up Rare 0.984584 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 metres_Down Rare 1.137864 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 metres_Up znunu 0.916326 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 metres_Down znunu 1.058041 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 metres_Up ttbarplusw 0.978562 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 metres_Down ttbarplusw 0.999115 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 metres_Up qcd 0.983523 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt350to450 metres_Down qcd 1.009506 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 PU_Weight_Up Rare 1.027010 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 PU_Weight_Down Rare 0.959899 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 PU_Weight_Up znunu 1.006819 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 PU_Weight_Down znunu 0.995123 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 PU_Weight_Up ttbarplusw 1.004637 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 PU_Weight_Down ttbarplusw 0.992859 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 PU_Weight_Up qcd 1.003125 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 PU_Weight_Down qcd 0.997156 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 b_Up Rare 0.993531 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 b_Down Rare 1.005467 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 b_Up znunu 1.025955 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 b_Down znunu 0.972674 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 b_Up ttbarplusw 0.969827 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 b_Down ttbarplusw 1.029202 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 b_Up qcd 1.021213 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 b_Down qcd 0.976745 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 eff_restoptag_Up Rare 0.999724 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 eff_restoptag_Down Rare 1.000276 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 eff_restoptag_Up znunu 1.010100 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 eff_restoptag_Down znunu 0.989903 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 eff_restoptag_Up ttbarplusw 1.001733 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 eff_restoptag_Down ttbarplusw 0.998263 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 eff_restoptag_Up qcd 1.002330 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 eff_restoptag_Down qcd 0.997650 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 eff_toptag_Up Rare 1.009156 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 eff_toptag_Down Rare 0.990844 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 eff_toptag_Up znunu 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 eff_toptag_Down znunu 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 eff_toptag_Up ttbarplusw 1.030146 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 eff_toptag_Down ttbarplusw 0.969854 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 eff_toptag_Up qcd 1.000207 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 eff_toptag_Down qcd 0.999792 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 eff_wtag_Up Rare 1.029339 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 eff_wtag_Down Rare 0.970661 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 eff_wtag_Up ttbarplusw 1.000419 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 eff_wtag_Down ttbarplusw 0.999581 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 eff_wtag_Up qcd 0.999496 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 eff_wtag_Down qcd 1.000506 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 ivfunc_Up Rare 0.994996 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 ivfunc_Down Rare 1.005004 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 ivfunc_Up znunu 1.003057 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 ivfunc_Down znunu 0.996943 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 ivfunc_Up ttbarplusw 1.000510 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 ivfunc_Down ttbarplusw 0.999492 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 ivfunc_Up qcd 0.998998 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 ivfunc_Down qcd 1.001000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 trigger_err_Up Rare 1.004113 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 trigger_err_Down Rare 0.995705 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 trigger_err_Up znunu 1.004460 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 trigger_err_Down znunu 0.995280 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 trigger_err_Up ttbarplusw 1.004847 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 trigger_err_Down ttbarplusw 0.994815 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 trigger_err_Up qcd 0.998995 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 trigger_err_Down qcd 1.000919 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 JES_Up Rare 1.184349 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 JES_Down Rare 1.206475 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 JES_Up znunu 0.984580 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 JES_Down znunu 1.013836 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 JES_Up ttbarplusw 0.582905 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 JES_Down ttbarplusw 0.997239 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 JES_Up qcd 1.033695 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 JES_Down qcd 1.008061 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 metres_Up Rare 1.219477 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 metres_Down Rare 0.917187 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 metres_Up znunu 1.111007 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 metres_Down znunu 0.948935 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 metres_Up ttbarplusw 0.570993 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 metres_Down ttbarplusw 0.996645 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 metres_Up qcd 1.018379 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt450to550 metres_Down qcd 1.008455 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 PU_Weight_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 PU_Weight_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 PU_Weight_Up znunu 1.006359 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 PU_Weight_Down znunu 0.996616 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 PU_Weight_Up ttbarplusw 0.955906 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 PU_Weight_Down ttbarplusw 1.047805 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 PU_Weight_Up qcd 1.010608 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 PU_Weight_Down qcd 0.987747 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 b_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 b_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 b_Up znunu 1.030653 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 b_Down znunu 0.968372 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 b_Up ttbarplusw 1.006690 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 b_Down ttbarplusw 0.991208 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 b_Up qcd 1.011191 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 b_Down qcd 0.987724 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 eff_restoptag_Up znunu 1.000694 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 eff_restoptag_Down znunu 0.999300 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 eff_restoptag_Up ttbarplusw 1.001049 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 eff_restoptag_Down ttbarplusw 0.998946 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 eff_restoptag_Up qcd 1.005322 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 eff_restoptag_Down qcd 0.994652 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 eff_toptag_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 eff_toptag_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 eff_toptag_Up znunu 1.002960 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 eff_toptag_Down znunu 0.997040 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 eff_toptag_Up ttbarplusw 1.000102 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 eff_toptag_Down ttbarplusw 0.999898 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 eff_toptag_Up qcd 0.999806 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 eff_toptag_Down qcd 1.000194 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 eff_wtag_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 eff_wtag_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 eff_wtag_Up znunu 1.003195 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 eff_wtag_Down znunu 0.996805 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 eff_wtag_Up ttbarplusw 1.000440 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 eff_wtag_Down ttbarplusw 0.999560 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 eff_wtag_Up qcd 0.998811 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 eff_wtag_Down qcd 1.001191 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 ivfunc_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 ivfunc_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 ivfunc_Up znunu 1.003093 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 ivfunc_Down znunu 0.996907 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 ivfunc_Up ttbarplusw 1.000902 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 ivfunc_Down ttbarplusw 0.999098 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 ivfunc_Up qcd 0.999395 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 ivfunc_Down qcd 1.000610 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 trigger_err_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 trigger_err_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 trigger_err_Up znunu 1.004850 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 trigger_err_Down znunu 0.994773 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 trigger_err_Up ttbarplusw 1.004649 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 trigger_err_Down ttbarplusw 0.995061 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 trigger_err_Up qcd 0.999206 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 trigger_err_Down qcd 1.000587 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 JES_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 JES_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 JES_Up znunu 1.158645 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 JES_Down znunu 0.847372 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 JES_Up ttbarplusw 1.921028 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 JES_Down ttbarplusw 1.018577 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 JES_Up qcd 1.083632 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 JES_Down qcd 0.906702 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 metres_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 metres_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 metres_Up znunu 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 metres_Down znunu 1.058356 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 metres_Up ttbarplusw 1.916440 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 metres_Down ttbarplusw 0.987950 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 metres_Up qcd 0.987126 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt550to650 metres_Down qcd 0.999598 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf PU_Weight_Up Rare 1.040309 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf PU_Weight_Down Rare 0.945554 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf PU_Weight_Up znunu 0.992081 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf PU_Weight_Down znunu 1.011414 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf PU_Weight_Up ttbarplusw 1.002467 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf PU_Weight_Down ttbarplusw 0.998946 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf PU_Weight_Up qcd 0.995769 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf PU_Weight_Down qcd 1.004422 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf b_Up Rare 0.992852 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf b_Down Rare 1.006095 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf b_Up znunu 1.080928 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf b_Down znunu 0.917476 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf b_Up ttbarplusw 1.050574 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf b_Down ttbarplusw 0.947928 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf b_Up qcd 1.020799 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf b_Down qcd 0.977998 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf eff_restoptag_Up Rare 1.004026 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf eff_restoptag_Down Rare 0.995983 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf eff_restoptag_Up znunu 1.002353 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf eff_restoptag_Down znunu 0.997607 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf eff_restoptag_Up ttbarplusw 1.005521 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf eff_restoptag_Down ttbarplusw 0.994458 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf eff_restoptag_Up qcd 1.020046 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf eff_restoptag_Down qcd 0.979866 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf eff_toptag_Up Rare 1.000693 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf eff_toptag_Down Rare 0.999307 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf eff_toptag_Up znunu 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf eff_toptag_Down znunu 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf eff_toptag_Up ttbarplusw 1.002253 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf eff_toptag_Down ttbarplusw 0.997747 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf eff_toptag_Up qcd 1.002559 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf eff_toptag_Down qcd 0.997429 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf eff_wtag_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf eff_wtag_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf eff_wtag_Up ttbarplusw 1.001480 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf eff_wtag_Down ttbarplusw 0.998520 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf eff_wtag_Up qcd 0.999207 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf eff_wtag_Down qcd 1.000793 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf ivfunc_Up Rare 1.010037 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf ivfunc_Down Rare 0.989963 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf ivfunc_Up znunu 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf ivfunc_Down znunu 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf ivfunc_Up ttbarplusw 1.001291 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf ivfunc_Down ttbarplusw 0.998749 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf ivfunc_Up qcd 0.999886 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf ivfunc_Down qcd 1.000103 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf trigger_err_Up Rare 1.004580 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf trigger_err_Down Rare 0.995130 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf trigger_err_Up znunu 1.004890 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf trigger_err_Down znunu 0.994729 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf trigger_err_Up ttbarplusw 1.004970 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf trigger_err_Down ttbarplusw 0.994629 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf trigger_err_Up qcd 0.998729 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf trigger_err_Down qcd 1.001094 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf JES_Up Rare 0.835607 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf JES_Down Rare 0.911298 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf JES_Up znunu 1.034792 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf JES_Down znunu 0.823582 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf JES_Up ttbarplusw 1.069485 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf JES_Down ttbarplusw 0.815455 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf JES_Up qcd 1.072649 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf JES_Down qcd 1.014770 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf metres_Up Rare 1.022230 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf metres_Down Rare 0.969014 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf metres_Up znunu 1.000000 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf metres_Down znunu 0.978887 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf metres_Up ttbarplusw 0.977973 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf metres_Down ttbarplusw 0.971959 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf metres_Up qcd 1.033916 +bin_qcdcr_hm_nb1_highmtb_ht1300to1500_MET_pt650toinf metres_Down qcd 1.002487 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 PU_Weight_Up Rare 0.972518 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 PU_Weight_Down Rare 1.026209 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 PU_Weight_Up znunu 1.003246 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 PU_Weight_Down znunu 0.993363 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 PU_Weight_Up ttbarplusw 1.007764 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 PU_Weight_Down ttbarplusw 0.992561 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 PU_Weight_Up qcd 1.004603 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 PU_Weight_Down qcd 0.995848 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 b_Up Rare 1.004791 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 b_Down Rare 0.990401 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 b_Up znunu 1.049811 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 b_Down znunu 0.948469 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 b_Up ttbarplusw 0.994071 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 b_Down ttbarplusw 1.003698 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 b_Up qcd 1.027199 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 b_Down qcd 0.970479 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 eff_restoptag_Up Rare 1.008824 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 eff_restoptag_Down Rare 0.991216 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 eff_restoptag_Up znunu 1.003881 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 eff_restoptag_Down znunu 0.996111 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 eff_restoptag_Up ttbarplusw 1.009236 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 eff_restoptag_Down ttbarplusw 0.990764 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 eff_restoptag_Up qcd 1.005346 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 eff_restoptag_Down qcd 0.994643 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 eff_toptag_Up Rare 1.036472 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 eff_toptag_Down Rare 0.964066 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 eff_toptag_Up znunu 1.002173 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 eff_toptag_Down znunu 0.997827 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 eff_toptag_Up ttbarplusw 1.022363 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 eff_toptag_Down ttbarplusw 0.977637 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 eff_toptag_Up qcd 1.000575 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 eff_toptag_Down qcd 0.999421 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 eff_wtag_Up Rare 1.003620 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 eff_wtag_Down Rare 0.996380 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 eff_wtag_Up znunu 1.002628 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 eff_wtag_Down znunu 0.997376 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 eff_wtag_Up ttbarplusw 1.000925 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 eff_wtag_Down ttbarplusw 0.999075 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 eff_wtag_Up qcd 1.000185 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 eff_wtag_Down qcd 0.999820 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 ivfunc_Up Rare 1.000053 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 ivfunc_Down Rare 0.999882 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 ivfunc_Up znunu 1.000679 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 ivfunc_Down znunu 0.999323 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 ivfunc_Up ttbarplusw 1.010877 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 ivfunc_Down ttbarplusw 0.989124 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 ivfunc_Up qcd 1.000605 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 ivfunc_Down qcd 0.999394 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 trigger_err_Up Rare 1.004691 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 trigger_err_Down Rare 0.995181 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 trigger_err_Up znunu 1.004834 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 trigger_err_Down znunu 0.995036 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 trigger_err_Up ttbarplusw 1.005133 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 trigger_err_Down ttbarplusw 0.994695 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 trigger_err_Up qcd 0.999632 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 trigger_err_Down qcd 1.000385 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 JES_Up Rare 0.904099 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 JES_Down Rare 0.883967 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 JES_Up znunu 1.016531 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 JES_Down znunu 0.943730 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 JES_Up ttbarplusw 1.189228 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 JES_Down ttbarplusw 0.992870 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 JES_Up qcd 1.029711 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 JES_Down qcd 0.978791 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 metres_Up Rare 0.961468 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 metres_Down Rare 0.855889 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 metres_Up znunu 0.948773 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 metres_Down znunu 1.013331 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 metres_Up ttbarplusw 1.030269 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 metres_Down ttbarplusw 1.043015 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 metres_Up qcd 1.001166 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt250to350 metres_Down qcd 0.997203 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 PU_Weight_Up Rare 0.970564 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 PU_Weight_Down Rare 1.033976 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 PU_Weight_Up znunu 1.008316 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 PU_Weight_Down znunu 0.992720 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 PU_Weight_Up ttbarplusw 0.996010 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 PU_Weight_Down ttbarplusw 1.002411 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 PU_Weight_Up qcd 1.002292 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 PU_Weight_Down qcd 0.997827 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 b_Up Rare 0.991216 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 b_Down Rare 1.006558 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 b_Up znunu 1.041475 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 b_Down znunu 0.957274 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 b_Up ttbarplusw 1.029822 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 b_Down ttbarplusw 0.963992 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 b_Up qcd 1.023798 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 b_Down qcd 0.973910 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 eff_restoptag_Up Rare 1.030522 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 eff_restoptag_Down Rare 0.969490 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 eff_restoptag_Up znunu 1.009654 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 eff_restoptag_Down znunu 0.990340 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 eff_restoptag_Up ttbarplusw 1.025798 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 eff_restoptag_Down ttbarplusw 0.974077 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 eff_restoptag_Up qcd 1.005406 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 eff_restoptag_Down qcd 0.994569 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 eff_toptag_Up Rare 1.000766 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 eff_toptag_Down Rare 0.998994 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 eff_toptag_Up znunu 1.001327 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 eff_toptag_Down znunu 0.998675 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 eff_toptag_Up ttbarplusw 1.014053 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 eff_toptag_Down ttbarplusw 0.985947 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 eff_toptag_Up qcd 1.000688 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 eff_toptag_Down qcd 0.999308 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 eff_wtag_Up Rare 1.005766 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 eff_wtag_Down Rare 0.994234 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 eff_wtag_Up znunu 1.002684 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 eff_wtag_Down znunu 0.997316 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 eff_wtag_Up ttbarplusw 1.000643 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 eff_wtag_Down ttbarplusw 0.999357 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 eff_wtag_Up qcd 0.999948 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 eff_wtag_Down qcd 1.000058 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 ivfunc_Up Rare 1.002557 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 ivfunc_Down Rare 0.997443 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 ivfunc_Up znunu 1.002746 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 ivfunc_Down znunu 0.997254 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 ivfunc_Up ttbarplusw 1.000416 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 ivfunc_Down ttbarplusw 0.999586 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 ivfunc_Up qcd 1.000857 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 ivfunc_Down qcd 0.999171 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 trigger_err_Up Rare 1.004452 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 trigger_err_Down Rare 0.995311 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 trigger_err_Up znunu 1.004211 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 trigger_err_Down znunu 0.995627 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 trigger_err_Up ttbarplusw 1.004190 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 trigger_err_Down ttbarplusw 0.995630 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 trigger_err_Up qcd 0.998820 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 trigger_err_Down qcd 1.001182 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 JES_Up Rare 0.952390 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 JES_Down Rare 1.011762 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 JES_Up znunu 1.027751 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 JES_Down znunu 0.953229 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 JES_Up ttbarplusw 0.997905 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 JES_Down ttbarplusw 0.818638 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 JES_Up qcd 1.031670 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 JES_Down qcd 0.975032 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 metres_Up Rare 0.877683 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 metres_Down Rare 1.109216 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 metres_Up znunu 0.998495 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 metres_Down znunu 0.989036 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 metres_Up ttbarplusw 0.841178 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 metres_Down ttbarplusw 1.005613 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 metres_Up qcd 0.995698 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt350to450 metres_Down qcd 0.992135 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 PU_Weight_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 PU_Weight_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 PU_Weight_Up znunu 0.994686 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 PU_Weight_Down znunu 1.003827 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 PU_Weight_Up ttbarplusw 1.031293 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 PU_Weight_Down ttbarplusw 0.969083 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 PU_Weight_Up qcd 1.004348 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 PU_Weight_Down qcd 0.994660 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 b_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 b_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 b_Up znunu 1.046922 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 b_Down znunu 0.951667 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 b_Up ttbarplusw 0.996997 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 b_Down ttbarplusw 1.000741 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 b_Up qcd 1.022109 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 b_Down qcd 0.975712 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 eff_restoptag_Up znunu 1.007550 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 eff_restoptag_Down znunu 0.992438 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 eff_restoptag_Up ttbarplusw 1.024033 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 eff_restoptag_Down ttbarplusw 0.975894 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 eff_restoptag_Up qcd 1.004618 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 eff_restoptag_Down qcd 0.995360 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 eff_toptag_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 eff_toptag_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 eff_toptag_Up znunu 1.000058 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 eff_toptag_Down znunu 0.999942 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 eff_toptag_Up ttbarplusw 1.003380 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 eff_toptag_Down ttbarplusw 0.996620 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 eff_toptag_Up qcd 1.000419 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 eff_toptag_Down qcd 0.999579 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 eff_wtag_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 eff_wtag_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 eff_wtag_Up znunu 1.001898 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 eff_wtag_Down znunu 0.998102 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 eff_wtag_Up ttbarplusw 1.001882 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 eff_wtag_Down ttbarplusw 0.998118 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 eff_wtag_Up qcd 0.999693 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 eff_wtag_Down qcd 1.000315 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 ivfunc_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 ivfunc_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 ivfunc_Up znunu 1.001378 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 ivfunc_Down znunu 0.998622 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 ivfunc_Up ttbarplusw 1.000396 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 ivfunc_Down ttbarplusw 0.999607 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 ivfunc_Up qcd 1.000786 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 ivfunc_Down qcd 0.999229 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 trigger_err_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 trigger_err_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 trigger_err_Up znunu 1.004435 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 trigger_err_Down znunu 0.995300 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 trigger_err_Up ttbarplusw 1.004545 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 trigger_err_Down ttbarplusw 0.995157 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 trigger_err_Up qcd 0.999152 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 trigger_err_Down qcd 1.000744 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 JES_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 JES_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 JES_Up znunu 1.026708 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 JES_Down znunu 0.982214 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 JES_Up ttbarplusw 1.010579 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 JES_Down ttbarplusw 1.051906 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 JES_Up qcd 1.042426 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 JES_Down qcd 0.979688 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 metres_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 metres_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 metres_Up znunu 0.987833 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 metres_Down znunu 1.002887 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 metres_Up ttbarplusw 1.004262 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 metres_Down ttbarplusw 1.133168 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 metres_Up qcd 1.011031 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt450to550 metres_Down qcd 0.998660 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 PU_Weight_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 PU_Weight_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 PU_Weight_Up znunu 1.011969 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 PU_Weight_Down znunu 0.991955 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 PU_Weight_Up ttbarplusw 1.000510 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 PU_Weight_Down ttbarplusw 1.018962 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 PU_Weight_Up qcd 1.001023 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 PU_Weight_Down qcd 0.997476 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 b_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 b_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 b_Up znunu 1.054528 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 b_Down znunu 0.943415 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 b_Up ttbarplusw 1.009672 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 b_Down ttbarplusw 0.989635 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 b_Up qcd 1.020962 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 b_Down qcd 0.977079 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 eff_restoptag_Up znunu 1.010883 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 eff_restoptag_Down znunu 0.989100 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 eff_restoptag_Up ttbarplusw 1.003068 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 eff_restoptag_Down ttbarplusw 0.996926 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 eff_restoptag_Up qcd 1.006351 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 eff_restoptag_Down qcd 0.993621 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 eff_toptag_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 eff_toptag_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 eff_toptag_Up znunu 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 eff_toptag_Down znunu 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 eff_toptag_Up ttbarplusw 1.035239 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 eff_toptag_Down ttbarplusw 0.964761 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 eff_toptag_Up qcd 1.002022 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 eff_toptag_Down qcd 0.997970 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 eff_wtag_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 eff_wtag_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 eff_wtag_Up znunu 1.000056 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 eff_wtag_Down znunu 0.999944 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 eff_wtag_Up ttbarplusw 1.000190 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 eff_wtag_Down ttbarplusw 0.999810 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 eff_wtag_Up qcd 0.999868 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 eff_wtag_Down qcd 1.000130 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 ivfunc_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 ivfunc_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 ivfunc_Up znunu 1.004177 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 ivfunc_Down znunu 0.995823 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 ivfunc_Up ttbarplusw 1.000655 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 ivfunc_Down ttbarplusw 0.999347 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 ivfunc_Up qcd 0.999958 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 ivfunc_Down qcd 1.000064 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 trigger_err_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 trigger_err_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 trigger_err_Up znunu 1.004943 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 trigger_err_Down znunu 0.994674 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 trigger_err_Up ttbarplusw 1.004753 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 trigger_err_Down ttbarplusw 0.994844 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 trigger_err_Up qcd 0.999550 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 trigger_err_Down qcd 1.000227 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 JES_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 JES_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 JES_Up znunu 1.065109 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 JES_Down znunu 0.951179 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 JES_Up ttbarplusw 1.401341 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 JES_Down ttbarplusw 0.542659 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 JES_Up qcd 1.043373 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 JES_Down qcd 0.923428 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 metres_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 metres_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 metres_Up znunu 1.069149 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 metres_Down znunu 1.013415 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 metres_Up ttbarplusw 1.004344 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 metres_Down ttbarplusw 0.554718 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 metres_Up qcd 1.002224 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt550to650 metres_Down qcd 0.994503 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf PU_Weight_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf PU_Weight_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf PU_Weight_Up znunu 1.002975 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf PU_Weight_Down znunu 0.995720 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf PU_Weight_Up ttbarplusw 1.039118 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf PU_Weight_Down ttbarplusw 0.960749 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf PU_Weight_Up qcd 1.000533 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf PU_Weight_Down qcd 0.998783 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf b_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf b_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf b_Up znunu 1.041799 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf b_Down znunu 0.956576 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf b_Up ttbarplusw 1.007792 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf b_Down ttbarplusw 0.991128 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf b_Up qcd 1.025032 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf b_Down qcd 0.972208 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf eff_restoptag_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf eff_restoptag_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf eff_restoptag_Up znunu 1.005534 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf eff_restoptag_Down znunu 0.994455 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf eff_restoptag_Up ttbarplusw 1.002645 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf eff_restoptag_Down ttbarplusw 0.997351 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf eff_restoptag_Up qcd 1.005741 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf eff_restoptag_Down qcd 0.994228 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf eff_toptag_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf eff_toptag_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf eff_toptag_Up znunu 1.001328 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf eff_toptag_Down znunu 0.998672 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf eff_toptag_Up ttbarplusw 1.000613 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf eff_toptag_Down ttbarplusw 0.999387 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf eff_toptag_Up qcd 0.999890 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf eff_toptag_Down qcd 1.000109 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf eff_wtag_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf eff_wtag_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf eff_wtag_Up znunu 1.000842 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf eff_wtag_Down znunu 0.999158 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf eff_wtag_Up ttbarplusw 1.000795 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf eff_wtag_Down ttbarplusw 0.999205 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf eff_wtag_Up qcd 0.999774 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf eff_wtag_Down qcd 1.000223 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf ivfunc_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf ivfunc_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf ivfunc_Up znunu 1.001808 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf ivfunc_Down znunu 0.998194 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf ivfunc_Up ttbarplusw 1.000883 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf ivfunc_Down ttbarplusw 0.999121 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf ivfunc_Up qcd 0.999500 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf ivfunc_Down qcd 1.000494 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf trigger_err_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf trigger_err_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf trigger_err_Up znunu 1.004871 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf trigger_err_Down znunu 0.994752 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf trigger_err_Up ttbarplusw 1.004832 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf trigger_err_Down ttbarplusw 0.994756 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf trigger_err_Up qcd 0.999297 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf trigger_err_Down qcd 1.000494 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf JES_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf JES_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf JES_Up znunu 1.058196 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf JES_Down znunu 1.019950 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf JES_Up ttbarplusw 1.033361 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf JES_Down ttbarplusw 0.971135 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf JES_Up qcd 1.051152 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf JES_Down qcd 0.976730 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf metres_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf metres_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf metres_Up znunu 0.991569 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf metres_Down znunu 0.994215 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf metres_Up ttbarplusw 0.996382 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf metres_Down ttbarplusw 0.997226 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf metres_Up qcd 1.016988 +bin_qcdcr_hm_nb1_highmtb_htgt1500_MET_pt650toinf metres_Down qcd 1.000134 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 PU_Weight_Up Rare 1.018526 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 PU_Weight_Down Rare 0.980573 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 PU_Weight_Up znunu 1.004356 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 PU_Weight_Down znunu 0.995100 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 PU_Weight_Up ttbarplusw 1.004279 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 PU_Weight_Down ttbarplusw 0.995729 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 PU_Weight_Up qcd 1.002702 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 PU_Weight_Down qcd 0.996342 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 b_Up Rare 0.985192 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 b_Down Rare 1.014557 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 b_Up znunu 1.034441 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 b_Down znunu 0.964758 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 b_Up ttbarplusw 0.993369 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 b_Down ttbarplusw 1.005849 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 b_Up qcd 1.018486 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 b_Down qcd 0.980404 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 eff_restoptag_Up Rare 1.031375 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 eff_restoptag_Down Rare 0.968595 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 eff_restoptag_Up znunu 1.006885 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 eff_restoptag_Down znunu 0.993078 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 eff_restoptag_Up ttbarplusw 1.017630 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 eff_restoptag_Down ttbarplusw 0.982358 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 eff_restoptag_Up qcd 1.007491 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 eff_restoptag_Down qcd 0.992464 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 eff_toptag_Up Rare 1.010461 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 eff_toptag_Down Rare 0.989539 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 eff_toptag_Up znunu 1.001255 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 eff_toptag_Down znunu 0.998745 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 eff_toptag_Up ttbarplusw 1.011350 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 eff_toptag_Down ttbarplusw 0.988650 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 eff_toptag_Up qcd 1.001055 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 eff_toptag_Down qcd 0.998942 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 eff_wtag_Up Rare 1.000835 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 eff_wtag_Down Rare 0.999170 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 eff_wtag_Up znunu 1.001115 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 eff_wtag_Down znunu 0.998885 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 eff_wtag_Up ttbarplusw 1.004674 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 eff_wtag_Down ttbarplusw 0.995423 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 eff_wtag_Up qcd 1.000179 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 eff_wtag_Down qcd 0.999818 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 ivfunc_Up Rare 1.003091 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 ivfunc_Down Rare 0.996913 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 ivfunc_Up znunu 1.002062 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 ivfunc_Down znunu 0.997941 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 ivfunc_Up ttbarplusw 1.004135 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 ivfunc_Down ttbarplusw 0.995866 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 ivfunc_Up qcd 1.000528 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 ivfunc_Down qcd 0.999463 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 trigger_err_Up Rare 1.005256 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 trigger_err_Down Rare 0.994599 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 trigger_err_Up znunu 1.005185 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 trigger_err_Down znunu 0.994656 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 trigger_err_Up ttbarplusw 1.005325 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 trigger_err_Down ttbarplusw 0.994499 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 trigger_err_Up qcd 0.999704 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 trigger_err_Down qcd 1.000321 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 JES_Up Rare 1.007389 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 JES_Down Rare 1.009797 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 JES_Up znunu 1.080241 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 JES_Down znunu 0.902338 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 JES_Up ttbarplusw 1.036308 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 JES_Down ttbarplusw 0.954152 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 JES_Up qcd 1.045388 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 JES_Down qcd 0.977316 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 metres_Up Rare 0.885145 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 metres_Down Rare 0.994951 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 metres_Up znunu 0.997383 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 metres_Down znunu 0.996065 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 metres_Up ttbarplusw 1.047973 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 metres_Down ttbarplusw 0.961336 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 metres_Up qcd 0.996148 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt250to350 metres_Down qcd 1.007260 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 PU_Weight_Up Rare 0.951674 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 PU_Weight_Down Rare 1.046406 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 PU_Weight_Up znunu 1.004216 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 PU_Weight_Down znunu 0.995800 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 PU_Weight_Up ttbarplusw 1.010909 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 PU_Weight_Down ttbarplusw 0.990011 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 PU_Weight_Up qcd 1.009415 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 PU_Weight_Down qcd 0.991553 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 b_Up Rare 1.007425 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 b_Down Rare 0.991953 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 b_Up znunu 1.040011 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 b_Down znunu 0.959001 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 b_Up ttbarplusw 0.999588 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 b_Down ttbarplusw 0.999643 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 b_Up qcd 1.034437 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 b_Down qcd 0.964325 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 eff_restoptag_Up Rare 1.035444 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 eff_restoptag_Down Rare 0.964095 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 eff_restoptag_Up znunu 1.005692 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 eff_restoptag_Down znunu 0.994285 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 eff_restoptag_Up ttbarplusw 1.011049 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 eff_restoptag_Down ttbarplusw 0.988873 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 eff_restoptag_Up qcd 1.005463 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 eff_restoptag_Down qcd 0.994516 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 eff_toptag_Up Rare 1.006673 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 eff_toptag_Down Rare 0.993327 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 eff_toptag_Up znunu 1.002640 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 eff_toptag_Down znunu 0.997360 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 eff_toptag_Up ttbarplusw 1.012498 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 eff_toptag_Down ttbarplusw 0.987502 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 eff_toptag_Up qcd 1.002587 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 eff_toptag_Down qcd 0.997409 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 eff_wtag_Up Rare 1.005065 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 eff_wtag_Down Rare 0.994935 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 eff_wtag_Up znunu 1.000707 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 eff_wtag_Down znunu 0.999293 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 eff_wtag_Up ttbarplusw 1.003724 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 eff_wtag_Down ttbarplusw 0.996276 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 eff_wtag_Up qcd 1.000186 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 eff_wtag_Down qcd 0.999809 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 ivfunc_Up Rare 1.002734 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 ivfunc_Down Rare 0.997269 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 ivfunc_Up znunu 1.001995 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 ivfunc_Down znunu 0.998025 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 ivfunc_Up ttbarplusw 1.001965 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 ivfunc_Down ttbarplusw 0.998035 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 ivfunc_Up qcd 0.999359 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 ivfunc_Down qcd 1.000634 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 trigger_err_Up Rare 1.004227 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 trigger_err_Down Rare 0.995579 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 trigger_err_Up znunu 1.004245 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 trigger_err_Down znunu 0.995581 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 trigger_err_Up ttbarplusw 1.004386 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 trigger_err_Down ttbarplusw 0.995408 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 trigger_err_Up qcd 0.998191 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 trigger_err_Down qcd 1.001850 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 JES_Up Rare 1.136694 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 JES_Down Rare 1.087964 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 JES_Up znunu 1.072393 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 JES_Down znunu 0.951927 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 JES_Up ttbarplusw 1.076075 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 JES_Down ttbarplusw 0.931219 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 JES_Up qcd 1.075916 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 JES_Down qcd 0.976016 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 metres_Up Rare 1.174644 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 metres_Down Rare 1.244613 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 metres_Up znunu 1.031608 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 metres_Down znunu 1.003247 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 metres_Up ttbarplusw 0.955922 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 metres_Down ttbarplusw 0.972377 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 metres_Up qcd 1.001231 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt350to450 metres_Down qcd 1.019783 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 PU_Weight_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 PU_Weight_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 PU_Weight_Up znunu 1.010403 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 PU_Weight_Down znunu 0.989961 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 PU_Weight_Up ttbarplusw 0.998816 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 PU_Weight_Down ttbarplusw 0.997369 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 PU_Weight_Up qcd 0.998670 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 PU_Weight_Down qcd 0.998964 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 b_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 b_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 b_Up znunu 1.045476 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 b_Down znunu 0.953651 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 b_Up ttbarplusw 1.007541 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 b_Down ttbarplusw 0.991694 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 b_Up qcd 1.017974 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 b_Down qcd 0.981153 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 eff_restoptag_Up znunu 1.004837 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 eff_restoptag_Down znunu 0.995137 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 eff_restoptag_Up ttbarplusw 1.001714 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 eff_restoptag_Down ttbarplusw 0.998282 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 eff_restoptag_Up qcd 1.009692 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 eff_restoptag_Down qcd 0.990255 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 eff_toptag_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 eff_toptag_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 eff_toptag_Up znunu 1.000790 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 eff_toptag_Down znunu 0.999210 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 eff_toptag_Up ttbarplusw 1.020107 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 eff_toptag_Down ttbarplusw 0.979893 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 eff_toptag_Up qcd 1.000949 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 eff_toptag_Down qcd 0.999050 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 eff_wtag_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 eff_wtag_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 eff_wtag_Up znunu 1.000215 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 eff_wtag_Down znunu 0.999785 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 eff_wtag_Up ttbarplusw 1.000589 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 eff_wtag_Down ttbarplusw 0.999411 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 eff_wtag_Up qcd 0.999467 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 eff_wtag_Down qcd 1.000530 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 ivfunc_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 ivfunc_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 ivfunc_Up znunu 1.000981 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 ivfunc_Down znunu 0.999019 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 ivfunc_Up ttbarplusw 1.000698 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 ivfunc_Down ttbarplusw 0.999308 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 ivfunc_Up qcd 0.998706 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 ivfunc_Down qcd 1.001289 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 trigger_err_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 trigger_err_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 trigger_err_Up znunu 1.004403 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 trigger_err_Down znunu 0.995341 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 trigger_err_Up ttbarplusw 1.004781 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 trigger_err_Down ttbarplusw 0.994858 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 trigger_err_Up qcd 0.998029 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 trigger_err_Down qcd 1.001949 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 JES_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 JES_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 JES_Up znunu 1.087967 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 JES_Down znunu 0.961666 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 JES_Up ttbarplusw 0.918674 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 JES_Down ttbarplusw 0.944771 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 JES_Up qcd 0.982176 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 JES_Down qcd 0.898054 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 metres_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 metres_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 metres_Up znunu 1.012243 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 metres_Down znunu 0.997808 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 metres_Up ttbarplusw 1.006573 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 metres_Down ttbarplusw 1.113728 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 metres_Up qcd 0.958985 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt450to550 metres_Down qcd 0.893431 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 PU_Weight_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 PU_Weight_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 PU_Weight_Up znunu 1.008996 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 PU_Weight_Down znunu 0.996157 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 PU_Weight_Up ttbarplusw 1.010660 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 PU_Weight_Down ttbarplusw 0.992544 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 PU_Weight_Up qcd 1.037897 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 PU_Weight_Down qcd 0.965663 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 b_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 b_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 b_Up znunu 1.039966 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 b_Down znunu 0.959164 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 b_Up ttbarplusw 1.033636 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 b_Down ttbarplusw 0.965399 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 b_Up qcd 1.022187 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 b_Down qcd 0.976806 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 eff_restoptag_Up znunu 1.000296 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 eff_restoptag_Down znunu 0.999701 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 eff_restoptag_Up ttbarplusw 1.006084 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 eff_restoptag_Down ttbarplusw 0.993869 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 eff_restoptag_Up qcd 1.002372 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 eff_restoptag_Down qcd 0.997610 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 eff_toptag_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 eff_toptag_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 eff_toptag_Up znunu 1.001835 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 eff_toptag_Down znunu 0.998165 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 eff_toptag_Up ttbarplusw 1.005274 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 eff_toptag_Down ttbarplusw 0.994726 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 eff_toptag_Up qcd 1.000344 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 eff_toptag_Down qcd 0.999655 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 eff_wtag_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 eff_wtag_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 eff_wtag_Up znunu 1.002099 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 eff_wtag_Down znunu 0.997901 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 eff_wtag_Up qcd 0.998042 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 eff_wtag_Down qcd 1.001963 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 ivfunc_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 ivfunc_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 ivfunc_Up znunu 1.001292 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 ivfunc_Down znunu 0.998708 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 ivfunc_Up ttbarplusw 1.002328 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 ivfunc_Down ttbarplusw 0.997672 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 ivfunc_Up qcd 0.999559 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 ivfunc_Down qcd 1.000433 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 trigger_err_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 trigger_err_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 trigger_err_Up znunu 1.004945 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 trigger_err_Down znunu 0.994663 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 trigger_err_Up ttbarplusw 1.005098 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 trigger_err_Down ttbarplusw 0.994471 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 trigger_err_Up qcd 0.998478 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 trigger_err_Down qcd 1.001370 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 JES_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 JES_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 JES_Up znunu 1.148015 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 JES_Down znunu 1.028510 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 JES_Up ttbarplusw 2.981061 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 JES_Down ttbarplusw 0.984738 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 JES_Up qcd 1.082694 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 JES_Down qcd 0.900035 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 metres_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 metres_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 metres_Up znunu 0.962810 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 metres_Down znunu 0.977535 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 metres_Up ttbarplusw 0.999892 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 metres_Down ttbarplusw 1.037041 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 metres_Up qcd 1.020618 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt550to650 metres_Down qcd 0.999356 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf PU_Weight_Up Rare 0.971552 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf PU_Weight_Down Rare 1.026663 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf PU_Weight_Up znunu 1.032159 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf PU_Weight_Down znunu 0.967698 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf PU_Weight_Up ttbarplusw 0.986743 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf PU_Weight_Down ttbarplusw 1.011417 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf PU_Weight_Up qcd 0.991615 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf PU_Weight_Down qcd 1.008325 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf b_Up Rare 1.008627 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf b_Down Rare 0.990955 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf b_Up znunu 1.033044 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf b_Down znunu 0.966748 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf b_Up ttbarplusw 1.052248 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf b_Down ttbarplusw 0.945969 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf b_Up qcd 1.061833 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf b_Down qcd 0.937250 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf eff_restoptag_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf eff_restoptag_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf eff_restoptag_Up znunu 1.003939 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf eff_restoptag_Down znunu 0.995984 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf eff_restoptag_Up ttbarplusw 1.005591 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf eff_restoptag_Down ttbarplusw 0.994249 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf eff_restoptag_Up qcd 1.001124 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf eff_restoptag_Down qcd 0.998854 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf eff_toptag_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf eff_toptag_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf eff_toptag_Up znunu 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf eff_toptag_Down znunu 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf eff_toptag_Up ttbarplusw 1.003920 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf eff_toptag_Down ttbarplusw 0.996080 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf eff_toptag_Up qcd 1.001307 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf eff_toptag_Down qcd 0.998691 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf eff_wtag_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf eff_wtag_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf eff_wtag_Up qcd 0.999507 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf eff_wtag_Down qcd 1.000485 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf ivfunc_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf ivfunc_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf ivfunc_Up znunu 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf ivfunc_Down znunu 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf ivfunc_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf ivfunc_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf ivfunc_Up qcd 0.998428 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf ivfunc_Down qcd 1.001571 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf trigger_err_Up Rare 1.004685 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf trigger_err_Down Rare 0.995025 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf trigger_err_Up znunu 1.004526 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf trigger_err_Down znunu 0.995155 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf trigger_err_Up ttbarplusw 1.005125 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf trigger_err_Down ttbarplusw 0.994417 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf trigger_err_Up qcd 0.998566 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf trigger_err_Down qcd 1.001265 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf JES_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf JES_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf JES_Up znunu 0.948155 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf JES_Down znunu 0.689500 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf JES_Up ttbarplusw 1.036715 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf JES_Down ttbarplusw 0.839566 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf JES_Up qcd 1.196714 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf JES_Down qcd 1.000056 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf metres_Up Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf metres_Down Rare 1.000000 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf metres_Up znunu 1.066463 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf metres_Down znunu 0.924813 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf metres_Up ttbarplusw 0.957869 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf metres_Down ttbarplusw 0.876479 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf metres_Up qcd 1.003165 +bin_qcdcr_hm_nb1_highmtb_htlt1000_MET_pt650toinf metres_Down qcd 0.993349 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Up Rare 1.004904 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Down Rare 0.996124 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Up znunu 1.014328 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Down znunu 0.981700 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Up ttbarplusw 1.011155 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Down ttbarplusw 0.985245 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Up qcd 0.987261 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Down qcd 1.013066 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Up Rare 0.956878 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Down Rare 1.043229 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Up znunu 1.036874 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Down znunu 0.961594 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Up ttbarplusw 0.977447 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Down ttbarplusw 1.022075 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Up qcd 1.003773 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Down qcd 0.994966 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Up Rare 1.113992 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Down Rare 0.885868 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Up znunu 1.144742 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Down znunu 0.855100 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Up ttbarplusw 1.136855 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Down ttbarplusw 0.863473 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Up qcd 1.179433 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Down qcd 0.821298 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Up Rare 0.999179 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Down Rare 1.000821 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Up znunu 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Down znunu 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Up ttbarplusw 1.007889 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Down ttbarplusw 0.992111 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Up qcd 0.999878 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Down qcd 1.000121 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Up Rare 0.999918 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Down Rare 1.000082 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Up ttbarplusw 1.002379 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Down ttbarplusw 0.997621 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Up qcd 1.005609 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Down qcd 0.994382 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Up Rare 1.000913 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Down Rare 0.999101 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Up znunu 1.003084 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Down znunu 0.996916 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Up ttbarplusw 1.003697 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Down ttbarplusw 0.996304 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Up qcd 0.999326 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Down qcd 1.000669 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Up Rare 1.006186 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Down Rare 0.993617 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Up znunu 1.006044 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Down znunu 0.993785 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Up ttbarplusw 1.006232 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Down ttbarplusw 0.993559 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Up qcd 1.000470 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Down qcd 0.999505 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Up Rare 1.188553 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Down Rare 0.931007 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Up znunu 1.110688 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Down znunu 1.078453 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Up ttbarplusw 0.983367 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Down ttbarplusw 0.873683 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Up qcd 1.050950 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Down qcd 1.033996 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Up Rare 1.117800 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Down Rare 0.773247 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Up znunu 1.061791 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Down znunu 0.906727 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Up ttbarplusw 0.966811 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Down ttbarplusw 0.916229 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Up qcd 1.025219 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Down qcd 0.901130 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Up Rare 0.992404 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Down Rare 1.008376 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Up znunu 1.011002 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Down znunu 0.985318 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Up ttbarplusw 1.029780 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Down ttbarplusw 0.973539 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Up qcd 0.992839 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Down qcd 1.007433 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Up Rare 0.984559 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Down Rare 1.014224 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Up znunu 1.006299 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Down znunu 0.993091 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Up ttbarplusw 0.963638 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Down ttbarplusw 1.037408 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Up qcd 1.002113 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Down qcd 0.996389 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Up Rare 1.138331 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Down Rare 0.864363 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Up znunu 1.186526 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Down znunu 0.813336 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Up ttbarplusw 1.128100 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Down ttbarplusw 0.872207 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Up qcd 1.189097 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Down qcd 0.810626 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Up Rare 1.004703 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Down Rare 0.995297 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Up znunu 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Down znunu 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Up ttbarplusw 1.013195 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Down ttbarplusw 0.986805 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Up qcd 0.998980 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Down qcd 1.001016 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Up Rare 1.005462 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Down Rare 0.994538 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Up qcd 0.999366 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Down qcd 1.000633 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Up Rare 1.004451 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Down Rare 0.995567 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Up znunu 1.013674 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Down znunu 0.986844 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Up ttbarplusw 1.005744 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Down ttbarplusw 0.994256 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Up qcd 0.998392 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Down qcd 1.001603 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Up Rare 1.003951 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Down Rare 0.995912 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Up znunu 1.003768 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Down znunu 0.996125 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Up ttbarplusw 1.003911 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Down ttbarplusw 0.995958 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Up qcd 0.998295 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Down qcd 1.001801 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Up Rare 0.933799 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Down Rare 0.740647 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Up znunu 1.025112 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Down znunu 0.970399 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Up ttbarplusw 1.114190 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Down ttbarplusw 0.916381 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Up qcd 0.951073 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Down qcd 1.099597 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Up Rare 0.963839 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Down Rare 0.947011 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Up znunu 0.965294 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Down znunu 0.972241 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Up ttbarplusw 1.095749 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Down ttbarplusw 0.934974 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Up qcd 1.037374 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Down qcd 1.012904 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Up Rare 0.947986 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Down Rare 1.059310 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Up znunu 1.023009 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Down znunu 0.976442 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Up ttbarplusw 0.988987 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Down ttbarplusw 1.011437 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Up qcd 1.037200 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Down qcd 0.965532 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Up Rare 0.967570 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Down Rare 1.031160 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Up znunu 1.071546 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Down znunu 0.927208 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Up ttbarplusw 0.976566 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Down ttbarplusw 1.023580 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Up qcd 0.990247 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Down qcd 1.008472 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Up Rare 1.163636 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Down Rare 0.836349 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Up znunu 1.168291 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Down znunu 0.831635 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Up ttbarplusw 1.196483 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Down ttbarplusw 0.803396 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Up qcd 1.183938 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Down qcd 0.815531 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Up Rare 0.994156 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Down Rare 1.005844 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Up znunu 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Down znunu 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Up ttbarplusw 1.000001 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Down ttbarplusw 0.999999 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Up qcd 0.999434 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Down qcd 1.000567 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Up Rare 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Down Rare 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Up ttbarplusw 1.000011 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Down ttbarplusw 0.999989 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Up qcd 0.998963 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Down qcd 1.001039 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Up Rare 0.990973 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Down Rare 1.009027 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Up znunu 1.007281 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Down znunu 0.992719 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Up ttbarplusw 1.000001 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Down ttbarplusw 0.999999 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Up qcd 1.000121 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Down qcd 0.999871 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Up Rare 1.004348 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Down Rare 0.995431 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Up znunu 1.004071 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Down znunu 0.995767 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Up ttbarplusw 1.004138 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Down ttbarplusw 0.995669 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Up qcd 0.998446 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Down qcd 1.001541 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Up Rare 1.095550 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Down Rare 1.106810 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Up znunu 0.997761 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Down znunu 1.171893 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Up ttbarplusw 0.997427 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Down ttbarplusw 1.002795 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Up qcd 0.856032 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Down qcd 1.195528 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Up Rare 0.916074 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Down Rare 1.043932 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Up znunu 0.980605 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Down znunu 1.003977 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Up ttbarplusw 1.105666 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Down ttbarplusw 1.001652 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Up qcd 0.981211 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Down qcd 0.976627 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Up Rare 0.997777 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Down Rare 1.012691 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Up znunu 1.017728 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Down znunu 0.976586 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Up ttbarplusw 1.010003 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Down ttbarplusw 0.981046 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Up qcd 1.016830 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Down qcd 0.982472 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Up Rare 0.969950 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Down Rare 1.031318 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Up znunu 1.008001 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Down znunu 0.987580 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Up ttbarplusw 0.998879 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Down ttbarplusw 1.001137 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Up qcd 0.980926 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Down qcd 1.018792 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Up Rare 1.077895 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Down Rare 0.922204 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Up znunu 1.147009 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Down znunu 0.852930 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Up ttbarplusw 1.114373 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Down ttbarplusw 0.885488 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Up qcd 1.180352 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Down qcd 0.819184 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Up Rare 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Down Rare 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Up znunu 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Down znunu 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Up ttbarplusw 1.010205 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Down ttbarplusw 0.989795 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Up qcd 0.998873 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Down qcd 1.001123 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Up Rare 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Down Rare 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Up ttbarplusw 1.000002 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Down ttbarplusw 0.999998 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Up qcd 0.999194 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Down qcd 1.000807 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Up Rare 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Down Rare 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Up znunu 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Down znunu 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Up ttbarplusw 1.000040 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Down ttbarplusw 0.999960 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Up qcd 1.001295 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Down qcd 0.998690 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Up Rare 1.004828 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Down Rare 0.994771 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Up znunu 1.005038 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Down znunu 0.994580 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Up ttbarplusw 1.004918 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Down ttbarplusw 0.994672 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Up qcd 0.999422 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Down qcd 1.000376 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Up Rare 1.072627 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Down Rare 0.692647 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Up znunu 1.017210 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Down znunu 1.158698 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Up ttbarplusw 0.665632 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Down ttbarplusw 1.001232 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Up qcd 0.962922 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Down qcd 0.913926 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Up Rare 1.135348 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Down Rare 1.304394 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Up znunu 1.000000 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Down znunu 0.994873 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Up ttbarplusw 1.004106 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Down ttbarplusw 0.996841 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Up qcd 0.877451 +bin_qcdcr_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Down qcd 0.980334 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Up Rare 1.016715 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Down Rare 0.983781 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Up znunu 0.984142 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Down znunu 1.011077 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Up ttbarplusw 1.012226 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Down ttbarplusw 0.989467 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Up qcd 1.028564 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Down qcd 0.967695 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Up Rare 1.037785 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Down Rare 0.964351 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Up znunu 1.051350 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Down znunu 0.950094 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Up ttbarplusw 1.027670 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Down ttbarplusw 0.971563 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Up qcd 1.044300 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Down qcd 0.955203 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Up Rare 1.087324 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Down Rare 0.912467 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Up znunu 1.191216 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Down znunu 0.811279 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Up ttbarplusw 1.112695 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Down ttbarplusw 0.888286 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Up qcd 1.199058 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Down qcd 0.803796 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Up Rare 1.011454 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Down Rare 0.988546 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Up znunu 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Down znunu 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Up ttbarplusw 1.006731 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Down ttbarplusw 0.993269 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Up qcd 0.999995 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Down qcd 1.000005 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Up Rare 1.001734 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Down Rare 0.998266 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Up ttbarplusw 1.001986 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Down ttbarplusw 0.998014 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Up qcd 1.001574 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Down qcd 0.998410 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Up Rare 1.004453 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Down Rare 0.995579 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Up znunu 1.002823 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Down znunu 0.997177 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Up ttbarplusw 1.001421 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Down ttbarplusw 0.998579 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Up qcd 1.000742 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Down qcd 0.999263 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Up Rare 1.006120 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Down Rare 0.993700 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Up znunu 1.006106 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Down znunu 0.993676 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Up ttbarplusw 1.006231 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Down ttbarplusw 0.993527 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Up qcd 1.000562 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Down qcd 0.999426 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Up Rare 1.136131 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Down Rare 0.819753 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Up znunu 0.964381 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Down znunu 0.583492 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Up ttbarplusw 0.965704 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Down ttbarplusw 0.956134 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Up qcd 1.194101 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Down qcd 0.941992 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Up Rare 1.012983 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Down Rare 1.011826 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Up znunu 0.903730 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Down znunu 0.667161 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Up ttbarplusw 1.035715 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Down ttbarplusw 1.061980 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Up qcd 1.169853 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Down qcd 0.952792 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Up Rare 0.996265 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Down Rare 0.999552 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Up znunu 0.994713 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Down znunu 1.004509 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Up ttbarplusw 0.977328 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Down ttbarplusw 1.019634 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Up qcd 0.991773 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Down qcd 1.008204 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Up Rare 1.027789 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Down Rare 0.969805 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Up znunu 1.036188 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Down znunu 0.963836 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Up ttbarplusw 1.056028 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Down ttbarplusw 0.945747 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Up qcd 1.059145 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Down qcd 0.941303 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Up Rare 1.172213 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Down Rare 0.833012 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Up znunu 1.218565 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Down znunu 0.787960 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Up ttbarplusw 1.134137 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Down ttbarplusw 0.866625 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Up qcd 1.192207 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Down qcd 0.807869 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Up Rare 1.004195 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Down Rare 0.995805 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Up znunu 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Down znunu 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Up ttbarplusw 1.002724 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Down ttbarplusw 0.997276 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Up qcd 1.000656 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Down qcd 0.999341 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Up Rare 1.000945 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Down Rare 0.999055 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Up ttbarplusw 1.000027 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Down ttbarplusw 0.999973 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Up qcd 0.999543 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Down qcd 1.000457 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Up Rare 1.008853 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Down Rare 0.991248 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Up znunu 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Down znunu 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Up ttbarplusw 1.001406 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Down ttbarplusw 0.998594 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Up qcd 1.007851 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Down qcd 0.992102 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Up Rare 1.003810 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Down Rare 0.996067 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Up znunu 1.003582 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Down znunu 0.996330 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Up ttbarplusw 1.003727 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Down ttbarplusw 0.996143 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Up qcd 0.998066 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Down qcd 1.002020 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Up Rare 0.823842 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Down Rare 0.899009 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Up znunu 1.083423 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Down znunu 0.849707 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Up ttbarplusw 0.925144 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Down ttbarplusw 0.990277 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Up qcd 0.984187 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Down qcd 0.791111 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Up Rare 0.865613 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Down Rare 0.948171 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Up znunu 0.997045 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Down znunu 1.042705 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Up ttbarplusw 0.992819 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Down ttbarplusw 0.923052 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Up qcd 0.946836 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Down qcd 0.964381 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Up Rare 0.980775 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Down Rare 1.014296 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Up znunu 1.048204 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Down znunu 0.955405 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Up ttbarplusw 0.993190 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Down ttbarplusw 1.003718 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Up qcd 1.023171 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Down qcd 0.976961 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Up Rare 1.034372 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Down Rare 0.965350 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Up znunu 1.050039 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Down znunu 0.948843 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Up ttbarplusw 1.061639 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Down ttbarplusw 0.940456 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Up qcd 1.052567 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Down qcd 0.948175 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Up Rare 1.058760 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Down Rare 0.936580 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Up znunu 1.201494 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Down znunu 0.798278 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Up ttbarplusw 1.099005 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Down ttbarplusw 0.901056 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Up qcd 1.188350 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Down qcd 0.811216 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Up Rare 0.998029 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Down Rare 1.001971 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Up znunu 1.022379 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Down znunu 0.977621 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Up qcd 1.005415 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Down qcd 0.994584 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Up Rare 1.001153 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Down Rare 0.998847 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Up qcd 0.999341 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Down qcd 1.000659 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Up Rare 1.005348 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Down Rare 0.994700 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Up znunu 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Down znunu 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Up ttbarplusw 1.000039 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Down ttbarplusw 0.999961 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Up qcd 0.999138 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Down qcd 1.000858 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Up Rare 1.003962 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Down Rare 0.995921 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Up znunu 1.004125 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Down znunu 0.995702 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Up ttbarplusw 1.004339 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Down ttbarplusw 0.995432 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Up qcd 0.998717 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Down qcd 1.001264 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Up Rare 1.189925 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Down Rare 0.950050 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Up znunu 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Down znunu 1.109642 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Up ttbarplusw 1.423293 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Down ttbarplusw 0.914686 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Up qcd 0.991442 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Down qcd 1.062680 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Up Rare 1.031902 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Down Rare 1.183971 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Up znunu 0.933231 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Down znunu 0.819114 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Up ttbarplusw 0.999533 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Down ttbarplusw 1.571088 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Up qcd 1.104159 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Down qcd 0.936579 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Up Rare 1.103277 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Down Rare 0.897366 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Up znunu 1.030621 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Down znunu 0.979802 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Up ttbarplusw 1.024251 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Down ttbarplusw 0.979343 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Up qcd 1.010253 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Down qcd 0.988937 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Up Rare 1.037646 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Down Rare 0.961318 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Up znunu 1.162100 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Down znunu 0.851400 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Up ttbarplusw 1.051523 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Down ttbarplusw 0.949435 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Up qcd 1.053670 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Down qcd 0.945976 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Up Rare 1.102248 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Down Rare 0.898595 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Up znunu 1.170097 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Down znunu 0.829828 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Up ttbarplusw 1.135280 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Down ttbarplusw 0.865806 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Up qcd 1.177649 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Down qcd 0.823946 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Up Rare 1.002613 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Down Rare 0.997387 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Up znunu 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Down znunu 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Up ttbarplusw 1.021354 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Down ttbarplusw 0.978646 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Up qcd 1.009352 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Down qcd 0.990648 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Up Rare 1.016472 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Down Rare 0.983528 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Up qcd 1.003476 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Down qcd 0.996490 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Up Rare 0.975624 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Down Rare 1.024376 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Up znunu 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Down znunu 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Up ttbarplusw 1.000008 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Down ttbarplusw 0.999992 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Up qcd 1.003628 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Down qcd 0.996354 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Up Rare 1.004473 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Down Rare 0.995232 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Up znunu 1.004472 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Down znunu 0.995241 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Up ttbarplusw 1.004295 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Down ttbarplusw 0.995365 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Up qcd 0.999218 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Down qcd 1.000600 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Up Rare 1.107156 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Down Rare 0.931310 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Up znunu 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Down znunu 0.822350 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Up ttbarplusw 1.000675 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Down ttbarplusw 0.807399 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Up qcd 1.003461 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Down qcd 0.791923 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Up Rare 1.195244 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Down Rare 0.797874 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Up znunu 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Down znunu 1.000000 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Up ttbarplusw 0.999820 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Down ttbarplusw 0.999747 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Up qcd 0.913327 +bin_qcdcr_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Down qcd 1.002555 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 PU_Weight_Up Rare 1.021836 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 PU_Weight_Down Rare 0.974303 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 PU_Weight_Up znunu 0.945569 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 PU_Weight_Down znunu 1.060647 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 PU_Weight_Up ttbarplusw 1.021739 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 PU_Weight_Down ttbarplusw 0.970630 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 PU_Weight_Up qcd 0.988274 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 PU_Weight_Down qcd 1.012208 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 b_Up Rare 1.091708 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 b_Down Rare 0.910339 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 b_Up znunu 1.083534 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 b_Down znunu 0.920977 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 b_Up ttbarplusw 1.098740 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 b_Down ttbarplusw 0.897487 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 b_Up qcd 1.094951 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 b_Down qcd 0.909910 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 eff_restoptag_Up Rare 1.030321 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 eff_restoptag_Down Rare 0.969674 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 eff_restoptag_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 eff_restoptag_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 eff_restoptag_Up ttbarplusw 1.000089 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 eff_restoptag_Down ttbarplusw 0.999911 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 eff_restoptag_Up qcd 1.011309 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 eff_restoptag_Down qcd 0.988670 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 eff_toptag_Up Rare 1.007490 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 eff_toptag_Down Rare 0.992579 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 eff_toptag_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 eff_toptag_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 eff_toptag_Up ttbarplusw 1.021405 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 eff_toptag_Down ttbarplusw 0.978595 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 eff_toptag_Up qcd 1.002559 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 eff_toptag_Down qcd 0.997437 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 eff_wtag_Up Rare 1.000942 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 eff_wtag_Down Rare 0.999058 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 eff_wtag_Up ttbarplusw 1.000051 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 eff_wtag_Down ttbarplusw 0.999949 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 eff_wtag_Up qcd 0.999393 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 eff_wtag_Down qcd 1.000606 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 ivfunc_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 ivfunc_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 ivfunc_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 ivfunc_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 ivfunc_Up ttbarplusw 1.000028 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 ivfunc_Down ttbarplusw 0.999972 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 ivfunc_Up qcd 1.000079 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 ivfunc_Down qcd 0.999914 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 trigger_err_Up Rare 1.005536 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 trigger_err_Down Rare 0.994227 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 trigger_err_Up znunu 1.005058 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 trigger_err_Down znunu 0.994816 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 trigger_err_Up ttbarplusw 1.004754 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 trigger_err_Down ttbarplusw 0.995087 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 trigger_err_Up qcd 0.999769 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 trigger_err_Down qcd 1.000232 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 JES_Up Rare 0.998562 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 JES_Down Rare 0.675073 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 JES_Up znunu 2.138076 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 JES_Down znunu 1.162534 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 JES_Up ttbarplusw 0.973323 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 JES_Down ttbarplusw 0.841184 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 JES_Up qcd 1.002100 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 JES_Down qcd 0.925858 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 metres_Up Rare 0.614587 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 metres_Down Rare 1.169456 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 metres_Up znunu 0.809855 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 metres_Down znunu 1.439546 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 metres_Up ttbarplusw 1.116581 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 metres_Down ttbarplusw 0.999501 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 metres_Up qcd 0.989669 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt250to350 metres_Down qcd 0.974472 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 PU_Weight_Up Rare 1.014680 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 PU_Weight_Down Rare 0.978790 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 PU_Weight_Up znunu 0.980210 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 PU_Weight_Down znunu 1.020627 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 PU_Weight_Up ttbarplusw 0.996999 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 PU_Weight_Down ttbarplusw 1.004781 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 PU_Weight_Up qcd 1.027385 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 PU_Weight_Down qcd 0.972577 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 b_Up Rare 1.155776 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 b_Down Rare 0.858155 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 b_Up znunu 1.115551 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 b_Down znunu 0.894195 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 b_Up ttbarplusw 1.142079 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 b_Down ttbarplusw 0.865523 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 b_Up qcd 1.109397 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 b_Down qcd 0.897785 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 eff_restoptag_Up Rare 0.995752 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 eff_restoptag_Down Rare 1.004369 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 eff_restoptag_Up znunu 1.016752 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 eff_restoptag_Down znunu 0.983246 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 eff_restoptag_Up ttbarplusw 1.021727 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 eff_restoptag_Down ttbarplusw 0.978282 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 eff_restoptag_Up qcd 1.010400 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 eff_restoptag_Down qcd 0.989555 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 eff_toptag_Up Rare 1.014763 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 eff_toptag_Down Rare 0.985237 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 eff_toptag_Up znunu 1.002358 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 eff_toptag_Down znunu 0.997642 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 eff_toptag_Up ttbarplusw 1.000344 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 eff_toptag_Down ttbarplusw 0.999656 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 eff_toptag_Up qcd 1.002530 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 eff_toptag_Down qcd 0.997465 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 eff_wtag_Up Rare 1.028502 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 eff_wtag_Down Rare 0.971498 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 eff_wtag_Up ttbarplusw 1.002719 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 eff_wtag_Down ttbarplusw 0.997281 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 eff_wtag_Up qcd 0.999081 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 eff_wtag_Down qcd 1.000919 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 ivfunc_Up Rare 1.004743 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 ivfunc_Down Rare 0.995257 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 ivfunc_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 ivfunc_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 ivfunc_Up ttbarplusw 1.036270 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 ivfunc_Down ttbarplusw 0.963730 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 ivfunc_Up qcd 1.000258 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 ivfunc_Down qcd 0.999735 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 trigger_err_Up Rare 1.004010 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 trigger_err_Down Rare 0.995844 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 trigger_err_Up znunu 1.004392 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 trigger_err_Down znunu 0.995409 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 trigger_err_Up ttbarplusw 1.003899 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 trigger_err_Down ttbarplusw 0.995963 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 trigger_err_Up qcd 0.998786 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 trigger_err_Down qcd 1.001220 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 JES_Up Rare 1.051893 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 JES_Down Rare 0.735192 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 JES_Up znunu 1.074492 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 JES_Down znunu 0.574619 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 JES_Up ttbarplusw 1.424466 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 JES_Down ttbarplusw 0.990141 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 JES_Up qcd 0.975101 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 JES_Down qcd 1.007159 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 metres_Up Rare 0.854273 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 metres_Down Rare 0.852467 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 metres_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 metres_Down znunu 1.024701 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 metres_Up ttbarplusw 1.724556 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 metres_Down ttbarplusw 1.006959 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 metres_Up qcd 1.067056 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt350to450 metres_Down qcd 0.984752 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 PU_Weight_Up Rare 1.060559 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 PU_Weight_Down Rare 0.951846 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 PU_Weight_Up znunu 0.942820 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 PU_Weight_Down znunu 1.063925 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 PU_Weight_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 PU_Weight_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 PU_Weight_Up qcd 1.018476 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 PU_Weight_Down qcd 0.977325 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 b_Up Rare 1.115577 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 b_Down Rare 0.887123 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 b_Up znunu 1.125178 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 b_Down znunu 0.892962 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 b_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 b_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 b_Up qcd 1.096240 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 b_Down qcd 0.911728 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 eff_restoptag_Up Rare 1.005875 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 eff_restoptag_Down Rare 0.994135 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 eff_restoptag_Up znunu 1.021469 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 eff_restoptag_Down znunu 0.978368 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 eff_restoptag_Up qcd 1.004335 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 eff_restoptag_Down qcd 0.995650 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 eff_toptag_Up Rare 1.023632 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 eff_toptag_Down Rare 0.976368 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 eff_toptag_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 eff_toptag_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 eff_toptag_Up qcd 1.018433 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 eff_toptag_Down qcd 0.981529 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 eff_wtag_Up Rare 1.012780 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 eff_wtag_Down Rare 0.987220 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 eff_wtag_Up qcd 0.999541 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 eff_wtag_Down qcd 1.000460 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 ivfunc_Up Rare 1.012586 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 ivfunc_Down Rare 0.987414 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 ivfunc_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 ivfunc_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 ivfunc_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 ivfunc_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 ivfunc_Up qcd 1.008657 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 ivfunc_Down qcd 0.991301 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 trigger_err_Up Rare 1.004574 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 trigger_err_Down Rare 0.995150 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 trigger_err_Up znunu 1.004173 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 trigger_err_Down znunu 0.995637 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 trigger_err_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 trigger_err_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 trigger_err_Up qcd 0.998600 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 trigger_err_Down qcd 1.001324 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 JES_Up Rare 0.987407 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 JES_Down Rare 1.025014 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 JES_Up znunu 1.252617 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 JES_Down znunu 0.880197 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 JES_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 JES_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 JES_Up qcd 0.962951 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 JES_Down qcd 0.958586 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 metres_Up Rare 0.988999 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 metres_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 metres_Up znunu 1.238681 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 metres_Down znunu 1.251359 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 metres_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 metres_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 metres_Up qcd 1.011299 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt450to550 metres_Down qcd 0.841076 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf PU_Weight_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf PU_Weight_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf PU_Weight_Up znunu 1.046287 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf PU_Weight_Down znunu 0.966698 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf PU_Weight_Up ttbarplusw 0.977682 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf PU_Weight_Down ttbarplusw 1.018181 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf PU_Weight_Up qcd 0.991391 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf PU_Weight_Down qcd 1.008673 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf b_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf b_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf b_Up znunu 1.121144 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf b_Down znunu 0.882691 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf b_Up ttbarplusw 0.982204 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf b_Down ttbarplusw 1.016926 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf b_Up qcd 1.174054 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf b_Down qcd 0.844696 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf eff_restoptag_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf eff_restoptag_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf eff_restoptag_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf eff_restoptag_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf eff_restoptag_Up ttbarplusw 1.032175 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf eff_restoptag_Down ttbarplusw 0.967796 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf eff_restoptag_Up qcd 1.019969 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf eff_restoptag_Down qcd 0.983962 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf eff_toptag_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf eff_toptag_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf eff_toptag_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf eff_toptag_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf eff_toptag_Up ttbarplusw 1.000216 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf eff_toptag_Down ttbarplusw 0.999784 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf eff_toptag_Up qcd 0.999747 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf eff_toptag_Down qcd 1.000253 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf eff_wtag_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf eff_wtag_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf eff_wtag_Up qcd 0.998840 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf eff_wtag_Down qcd 1.001163 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf ivfunc_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf ivfunc_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf ivfunc_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf ivfunc_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf ivfunc_Up ttbarplusw 1.000393 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf ivfunc_Down ttbarplusw 0.999607 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf ivfunc_Up qcd 0.997564 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf ivfunc_Down qcd 1.002434 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf trigger_err_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf trigger_err_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf trigger_err_Up znunu 1.005271 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf trigger_err_Down znunu 0.994272 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf trigger_err_Up ttbarplusw 1.004572 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf trigger_err_Down ttbarplusw 0.995160 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf trigger_err_Up qcd 0.998270 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf trigger_err_Down qcd 1.001581 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf JES_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf JES_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf JES_Up znunu 0.756071 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf JES_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf JES_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf JES_Down ttbarplusw 0.999234 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf JES_Up qcd 0.800937 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf JES_Down qcd 0.948028 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf metres_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf metres_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf metres_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf metres_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf metres_Up ttbarplusw 1.001369 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf metres_Down ttbarplusw 1.003837 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf metres_Up qcd 0.827219 +bin_qcdcr_hm_nb3_highmtb_ht1000to1500_MET_pt550toinf metres_Down qcd 1.025477 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 PU_Weight_Up Rare 0.991994 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 PU_Weight_Down Rare 1.010249 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 PU_Weight_Up znunu 0.979906 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 PU_Weight_Down znunu 1.017780 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 PU_Weight_Up ttbarplusw 1.164534 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 PU_Weight_Down ttbarplusw 0.838599 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 PU_Weight_Up qcd 0.997350 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 PU_Weight_Down qcd 1.005502 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 b_Up Rare 1.070043 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 b_Down Rare 0.928150 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 b_Up znunu 1.193005 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 b_Down znunu 0.828631 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 b_Up ttbarplusw 1.102301 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 b_Down ttbarplusw 0.904234 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 b_Up qcd 1.118660 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 b_Down qcd 0.890240 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 eff_restoptag_Up Rare 1.179166 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 eff_restoptag_Down Rare 0.820810 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 eff_restoptag_Up znunu 1.088356 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 eff_restoptag_Down znunu 0.911636 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 eff_restoptag_Up ttbarplusw 1.000449 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 eff_restoptag_Down ttbarplusw 0.999550 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 eff_restoptag_Up qcd 1.011624 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 eff_restoptag_Down qcd 0.988350 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 eff_toptag_Up Rare 1.010066 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 eff_toptag_Down Rare 0.989934 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 eff_toptag_Up znunu 1.000779 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 eff_toptag_Down znunu 0.999221 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 eff_toptag_Up ttbarplusw 1.000089 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 eff_toptag_Down ttbarplusw 0.999911 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 eff_toptag_Up qcd 1.006383 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 eff_toptag_Down qcd 0.993607 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 eff_wtag_Up Rare 0.995740 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 eff_wtag_Down Rare 1.004260 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 eff_wtag_Up ttbarplusw 1.050311 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 eff_wtag_Down ttbarplusw 0.949689 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 eff_wtag_Up qcd 1.000106 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 eff_wtag_Down qcd 0.999894 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 ivfunc_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 ivfunc_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 ivfunc_Up znunu 1.000079 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 ivfunc_Down znunu 0.999921 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 ivfunc_Up ttbarplusw 1.030409 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 ivfunc_Down ttbarplusw 0.969591 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 ivfunc_Up qcd 1.002075 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 ivfunc_Down qcd 0.997935 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 trigger_err_Up Rare 1.005223 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 trigger_err_Down Rare 0.994585 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 trigger_err_Up znunu 1.005280 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 trigger_err_Down znunu 0.994576 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 trigger_err_Up ttbarplusw 1.003550 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 trigger_err_Down ttbarplusw 0.996358 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 trigger_err_Up qcd 0.999405 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 trigger_err_Down qcd 1.000614 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 JES_Up Rare 1.021973 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 JES_Down Rare 0.998246 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 JES_Up znunu 1.408571 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 JES_Down znunu 0.609433 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 JES_Up ttbarplusw 0.792407 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 JES_Down ttbarplusw 0.399014 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 JES_Up qcd 1.074449 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 JES_Down qcd 0.937123 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 metres_Up Rare 0.995434 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 metres_Down Rare 0.756376 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 metres_Up znunu 0.799562 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 metres_Down znunu 0.987396 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 metres_Up ttbarplusw 1.001153 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 metres_Down ttbarplusw 0.999726 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 metres_Up qcd 0.990760 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt250to350 metres_Down qcd 0.979820 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 PU_Weight_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 PU_Weight_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 PU_Weight_Up znunu 1.021231 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 PU_Weight_Down znunu 0.976867 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 PU_Weight_Up ttbarplusw 0.975457 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 PU_Weight_Down ttbarplusw 1.028983 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 PU_Weight_Up qcd 1.015536 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 PU_Weight_Down qcd 0.984972 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 b_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 b_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 b_Up znunu 1.111705 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 b_Down znunu 0.895267 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 b_Up ttbarplusw 1.112713 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 b_Down ttbarplusw 0.890949 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 b_Up qcd 1.124912 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 b_Down qcd 0.883623 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 eff_restoptag_Up znunu 1.010442 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 eff_restoptag_Down znunu 0.989546 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 eff_restoptag_Up ttbarplusw 1.011826 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 eff_restoptag_Down ttbarplusw 0.988172 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 eff_restoptag_Up qcd 1.023446 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 eff_restoptag_Down qcd 0.976502 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 eff_toptag_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 eff_toptag_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 eff_toptag_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 eff_toptag_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 eff_toptag_Up ttbarplusw 1.003263 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 eff_toptag_Down ttbarplusw 0.996737 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 eff_toptag_Up qcd 1.003860 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 eff_toptag_Down qcd 0.996132 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 eff_wtag_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 eff_wtag_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 eff_wtag_Up ttbarplusw 1.005986 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 eff_wtag_Down ttbarplusw 0.994014 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 eff_wtag_Up qcd 0.999555 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 eff_wtag_Down qcd 1.000446 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 ivfunc_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 ivfunc_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 ivfunc_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 ivfunc_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 ivfunc_Up ttbarplusw 1.001967 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 ivfunc_Down ttbarplusw 0.998033 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 ivfunc_Up qcd 0.998555 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 ivfunc_Down qcd 1.001451 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 trigger_err_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 trigger_err_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 trigger_err_Up znunu 1.004160 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 trigger_err_Down znunu 0.995732 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 trigger_err_Up ttbarplusw 1.004236 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 trigger_err_Down ttbarplusw 0.995596 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 trigger_err_Up qcd 0.998831 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 trigger_err_Down qcd 1.001168 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 JES_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 JES_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 JES_Up znunu 0.940465 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 JES_Down znunu 0.988653 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 JES_Up ttbarplusw 1.015213 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 JES_Down ttbarplusw 0.809930 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 JES_Up qcd 0.997700 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 JES_Down qcd 0.972767 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 metres_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 metres_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 metres_Up znunu 1.022005 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 metres_Down znunu 0.905635 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 metres_Up ttbarplusw 0.824314 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 metres_Down ttbarplusw 1.101869 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 metres_Up qcd 1.058661 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt350to450 metres_Down qcd 0.977586 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 PU_Weight_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 PU_Weight_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 PU_Weight_Up znunu 1.033359 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 PU_Weight_Down znunu 0.966098 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 PU_Weight_Up ttbarplusw 1.080073 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 PU_Weight_Down ttbarplusw 0.929174 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 PU_Weight_Up qcd 1.020011 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 PU_Weight_Down qcd 0.977410 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 b_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 b_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 b_Up znunu 1.133332 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 b_Down znunu 0.875795 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 b_Up ttbarplusw 1.152439 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 b_Down ttbarplusw 0.859592 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 b_Up qcd 1.151701 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 b_Down qcd 0.869517 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 eff_restoptag_Up znunu 1.055677 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 eff_restoptag_Down znunu 0.944318 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 eff_restoptag_Up ttbarplusw 1.012660 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 eff_restoptag_Down ttbarplusw 0.987334 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 eff_restoptag_Up qcd 1.016822 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 eff_restoptag_Down qcd 0.983124 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 eff_toptag_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 eff_toptag_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 eff_toptag_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 eff_toptag_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 eff_toptag_Up ttbarplusw 1.000282 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 eff_toptag_Down ttbarplusw 0.999718 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 eff_toptag_Up qcd 0.999293 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 eff_toptag_Down qcd 1.000704 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 eff_wtag_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 eff_wtag_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 eff_wtag_Up qcd 0.999319 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 eff_wtag_Down qcd 1.000682 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 ivfunc_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 ivfunc_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 ivfunc_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 ivfunc_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 ivfunc_Up ttbarplusw 1.000117 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 ivfunc_Down ttbarplusw 0.999883 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 ivfunc_Up qcd 1.003266 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 ivfunc_Down qcd 0.996701 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 trigger_err_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 trigger_err_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 trigger_err_Up znunu 1.004894 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 trigger_err_Down znunu 0.994759 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 trigger_err_Up ttbarplusw 1.004746 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 trigger_err_Down ttbarplusw 0.994915 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 trigger_err_Up qcd 0.999076 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 trigger_err_Down qcd 1.000836 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 JES_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 JES_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 JES_Up znunu 1.080612 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 JES_Down znunu 2.625396 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 JES_Up ttbarplusw 0.911958 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 JES_Down ttbarplusw 0.762233 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 JES_Up qcd 1.150899 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 JES_Down qcd 0.984653 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 metres_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 metres_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 metres_Up znunu 0.783806 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 metres_Down znunu 0.977913 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 metres_Up ttbarplusw 0.990339 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 metres_Down ttbarplusw 1.109136 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 metres_Up qcd 0.979129 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt450to550 metres_Down qcd 1.017020 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf PU_Weight_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf PU_Weight_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf PU_Weight_Up znunu 1.013298 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf PU_Weight_Down znunu 0.980407 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf PU_Weight_Up ttbarplusw 0.974238 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf PU_Weight_Down ttbarplusw 1.025731 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf PU_Weight_Up qcd 1.003944 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf PU_Weight_Down qcd 1.000290 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf b_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf b_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf b_Up znunu 1.340815 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf b_Down znunu 0.685219 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf b_Up ttbarplusw 1.108178 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf b_Down ttbarplusw 0.898455 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf b_Up qcd 1.132027 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf b_Down qcd 0.875009 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf eff_restoptag_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf eff_restoptag_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf eff_restoptag_Up znunu 1.001595 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf eff_restoptag_Down znunu 0.998404 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf eff_restoptag_Up ttbarplusw 1.001768 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf eff_restoptag_Down ttbarplusw 0.998229 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf eff_restoptag_Up qcd 1.048498 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf eff_restoptag_Down qcd 0.951374 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf eff_toptag_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf eff_toptag_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf eff_toptag_Up znunu 1.000894 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf eff_toptag_Down znunu 0.999106 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf eff_toptag_Up ttbarplusw 1.000030 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf eff_toptag_Down ttbarplusw 0.999971 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf eff_toptag_Up qcd 0.999204 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf eff_toptag_Down qcd 1.000795 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf eff_wtag_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf eff_wtag_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf eff_wtag_Up ttbarplusw 1.000004 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf eff_wtag_Down ttbarplusw 0.999996 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf eff_wtag_Up qcd 0.999406 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf eff_wtag_Down qcd 1.000595 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf ivfunc_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf ivfunc_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf ivfunc_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf ivfunc_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf ivfunc_Up ttbarplusw 1.000384 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf ivfunc_Down ttbarplusw 0.999616 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf ivfunc_Up qcd 0.998122 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf ivfunc_Down qcd 1.001874 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf trigger_err_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf trigger_err_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf trigger_err_Up znunu 1.004394 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf trigger_err_Down znunu 0.995289 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf trigger_err_Up ttbarplusw 1.004627 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf trigger_err_Down ttbarplusw 0.995096 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf trigger_err_Up qcd 0.999436 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf trigger_err_Down qcd 1.000324 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf JES_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf JES_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf JES_Up znunu 1.015572 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf JES_Down znunu 0.990332 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf JES_Up ttbarplusw 1.011718 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf JES_Down ttbarplusw 0.989946 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf JES_Up qcd 0.943964 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf JES_Down qcd 1.021068 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf metres_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf metres_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf metres_Up znunu 1.007611 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf metres_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf metres_Up ttbarplusw 0.999161 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf metres_Down ttbarplusw 0.999131 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf metres_Up qcd 0.942473 +bin_qcdcr_hm_nb3_highmtb_htgt1500_MET_pt550toinf metres_Down qcd 0.996312 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 PU_Weight_Up Rare 0.900004 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 PU_Weight_Down Rare 1.129614 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 PU_Weight_Up znunu 1.016558 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 PU_Weight_Down znunu 0.984028 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 PU_Weight_Up ttbarplusw 0.959243 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 PU_Weight_Down ttbarplusw 1.038232 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 PU_Weight_Up qcd 1.000949 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 PU_Weight_Down qcd 0.997234 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 b_Up Rare 1.144214 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 b_Down Rare 0.865507 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 b_Up znunu 1.094020 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 b_Down znunu 0.911501 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 b_Up ttbarplusw 1.063327 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 b_Down ttbarplusw 0.939203 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 b_Up qcd 1.078668 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 b_Down qcd 0.923940 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 eff_restoptag_Up Rare 1.016553 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 eff_restoptag_Down Rare 0.984759 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 eff_restoptag_Up znunu 1.005231 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 eff_restoptag_Down znunu 0.994752 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 eff_restoptag_Up ttbarplusw 1.010209 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 eff_restoptag_Down ttbarplusw 0.989808 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 eff_restoptag_Up qcd 1.021873 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 eff_restoptag_Down qcd 0.978062 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 eff_toptag_Up Rare 1.023936 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 eff_toptag_Down Rare 0.976064 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 eff_toptag_Up znunu 1.010787 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 eff_toptag_Down znunu 0.989213 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 eff_toptag_Up ttbarplusw 1.000093 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 eff_toptag_Down ttbarplusw 0.999907 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 eff_toptag_Up qcd 1.003788 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 eff_toptag_Down qcd 0.996205 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 eff_wtag_Up Rare 1.000749 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 eff_wtag_Down Rare 0.999264 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 eff_wtag_Up ttbarplusw 1.000005 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 eff_wtag_Down ttbarplusw 0.999995 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 eff_wtag_Up qcd 0.999718 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 eff_wtag_Down qcd 1.000280 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 ivfunc_Up Rare 0.981160 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 ivfunc_Down Rare 1.018840 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 ivfunc_Up znunu 1.002662 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 ivfunc_Down znunu 0.997338 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 ivfunc_Up ttbarplusw 1.000095 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 ivfunc_Down ttbarplusw 0.999905 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 ivfunc_Up qcd 0.998107 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 ivfunc_Down qcd 1.001889 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 trigger_err_Up Rare 1.004751 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 trigger_err_Down Rare 0.995187 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 trigger_err_Up znunu 1.005028 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 trigger_err_Down znunu 0.994849 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 trigger_err_Up ttbarplusw 1.005217 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 trigger_err_Down ttbarplusw 0.994619 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 trigger_err_Up qcd 0.999843 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 trigger_err_Down qcd 1.000169 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 JES_Up Rare 1.310966 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 JES_Down Rare 1.162861 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 JES_Up znunu 1.065449 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 JES_Down znunu 0.964621 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 JES_Up ttbarplusw 1.349310 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 JES_Down ttbarplusw 1.019499 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 JES_Up qcd 1.023769 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 JES_Down qcd 0.912510 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 metres_Up Rare 1.356587 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 metres_Down Rare 0.913592 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 metres_Up znunu 1.023457 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 metres_Down znunu 1.109177 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 metres_Up ttbarplusw 1.012299 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 metres_Down ttbarplusw 1.110419 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 metres_Up qcd 0.943133 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt250to350 metres_Down qcd 1.016425 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 PU_Weight_Up Rare 1.065747 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 PU_Weight_Down Rare 0.938046 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 PU_Weight_Up znunu 0.997324 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 PU_Weight_Down znunu 1.004106 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 PU_Weight_Up ttbarplusw 1.009023 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 PU_Weight_Down ttbarplusw 0.984094 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 PU_Weight_Up qcd 1.034296 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 PU_Weight_Down qcd 0.961321 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 b_Up Rare 1.255518 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 b_Down Rare 0.770544 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 b_Up znunu 1.112008 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 b_Down znunu 0.897934 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 b_Up ttbarplusw 1.058405 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 b_Down ttbarplusw 0.944873 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 b_Up qcd 1.096015 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 b_Down qcd 0.908266 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 eff_restoptag_Up Rare 1.001012 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 eff_restoptag_Down Rare 0.998870 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 eff_restoptag_Up znunu 1.000164 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 eff_restoptag_Down znunu 0.999836 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 eff_restoptag_Up ttbarplusw 1.000790 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 eff_restoptag_Down ttbarplusw 0.999203 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 eff_restoptag_Up qcd 1.002963 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 eff_restoptag_Down qcd 0.997019 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 eff_toptag_Up Rare 1.013520 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 eff_toptag_Down Rare 0.986480 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 eff_toptag_Up znunu 1.000029 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 eff_toptag_Down znunu 0.999971 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 eff_toptag_Up ttbarplusw 1.000421 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 eff_toptag_Down ttbarplusw 0.999579 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 eff_toptag_Up qcd 0.999414 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 eff_toptag_Down qcd 1.000586 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 eff_wtag_Up Rare 1.008522 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 eff_wtag_Down Rare 0.991478 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 eff_wtag_Up qcd 0.997987 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 eff_wtag_Down qcd 1.002018 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 ivfunc_Up Rare 1.002227 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 ivfunc_Down Rare 0.997773 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 ivfunc_Up znunu 1.000792 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 ivfunc_Down znunu 0.999208 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 ivfunc_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 ivfunc_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 ivfunc_Up qcd 1.002370 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 ivfunc_Down qcd 0.997606 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 trigger_err_Up Rare 1.003930 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 trigger_err_Down Rare 0.995908 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 trigger_err_Up znunu 1.004324 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 trigger_err_Down znunu 0.995476 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 trigger_err_Up ttbarplusw 1.004291 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 trigger_err_Down ttbarplusw 0.995572 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 trigger_err_Up qcd 0.998155 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 trigger_err_Down qcd 1.001881 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 JES_Up Rare 1.116885 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 JES_Down Rare 1.256602 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 JES_Up znunu 1.135624 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 JES_Down znunu 1.178822 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 JES_Up ttbarplusw 0.987804 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 JES_Down ttbarplusw 0.940757 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 JES_Up qcd 0.951508 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 JES_Down qcd 0.975488 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 metres_Up Rare 1.087458 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 metres_Down Rare 1.537586 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 metres_Up znunu 0.986131 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 metres_Down znunu 0.944994 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 metres_Up ttbarplusw 0.987797 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 metres_Down ttbarplusw 1.008541 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 metres_Up qcd 0.944404 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt350to550 metres_Down qcd 1.079920 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf PU_Weight_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf PU_Weight_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf PU_Weight_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf PU_Weight_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf PU_Weight_Up ttbarplusw 1.072282 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf PU_Weight_Down ttbarplusw 0.924203 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf PU_Weight_Up qcd 0.985962 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf PU_Weight_Down qcd 1.003314 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf b_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf b_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf b_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf b_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf b_Up ttbarplusw 1.176175 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf b_Down ttbarplusw 0.832303 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf b_Up qcd 1.235992 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf b_Down qcd 0.788336 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf eff_restoptag_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf eff_restoptag_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf eff_restoptag_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf eff_restoptag_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf eff_restoptag_Up qcd 1.028836 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf eff_restoptag_Down qcd 0.971012 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf eff_toptag_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf eff_toptag_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf eff_toptag_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf eff_toptag_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf eff_toptag_Up qcd 0.999437 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf eff_toptag_Down qcd 1.000563 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf eff_wtag_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf eff_wtag_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf eff_wtag_Up qcd 0.999500 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf eff_wtag_Down qcd 1.000500 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf ivfunc_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf ivfunc_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf ivfunc_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf ivfunc_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf ivfunc_Up ttbarplusw 1.005843 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf ivfunc_Down ttbarplusw 0.994157 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf ivfunc_Up qcd 1.013526 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf ivfunc_Down qcd 0.986376 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf trigger_err_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf trigger_err_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf trigger_err_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf trigger_err_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf trigger_err_Up ttbarplusw 1.004536 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf trigger_err_Down ttbarplusw 0.995195 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf trigger_err_Up qcd 0.997836 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf trigger_err_Down qcd 1.002018 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf JES_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf JES_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf JES_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf JES_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf JES_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf JES_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf JES_Up qcd 0.965650 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf JES_Down qcd 1.184935 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf metres_Up Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf metres_Down Rare 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf metres_Up znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf metres_Down znunu 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf metres_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf metres_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf metres_Up qcd 0.995974 +bin_qcdcr_hm_nb3_highmtb_htlt1000_MET_pt550toinf metres_Down qcd 0.990525 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 PU_Weight_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 PU_Weight_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 PU_Weight_Up znunu 0.998021 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 PU_Weight_Down znunu 1.004503 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 PU_Weight_Up ttbarplusw 1.015997 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 PU_Weight_Down ttbarplusw 0.990905 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 PU_Weight_Up qcd 1.001621 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 PU_Weight_Down qcd 0.998130 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 b_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 b_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 b_Up znunu 1.069160 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 b_Down znunu 0.932760 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 b_Up ttbarplusw 1.057834 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 b_Down ttbarplusw 0.937952 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 b_Up qcd 1.048593 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 b_Down qcd 0.951022 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 eff_restoptag_Up znunu 1.018003 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 eff_restoptag_Down znunu 0.981969 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 eff_restoptag_Up ttbarplusw 1.015550 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 eff_restoptag_Down ttbarplusw 0.984926 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 eff_restoptag_Up qcd 1.022451 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 eff_restoptag_Down qcd 0.977464 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 eff_toptag_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 eff_toptag_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 eff_toptag_Up znunu 1.004399 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 eff_toptag_Down znunu 0.995601 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 eff_toptag_Up ttbarplusw 1.013824 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 eff_toptag_Down ttbarplusw 0.986176 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 eff_toptag_Up qcd 1.003779 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 eff_toptag_Down qcd 0.996219 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 eff_wtag_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 eff_wtag_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 eff_wtag_Up znunu 1.000279 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 eff_wtag_Down znunu 0.999721 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 eff_wtag_Up ttbarplusw 1.012186 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 eff_wtag_Down ttbarplusw 0.987814 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 eff_wtag_Up qcd 0.999292 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 eff_wtag_Down qcd 1.000707 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 ivfunc_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 ivfunc_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 ivfunc_Up znunu 1.003792 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 ivfunc_Down znunu 0.996208 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 ivfunc_Up ttbarplusw 1.008821 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 ivfunc_Down ttbarplusw 0.991179 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 ivfunc_Up qcd 1.000831 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 ivfunc_Down qcd 0.999160 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 trigger_err_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 trigger_err_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 trigger_err_Up znunu 1.005151 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 trigger_err_Down znunu 0.994695 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 trigger_err_Up ttbarplusw 1.005167 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 trigger_err_Down ttbarplusw 0.994646 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 trigger_err_Up qcd 0.999692 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 trigger_err_Down qcd 1.000323 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 JES_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 JES_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 JES_Up znunu 1.049722 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 JES_Down znunu 0.956210 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 JES_Up ttbarplusw 0.971237 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 JES_Down ttbarplusw 1.330488 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 JES_Up qcd 0.984714 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 JES_Down qcd 1.032278 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 metres_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 metres_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 metres_Up znunu 0.973160 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 metres_Down znunu 1.023337 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 metres_Up ttbarplusw 0.973871 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 metres_Down ttbarplusw 1.090695 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 metres_Up qcd 1.043943 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt250to350 metres_Down qcd 0.971298 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 PU_Weight_Up Rare 1.001528 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 PU_Weight_Down Rare 0.999859 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 PU_Weight_Up znunu 0.969149 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 PU_Weight_Down znunu 1.034376 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 PU_Weight_Up ttbarplusw 0.987759 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 PU_Weight_Down ttbarplusw 1.005293 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 PU_Weight_Up qcd 0.995309 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 PU_Weight_Down qcd 1.004206 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 b_Up Rare 1.036807 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 b_Down Rare 0.958148 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 b_Up znunu 1.048301 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 b_Down znunu 0.953010 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 b_Up ttbarplusw 1.073678 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 b_Down ttbarplusw 0.915246 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 b_Up qcd 1.057415 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 b_Down qcd 0.942318 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 eff_restoptag_Up Rare 1.013720 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 eff_restoptag_Down Rare 0.986340 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 eff_restoptag_Up znunu 1.006866 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 eff_restoptag_Down znunu 0.993136 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 eff_restoptag_Up ttbarplusw 1.001108 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 eff_restoptag_Down ttbarplusw 0.998879 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 eff_restoptag_Up qcd 1.010897 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 eff_restoptag_Down qcd 0.988950 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 eff_toptag_Up Rare 1.038500 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 eff_toptag_Down Rare 0.961500 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 eff_toptag_Up znunu 1.000732 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 eff_toptag_Down znunu 0.999268 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 eff_toptag_Up ttbarplusw 1.043983 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 eff_toptag_Down ttbarplusw 0.956017 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 eff_toptag_Up qcd 1.000968 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 eff_toptag_Down qcd 0.999030 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 eff_wtag_Up Rare 1.004404 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 eff_wtag_Down Rare 0.995596 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 eff_wtag_Up ttbarplusw 1.000400 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 eff_wtag_Down ttbarplusw 0.999600 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 eff_wtag_Up qcd 0.999731 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 eff_wtag_Down qcd 1.000266 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 ivfunc_Up Rare 1.003214 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 ivfunc_Down Rare 0.996786 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 ivfunc_Up znunu 1.000746 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 ivfunc_Down znunu 0.999254 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 ivfunc_Up ttbarplusw 1.000480 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 ivfunc_Down ttbarplusw 0.999521 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 ivfunc_Up qcd 1.003973 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 ivfunc_Down qcd 0.996151 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 trigger_err_Up Rare 1.004176 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 trigger_err_Down Rare 0.995643 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 trigger_err_Up znunu 1.004319 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 trigger_err_Down znunu 0.995496 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 trigger_err_Up ttbarplusw 1.004428 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 trigger_err_Down ttbarplusw 0.995373 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 trigger_err_Up qcd 0.998545 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 trigger_err_Down qcd 1.001468 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 JES_Up Rare 1.038002 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 JES_Down Rare 1.009339 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 JES_Up znunu 0.979939 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 JES_Down znunu 0.973953 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 JES_Up ttbarplusw 1.010423 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 JES_Down ttbarplusw 0.346474 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 JES_Up qcd 1.036512 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 JES_Down qcd 1.018404 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 metres_Up Rare 1.182999 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 metres_Down Rare 0.611256 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 metres_Up znunu 1.049765 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 metres_Down znunu 0.986917 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 metres_Up ttbarplusw 0.802984 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 metres_Down ttbarplusw 0.366160 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 metres_Up qcd 0.996283 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt350to450 metres_Down qcd 1.052551 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 PU_Weight_Up Rare 1.029049 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 PU_Weight_Down Rare 0.978419 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 PU_Weight_Up znunu 1.024091 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 PU_Weight_Down znunu 0.976701 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 PU_Weight_Up ttbarplusw 1.004860 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 PU_Weight_Down ttbarplusw 0.988832 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 PU_Weight_Up qcd 0.994726 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 PU_Weight_Down qcd 1.012802 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 b_Up Rare 1.036659 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 b_Down Rare 0.963531 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 b_Up znunu 1.052154 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 b_Down znunu 0.948645 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 b_Up ttbarplusw 1.072148 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 b_Down ttbarplusw 0.932817 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 b_Up qcd 1.034848 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 b_Down qcd 0.964770 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 eff_restoptag_Up Rare 1.036422 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 eff_restoptag_Down Rare 0.964015 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 eff_restoptag_Up znunu 1.007279 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 eff_restoptag_Down znunu 0.992717 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 eff_restoptag_Up ttbarplusw 1.005188 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 eff_restoptag_Down ttbarplusw 0.994838 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 eff_restoptag_Up qcd 1.007200 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 eff_restoptag_Down qcd 0.992768 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 eff_toptag_Up Rare 1.048804 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 eff_toptag_Down Rare 0.951196 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 eff_toptag_Up znunu 1.007034 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 eff_toptag_Down znunu 0.992966 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 eff_toptag_Up ttbarplusw 1.009761 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 eff_toptag_Down ttbarplusw 0.990239 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 eff_toptag_Up qcd 1.018106 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 eff_toptag_Down qcd 0.981860 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 eff_wtag_Up Rare 1.001963 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 eff_wtag_Down Rare 0.998037 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 eff_wtag_Up ttbarplusw 1.000241 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 eff_wtag_Down ttbarplusw 0.999759 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 eff_wtag_Up qcd 0.999733 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 eff_wtag_Down qcd 1.000265 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 ivfunc_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 ivfunc_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 ivfunc_Up znunu 1.002635 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 ivfunc_Down znunu 0.997365 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 ivfunc_Up ttbarplusw 1.001535 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 ivfunc_Down ttbarplusw 0.998465 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 ivfunc_Up qcd 1.000221 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 ivfunc_Down qcd 0.999837 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 trigger_err_Up Rare 1.004788 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 trigger_err_Down Rare 0.994786 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 trigger_err_Up znunu 1.004240 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 trigger_err_Down znunu 0.995524 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 trigger_err_Up ttbarplusw 1.004422 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 trigger_err_Down ttbarplusw 0.995312 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 trigger_err_Up qcd 0.998682 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 trigger_err_Down qcd 1.001276 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 JES_Up Rare 0.888599 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 JES_Down Rare 0.608190 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 JES_Up znunu 1.192616 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 JES_Down znunu 1.146966 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 JES_Up ttbarplusw 1.177473 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 JES_Down ttbarplusw 0.859942 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 JES_Up qcd 0.969823 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 JES_Down qcd 0.998183 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 metres_Up Rare 1.041640 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 metres_Down Rare 0.807841 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 metres_Up znunu 1.181203 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 metres_Down znunu 1.041837 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 metres_Up ttbarplusw 0.923726 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 metres_Down ttbarplusw 0.970351 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 metres_Up qcd 0.990606 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt450to550 metres_Down qcd 0.981265 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 PU_Weight_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 PU_Weight_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 PU_Weight_Up znunu 0.983712 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 PU_Weight_Down znunu 1.019942 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 PU_Weight_Up ttbarplusw 0.946360 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 PU_Weight_Down ttbarplusw 1.065081 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 PU_Weight_Up qcd 1.059024 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 PU_Weight_Down qcd 0.947231 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 b_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 b_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 b_Up znunu 1.080541 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 b_Down znunu 0.919442 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 b_Up ttbarplusw 1.037118 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 b_Down ttbarplusw 0.963763 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 b_Up qcd 1.038021 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 b_Down qcd 0.962084 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 eff_restoptag_Up znunu 1.009521 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 eff_restoptag_Down znunu 0.990426 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 eff_restoptag_Up ttbarplusw 1.073874 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 eff_restoptag_Down ttbarplusw 0.926073 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 eff_restoptag_Up qcd 1.004316 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 eff_restoptag_Down qcd 0.995663 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 eff_toptag_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 eff_toptag_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 eff_toptag_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 eff_toptag_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 eff_toptag_Up qcd 1.000842 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 eff_toptag_Down qcd 0.999156 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 eff_wtag_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 eff_wtag_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 eff_wtag_Up qcd 0.998861 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 eff_wtag_Down qcd 1.001141 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 ivfunc_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 ivfunc_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 ivfunc_Up znunu 1.001500 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 ivfunc_Down znunu 0.998500 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 ivfunc_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 ivfunc_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 ivfunc_Up qcd 0.999055 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 ivfunc_Down qcd 1.000951 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 trigger_err_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 trigger_err_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 trigger_err_Up znunu 1.004733 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 trigger_err_Down znunu 0.994920 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 trigger_err_Up ttbarplusw 1.005146 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 trigger_err_Down ttbarplusw 0.994388 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 trigger_err_Up qcd 0.998531 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 trigger_err_Down qcd 1.001292 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 JES_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 JES_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 JES_Up znunu 0.885227 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 JES_Down znunu 1.096292 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 JES_Up ttbarplusw 1.516564 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 JES_Down ttbarplusw 0.686825 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 JES_Up qcd 0.955901 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 JES_Down qcd 1.035646 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 metres_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 metres_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 metres_Up znunu 0.956813 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 metres_Down znunu 0.947474 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 metres_Up ttbarplusw 1.209692 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 metres_Down ttbarplusw 1.000415 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 metres_Up qcd 0.998247 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt550to650 metres_Down qcd 1.012748 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf PU_Weight_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf PU_Weight_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf PU_Weight_Up znunu 0.994092 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf PU_Weight_Down znunu 1.006788 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf PU_Weight_Up ttbarplusw 1.031898 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf PU_Weight_Down ttbarplusw 0.962373 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf PU_Weight_Up qcd 0.965375 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf PU_Weight_Down qcd 1.034262 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf b_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf b_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf b_Up znunu 1.051840 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf b_Down znunu 0.950090 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf b_Up ttbarplusw 1.038302 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf b_Down ttbarplusw 0.960481 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf b_Up qcd 1.047648 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf b_Down qcd 0.951823 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf eff_restoptag_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf eff_restoptag_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf eff_restoptag_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf eff_restoptag_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf eff_restoptag_Up ttbarplusw 1.039512 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf eff_restoptag_Down ttbarplusw 0.960485 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf eff_restoptag_Up qcd 1.003652 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf eff_restoptag_Down qcd 0.996311 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf eff_toptag_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf eff_toptag_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf eff_toptag_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf eff_toptag_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf eff_toptag_Up qcd 1.002063 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf eff_toptag_Down qcd 0.997934 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf eff_wtag_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf eff_wtag_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf eff_wtag_Up qcd 0.997814 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf eff_wtag_Down qcd 1.002191 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf ivfunc_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf ivfunc_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf ivfunc_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf ivfunc_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf ivfunc_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf ivfunc_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf ivfunc_Up qcd 0.997915 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf ivfunc_Down qcd 1.002085 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf trigger_err_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf trigger_err_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf trigger_err_Up znunu 1.004945 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf trigger_err_Down znunu 0.994659 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf trigger_err_Up ttbarplusw 1.004874 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf trigger_err_Down ttbarplusw 0.994733 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf trigger_err_Up qcd 0.997465 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf trigger_err_Down qcd 1.002441 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf JES_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf JES_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf JES_Up znunu 1.063395 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf JES_Down znunu 0.882240 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf JES_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf JES_Down ttbarplusw 0.770686 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf JES_Up qcd 0.947009 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf JES_Down qcd 0.988690 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf metres_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf metres_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf metres_Up znunu 0.881277 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf metres_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf metres_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf metres_Down ttbarplusw 0.859076 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf metres_Up qcd 1.058641 +bin_qcdcr_hm_nbeq2_highmtb_ht1000to1300_MET_pt650toinf metres_Down qcd 0.978025 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 PU_Weight_Up Rare 0.963691 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 PU_Weight_Down Rare 1.044086 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 PU_Weight_Up znunu 0.995598 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 PU_Weight_Down znunu 1.003699 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 PU_Weight_Up ttbarplusw 0.951568 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 PU_Weight_Down ttbarplusw 1.056759 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 PU_Weight_Up qcd 1.007613 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 PU_Weight_Down qcd 0.991431 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 b_Up Rare 1.029682 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 b_Down Rare 0.970835 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 b_Up znunu 1.065706 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 b_Down znunu 0.934189 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 b_Up ttbarplusw 1.064622 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 b_Down ttbarplusw 0.928692 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 b_Up qcd 1.048586 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 b_Down qcd 0.951940 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 eff_restoptag_Up Rare 1.044732 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 eff_restoptag_Down Rare 0.955796 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 eff_restoptag_Up znunu 1.009431 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 eff_restoptag_Down znunu 0.990553 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 eff_restoptag_Up ttbarplusw 1.051498 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 eff_restoptag_Down ttbarplusw 0.948483 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 eff_restoptag_Up qcd 1.012751 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 eff_restoptag_Down qcd 0.987217 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 eff_toptag_Up Rare 1.026332 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 eff_toptag_Down Rare 0.973939 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 eff_toptag_Up znunu 1.007471 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 eff_toptag_Down znunu 0.992529 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 eff_toptag_Up ttbarplusw 1.022847 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 eff_toptag_Down ttbarplusw 0.977153 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 eff_toptag_Up qcd 1.000413 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 eff_toptag_Down qcd 0.999585 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 eff_wtag_Up Rare 0.989171 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 eff_wtag_Down Rare 1.010829 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 eff_wtag_Up ttbarplusw 1.000081 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 eff_wtag_Down ttbarplusw 0.999919 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 eff_wtag_Up qcd 1.000564 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 eff_wtag_Down qcd 0.999434 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 ivfunc_Up Rare 1.002168 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 ivfunc_Down Rare 0.997832 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 ivfunc_Up znunu 1.000701 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 ivfunc_Down znunu 0.999299 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 ivfunc_Up ttbarplusw 1.000018 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 ivfunc_Down ttbarplusw 0.999982 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 ivfunc_Up qcd 1.000965 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 ivfunc_Down qcd 0.999034 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 trigger_err_Up Rare 1.004840 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 trigger_err_Down Rare 0.995028 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 trigger_err_Up znunu 1.005084 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 trigger_err_Down znunu 0.994762 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 trigger_err_Up ttbarplusw 1.005229 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 trigger_err_Down ttbarplusw 0.994609 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 trigger_err_Up qcd 0.999647 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 trigger_err_Down qcd 1.000376 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 JES_Up Rare 0.699918 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 JES_Down Rare 1.984994 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 JES_Up znunu 1.042619 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 JES_Down znunu 0.622052 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 JES_Up ttbarplusw 0.651091 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 JES_Down ttbarplusw 0.844701 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 JES_Up qcd 1.075005 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 JES_Down qcd 0.965855 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 metres_Up Rare 0.943884 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 metres_Down Rare 0.599843 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 metres_Up znunu 0.996992 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 metres_Down znunu 1.116253 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 metres_Up ttbarplusw 0.992549 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 metres_Down ttbarplusw 0.998462 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 metres_Up qcd 0.959119 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt250to350 metres_Down qcd 0.982283 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 PU_Weight_Up Rare 1.102946 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 PU_Weight_Down Rare 0.880846 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 PU_Weight_Up znunu 0.938982 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 PU_Weight_Down znunu 1.065183 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 PU_Weight_Up ttbarplusw 1.010275 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 PU_Weight_Down ttbarplusw 0.988661 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 PU_Weight_Up qcd 1.011550 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 PU_Weight_Down qcd 0.985074 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 b_Up Rare 1.023156 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 b_Down Rare 0.976071 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 b_Up znunu 1.026897 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 b_Down znunu 0.973527 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 b_Up ttbarplusw 1.084864 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 b_Down ttbarplusw 0.918792 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 b_Up qcd 1.053514 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 b_Down qcd 0.947789 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 eff_restoptag_Up Rare 1.029651 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 eff_restoptag_Down Rare 0.970345 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 eff_restoptag_Up znunu 1.008603 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 eff_restoptag_Down znunu 0.991386 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 eff_restoptag_Up ttbarplusw 1.013878 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 eff_restoptag_Down ttbarplusw 0.986093 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 eff_restoptag_Up qcd 1.010068 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 eff_restoptag_Down qcd 0.989892 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 eff_toptag_Up Rare 1.028626 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 eff_toptag_Down Rare 0.971374 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 eff_toptag_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 eff_toptag_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 eff_toptag_Up qcd 1.002124 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 eff_toptag_Down qcd 0.997869 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 eff_wtag_Up Rare 1.003764 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 eff_wtag_Down Rare 0.996236 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 eff_wtag_Up znunu 1.011311 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 eff_wtag_Down znunu 0.988689 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 eff_wtag_Up qcd 0.999182 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 eff_wtag_Down qcd 1.000818 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 ivfunc_Up Rare 1.027969 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 ivfunc_Down Rare 0.972031 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 ivfunc_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 ivfunc_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 ivfunc_Up ttbarplusw 1.005147 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 ivfunc_Down ttbarplusw 0.995079 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 ivfunc_Up qcd 1.001516 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 ivfunc_Down qcd 0.998477 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 trigger_err_Up Rare 1.004044 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 trigger_err_Down Rare 0.995784 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 trigger_err_Up znunu 1.004461 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 trigger_err_Down znunu 0.995324 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 trigger_err_Up ttbarplusw 1.004213 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 trigger_err_Down ttbarplusw 0.995604 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 trigger_err_Up qcd 0.998836 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 trigger_err_Down qcd 1.001170 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 JES_Up Rare 1.018853 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 JES_Down Rare 0.581434 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 JES_Up znunu 1.491820 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 JES_Down znunu 1.149177 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 JES_Up ttbarplusw 1.098554 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 JES_Down ttbarplusw 1.030990 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 JES_Up qcd 1.104970 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 JES_Down qcd 0.995135 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 metres_Up Rare 1.065658 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 metres_Down Rare 0.922697 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 metres_Up znunu 1.186223 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 metres_Down znunu 1.214340 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 metres_Up ttbarplusw 1.008252 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 metres_Down ttbarplusw 0.867537 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 metres_Up qcd 1.030064 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt350to450 metres_Down qcd 1.050510 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 PU_Weight_Up Rare 0.922159 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 PU_Weight_Down Rare 1.085789 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 PU_Weight_Up znunu 0.997421 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 PU_Weight_Down znunu 1.000447 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 PU_Weight_Up ttbarplusw 1.004163 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 PU_Weight_Down ttbarplusw 0.994631 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 PU_Weight_Up qcd 0.993132 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 PU_Weight_Down qcd 1.009097 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 b_Up Rare 1.047008 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 b_Down Rare 0.952710 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 b_Up znunu 1.096821 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 b_Down znunu 0.903609 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 b_Up ttbarplusw 1.064931 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 b_Down ttbarplusw 0.935022 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 b_Up qcd 1.058129 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 b_Down qcd 0.942253 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 eff_restoptag_Up Rare 1.009644 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 eff_restoptag_Down Rare 0.990382 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 eff_restoptag_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 eff_restoptag_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 eff_restoptag_Up ttbarplusw 1.029879 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 eff_restoptag_Down ttbarplusw 0.977421 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 eff_restoptag_Up qcd 1.010445 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 eff_restoptag_Down qcd 0.989530 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 eff_toptag_Up Rare 1.000655 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 eff_toptag_Down Rare 0.999345 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 eff_toptag_Up znunu 1.009124 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 eff_toptag_Down znunu 0.990876 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 eff_toptag_Up ttbarplusw 1.005328 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 eff_toptag_Down ttbarplusw 0.994672 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 eff_toptag_Up qcd 1.000052 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 eff_toptag_Down qcd 0.999947 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 eff_wtag_Up Rare 1.008388 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 eff_wtag_Down Rare 0.991612 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 eff_wtag_Up znunu 1.013743 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 eff_wtag_Down znunu 0.986257 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 eff_wtag_Up ttbarplusw 1.002221 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 eff_wtag_Down ttbarplusw 0.997779 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 eff_wtag_Up qcd 0.999359 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 eff_wtag_Down qcd 1.000641 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 ivfunc_Up Rare 1.012796 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 ivfunc_Down Rare 0.987204 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 ivfunc_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 ivfunc_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 ivfunc_Up ttbarplusw 1.000818 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 ivfunc_Down ttbarplusw 0.999182 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 ivfunc_Up qcd 0.998494 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 ivfunc_Down qcd 1.001503 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 trigger_err_Up Rare 1.004338 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 trigger_err_Down Rare 0.995456 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 trigger_err_Up znunu 1.004854 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 trigger_err_Down znunu 0.994806 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 trigger_err_Up ttbarplusw 1.004502 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 trigger_err_Down ttbarplusw 0.995219 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 trigger_err_Up qcd 0.998889 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 trigger_err_Down qcd 1.001032 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 JES_Up Rare 1.175590 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 JES_Down Rare 0.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 JES_Up znunu 0.820143 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 JES_Down znunu 0.761049 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 JES_Up ttbarplusw 1.200645 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 JES_Down ttbarplusw 0.796469 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 JES_Up qcd 1.029339 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 JES_Down qcd 0.992723 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 metres_Up Rare 1.188306 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 metres_Down Rare 1.500136 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 metres_Up znunu 0.948244 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 metres_Down znunu 0.581098 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 metres_Up ttbarplusw 1.051083 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 metres_Down ttbarplusw 1.205423 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 metres_Up qcd 1.002031 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt450to550 metres_Down qcd 0.992170 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 PU_Weight_Up Rare 0.991729 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 PU_Weight_Down Rare 1.001332 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 PU_Weight_Up znunu 0.948189 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 PU_Weight_Down znunu 1.054838 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 PU_Weight_Up ttbarplusw 1.052917 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 PU_Weight_Down ttbarplusw 0.941128 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 PU_Weight_Up qcd 1.004547 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 PU_Weight_Down qcd 0.994695 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 b_Up Rare 1.000087 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 b_Down Rare 0.999551 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 b_Up znunu 1.096509 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 b_Down znunu 0.901418 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 b_Up ttbarplusw 1.036112 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 b_Down ttbarplusw 0.964351 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 b_Up qcd 1.042017 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 b_Down qcd 0.959284 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 eff_restoptag_Up Rare 0.958335 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 eff_restoptag_Down Rare 1.041869 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 eff_restoptag_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 eff_restoptag_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 eff_restoptag_Up ttbarplusw 1.026807 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 eff_restoptag_Down ttbarplusw 0.973140 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 eff_restoptag_Up qcd 1.002656 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 eff_restoptag_Down qcd 0.997320 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 eff_toptag_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 eff_toptag_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 eff_toptag_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 eff_toptag_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 eff_toptag_Up ttbarplusw 1.001626 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 eff_toptag_Down ttbarplusw 0.998374 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 eff_toptag_Up qcd 1.000037 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 eff_toptag_Down qcd 0.999962 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 eff_wtag_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 eff_wtag_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 eff_wtag_Up znunu 1.006539 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 eff_wtag_Down znunu 0.993461 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 eff_wtag_Up ttbarplusw 1.000441 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 eff_wtag_Down ttbarplusw 0.999559 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 eff_wtag_Up qcd 0.999236 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 eff_wtag_Down qcd 1.000766 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 ivfunc_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 ivfunc_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 ivfunc_Up znunu 1.023027 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 ivfunc_Down znunu 0.976973 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 ivfunc_Up ttbarplusw 1.006439 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 ivfunc_Down ttbarplusw 0.993561 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 ivfunc_Up qcd 1.001777 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 ivfunc_Down qcd 0.998208 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 trigger_err_Up Rare 1.004465 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 trigger_err_Down Rare 0.995246 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 trigger_err_Up znunu 1.005098 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 trigger_err_Down znunu 0.994486 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 trigger_err_Up ttbarplusw 1.004604 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 trigger_err_Down ttbarplusw 0.995075 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 trigger_err_Up qcd 0.999196 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 trigger_err_Down qcd 1.000570 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 JES_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 JES_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 JES_Up znunu 1.077466 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 JES_Down znunu 0.841925 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 JES_Up ttbarplusw 1.112292 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 JES_Down ttbarplusw 0.934226 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 JES_Up qcd 0.984407 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 JES_Down qcd 1.030533 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 metres_Up Rare 0.606827 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 metres_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 metres_Up znunu 1.071039 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 metres_Down znunu 1.003059 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 metres_Up ttbarplusw 1.073177 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 metres_Down ttbarplusw 0.999111 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 metres_Up qcd 1.039855 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt550to650 metres_Down qcd 0.960270 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf PU_Weight_Up Rare 0.993900 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf PU_Weight_Down Rare 1.003838 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf PU_Weight_Up znunu 0.983613 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf PU_Weight_Down znunu 1.014367 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf PU_Weight_Up ttbarplusw 1.017259 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf PU_Weight_Down ttbarplusw 0.980978 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf PU_Weight_Up qcd 1.029773 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf PU_Weight_Down qcd 0.964518 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf b_Up Rare 1.052724 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf b_Down Rare 0.947016 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf b_Up znunu 1.062813 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf b_Down znunu 0.937629 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf b_Up ttbarplusw 1.071100 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf b_Down ttbarplusw 0.927918 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf b_Up qcd 1.070005 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf b_Down qcd 0.932514 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf eff_restoptag_Up Rare 1.074298 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf eff_restoptag_Down Rare 0.931429 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf eff_restoptag_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf eff_restoptag_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf eff_restoptag_Up ttbarplusw 1.012749 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf eff_restoptag_Down ttbarplusw 0.987237 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf eff_restoptag_Up qcd 1.001800 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf eff_restoptag_Down qcd 0.998137 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf eff_toptag_Up Rare 1.007274 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf eff_toptag_Down Rare 0.992726 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf eff_toptag_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf eff_toptag_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf eff_toptag_Up qcd 0.999570 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf eff_toptag_Down qcd 1.000431 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf eff_wtag_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf eff_wtag_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf eff_wtag_Up qcd 0.998761 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf eff_wtag_Down qcd 1.001242 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf ivfunc_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf ivfunc_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf ivfunc_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf ivfunc_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf ivfunc_Up ttbarplusw 1.003183 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf ivfunc_Down ttbarplusw 0.996817 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf ivfunc_Up qcd 0.999431 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf ivfunc_Down qcd 1.000567 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf trigger_err_Up Rare 1.004776 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf trigger_err_Down Rare 0.994825 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf trigger_err_Up znunu 1.005142 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf trigger_err_Down znunu 0.994419 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf trigger_err_Up ttbarplusw 1.005133 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf trigger_err_Down ttbarplusw 0.994423 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf trigger_err_Up qcd 0.998159 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf trigger_err_Down qcd 1.001680 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf JES_Up Rare 1.103727 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf JES_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf JES_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf JES_Down znunu 0.935345 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf JES_Up ttbarplusw 1.191562 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf JES_Down ttbarplusw 0.857285 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf JES_Up qcd 1.061949 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf JES_Down qcd 1.043650 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf metres_Up Rare 1.106408 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf metres_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf metres_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf metres_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf metres_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf metres_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf metres_Up qcd 0.970474 +bin_qcdcr_hm_nbeq2_highmtb_ht1300to1500_MET_pt650toinf metres_Down qcd 1.066828 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 PU_Weight_Up Rare 0.961845 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 PU_Weight_Down Rare 1.036582 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 PU_Weight_Up znunu 0.993835 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 PU_Weight_Down znunu 1.010329 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 PU_Weight_Up ttbarplusw 1.048528 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 PU_Weight_Down ttbarplusw 0.946030 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 PU_Weight_Up qcd 1.005756 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 PU_Weight_Down qcd 0.993916 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 b_Up Rare 1.003238 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 b_Down Rare 0.996643 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 b_Up znunu 1.060130 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 b_Down znunu 0.939830 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 b_Up ttbarplusw 0.985005 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 b_Down ttbarplusw 1.013724 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 b_Up qcd 1.064917 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 b_Down qcd 0.934887 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 eff_restoptag_Up Rare 0.995190 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 eff_restoptag_Down Rare 1.004862 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 eff_restoptag_Up znunu 1.000704 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 eff_restoptag_Down znunu 0.999295 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 eff_restoptag_Up ttbarplusw 1.000833 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 eff_restoptag_Down ttbarplusw 0.999189 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 eff_restoptag_Up qcd 1.008431 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 eff_restoptag_Down qcd 0.991790 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 eff_toptag_Up Rare 1.037494 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 eff_toptag_Down Rare 0.963452 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 eff_toptag_Up znunu 1.002080 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 eff_toptag_Down znunu 0.997920 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 eff_toptag_Up ttbarplusw 1.014870 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 eff_toptag_Down ttbarplusw 0.985139 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 eff_toptag_Up qcd 1.001554 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 eff_toptag_Down qcd 0.998441 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 eff_wtag_Up Rare 1.000751 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 eff_wtag_Down Rare 0.999249 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 eff_wtag_Up znunu 1.003734 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 eff_wtag_Down znunu 0.996266 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 eff_wtag_Up ttbarplusw 1.019225 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 eff_wtag_Down ttbarplusw 0.980775 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 eff_wtag_Up qcd 1.000195 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 eff_wtag_Down qcd 0.999802 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 ivfunc_Up Rare 1.003646 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 ivfunc_Down Rare 0.996354 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 ivfunc_Up znunu 1.002590 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 ivfunc_Down znunu 0.997410 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 ivfunc_Up ttbarplusw 1.000152 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 ivfunc_Down ttbarplusw 0.999848 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 ivfunc_Up qcd 1.000409 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 ivfunc_Down qcd 0.999596 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 trigger_err_Up Rare 1.006110 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 trigger_err_Down Rare 0.993661 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 trigger_err_Up znunu 1.005067 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 trigger_err_Down znunu 0.994768 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 trigger_err_Up ttbarplusw 1.006292 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 trigger_err_Down ttbarplusw 0.993426 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 trigger_err_Up qcd 0.999696 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 trigger_err_Down qcd 1.000319 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 JES_Up Rare 1.331699 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 JES_Down Rare 0.907182 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 JES_Up znunu 1.173630 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 JES_Down znunu 0.980354 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 JES_Up ttbarplusw 1.805854 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 JES_Down ttbarplusw 0.997068 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 JES_Up qcd 1.012940 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 JES_Down qcd 0.972564 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 metres_Up Rare 1.005762 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 metres_Down Rare 0.994300 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 metres_Up znunu 1.026101 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 metres_Down znunu 1.144086 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 metres_Up ttbarplusw 1.000429 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 metres_Down ttbarplusw 1.004215 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 metres_Up qcd 0.995499 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt250to350 metres_Down qcd 0.981577 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 PU_Weight_Up Rare 0.940234 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 PU_Weight_Down Rare 1.061304 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 PU_Weight_Up znunu 1.014499 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 PU_Weight_Down znunu 0.986642 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 PU_Weight_Up ttbarplusw 1.008082 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 PU_Weight_Down ttbarplusw 0.990310 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 PU_Weight_Up qcd 1.001021 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 PU_Weight_Down qcd 0.999673 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 b_Up Rare 1.024859 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 b_Down Rare 0.974977 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 b_Up znunu 1.100909 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 b_Down znunu 0.903762 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 b_Up ttbarplusw 1.068318 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 b_Down ttbarplusw 0.933463 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 b_Up qcd 1.056090 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 b_Down qcd 0.943977 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 eff_restoptag_Up Rare 1.187905 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 eff_restoptag_Down Rare 0.823233 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 eff_restoptag_Up znunu 1.044935 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 eff_restoptag_Down znunu 0.955024 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 eff_restoptag_Up ttbarplusw 1.025816 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 eff_restoptag_Down ttbarplusw 0.974756 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 eff_restoptag_Up qcd 1.009259 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 eff_restoptag_Down qcd 0.990747 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 eff_toptag_Up Rare 1.001787 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 eff_toptag_Down Rare 0.998910 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 eff_toptag_Up znunu 1.002350 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 eff_toptag_Down znunu 0.997650 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 eff_toptag_Up ttbarplusw 1.003890 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 eff_toptag_Down ttbarplusw 0.996110 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 eff_toptag_Up qcd 1.001552 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 eff_toptag_Down qcd 0.998441 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 eff_wtag_Up Rare 1.001781 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 eff_wtag_Down Rare 0.998219 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 eff_wtag_Up znunu 1.000838 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 eff_wtag_Down znunu 0.999162 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 eff_wtag_Up ttbarplusw 1.004028 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 eff_wtag_Down ttbarplusw 0.995972 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 eff_wtag_Up qcd 0.999963 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 eff_wtag_Down qcd 1.000036 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 ivfunc_Up Rare 0.998537 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 ivfunc_Down Rare 1.001463 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 ivfunc_Up znunu 1.004656 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 ivfunc_Down znunu 0.995344 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 ivfunc_Up ttbarplusw 1.003645 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 ivfunc_Down ttbarplusw 0.996356 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 ivfunc_Up qcd 1.000802 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 ivfunc_Down qcd 0.999187 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 trigger_err_Up Rare 1.004146 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 trigger_err_Down Rare 0.995672 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 trigger_err_Up znunu 1.004227 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 trigger_err_Down znunu 0.995610 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 trigger_err_Up ttbarplusw 1.004244 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 trigger_err_Down ttbarplusw 0.995577 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 trigger_err_Up qcd 0.998915 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 trigger_err_Down qcd 1.001089 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 JES_Up Rare 0.818051 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 JES_Down Rare 1.912668 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 JES_Up znunu 1.175804 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 JES_Down znunu 0.938033 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 JES_Up ttbarplusw 1.093887 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 JES_Down ttbarplusw 0.946702 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 JES_Up qcd 1.051973 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 JES_Down qcd 0.971710 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 metres_Up Rare 1.584958 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 metres_Down Rare 1.826055 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 metres_Up znunu 0.924825 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 metres_Down znunu 1.080637 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 metres_Up ttbarplusw 1.025590 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 metres_Down ttbarplusw 1.008432 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 metres_Up qcd 1.011225 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt350to450 metres_Down qcd 1.002596 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 PU_Weight_Up Rare 0.950851 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 PU_Weight_Down Rare 1.055772 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 PU_Weight_Up znunu 1.009930 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 PU_Weight_Down znunu 0.992235 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 PU_Weight_Up ttbarplusw 1.090601 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 PU_Weight_Down ttbarplusw 0.910412 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 PU_Weight_Up qcd 0.993207 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 PU_Weight_Down qcd 1.007902 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 b_Up Rare 1.047419 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 b_Down Rare 0.944263 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 b_Up znunu 1.054156 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 b_Down znunu 0.947399 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 b_Up ttbarplusw 1.034480 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 b_Down ttbarplusw 0.962198 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 b_Up qcd 1.053208 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 b_Down qcd 0.945862 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 eff_restoptag_Up Rare 1.032727 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 eff_restoptag_Down Rare 0.967257 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 eff_restoptag_Up znunu 1.025566 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 eff_restoptag_Down znunu 0.974421 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 eff_restoptag_Up ttbarplusw 1.000787 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 eff_restoptag_Down ttbarplusw 0.999212 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 eff_restoptag_Up qcd 1.011796 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 eff_restoptag_Down qcd 0.988171 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 eff_toptag_Up Rare 1.028921 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 eff_toptag_Down Rare 0.971141 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 eff_toptag_Up znunu 1.004170 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 eff_toptag_Down znunu 0.995830 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 eff_toptag_Up ttbarplusw 1.000424 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 eff_toptag_Down ttbarplusw 0.999576 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 eff_toptag_Up qcd 1.000534 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 eff_toptag_Down qcd 0.999464 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 eff_wtag_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 eff_wtag_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 eff_wtag_Up ttbarplusw 1.000408 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 eff_wtag_Down ttbarplusw 0.999592 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 eff_wtag_Up qcd 1.000770 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 eff_wtag_Down qcd 0.999284 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 ivfunc_Up Rare 1.000294 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 ivfunc_Down Rare 0.999706 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 ivfunc_Up znunu 1.000587 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 ivfunc_Down znunu 0.999413 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 ivfunc_Up ttbarplusw 1.000178 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 ivfunc_Down ttbarplusw 0.999822 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 ivfunc_Up qcd 1.000101 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 ivfunc_Down qcd 0.999891 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 trigger_err_Up Rare 1.004670 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 trigger_err_Down Rare 0.995024 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 trigger_err_Up znunu 1.004534 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 trigger_err_Down znunu 0.995173 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 trigger_err_Up ttbarplusw 1.004001 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 trigger_err_Down ttbarplusw 0.995827 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 trigger_err_Up qcd 0.999116 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 trigger_err_Down qcd 1.000785 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 JES_Up Rare 0.924685 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 JES_Down Rare 0.498706 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 JES_Up znunu 0.962160 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 JES_Down znunu 0.891443 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 JES_Up ttbarplusw 1.003697 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 JES_Down ttbarplusw 1.000599 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 JES_Up qcd 0.968232 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 JES_Down qcd 0.968905 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 metres_Up Rare 0.998849 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 metres_Down Rare 0.530953 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 metres_Up znunu 0.937280 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 metres_Down znunu 0.991912 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 metres_Up ttbarplusw 0.988799 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 metres_Down ttbarplusw 0.997775 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 metres_Up qcd 1.017210 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt450to550 metres_Down qcd 1.004653 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 PU_Weight_Up Rare 0.941664 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 PU_Weight_Down Rare 1.063953 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 PU_Weight_Up znunu 1.040292 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 PU_Weight_Down znunu 0.956557 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 PU_Weight_Up ttbarplusw 0.941832 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 PU_Weight_Down ttbarplusw 1.057544 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 PU_Weight_Up qcd 1.004908 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 PU_Weight_Down qcd 0.991050 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 b_Up Rare 1.084281 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 b_Down Rare 0.911428 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 b_Up znunu 1.062854 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 b_Down znunu 0.940279 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 b_Up ttbarplusw 1.036312 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 b_Down ttbarplusw 0.964396 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 b_Up qcd 1.050825 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 b_Down qcd 0.948502 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 eff_restoptag_Up Rare 1.003633 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 eff_restoptag_Down Rare 0.996358 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 eff_restoptag_Up znunu 1.028329 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 eff_restoptag_Down znunu 0.971670 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 eff_restoptag_Up ttbarplusw 1.032915 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 eff_restoptag_Down ttbarplusw 0.966999 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 eff_restoptag_Up qcd 1.006334 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 eff_restoptag_Down qcd 0.993633 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 eff_toptag_Up Rare 1.035286 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 eff_toptag_Down Rare 0.964714 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 eff_toptag_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 eff_toptag_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 eff_toptag_Up ttbarplusw 1.000088 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 eff_toptag_Down ttbarplusw 0.999912 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 eff_toptag_Up qcd 0.999583 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 eff_toptag_Down qcd 1.000414 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 eff_wtag_Up Rare 0.998449 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 eff_wtag_Down Rare 1.001551 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 eff_wtag_Up ttbarplusw 1.000257 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 eff_wtag_Down ttbarplusw 0.999743 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 eff_wtag_Up qcd 1.002605 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 eff_wtag_Down qcd 0.997483 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 ivfunc_Up Rare 1.005380 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 ivfunc_Down Rare 0.994620 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 ivfunc_Up znunu 1.000084 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 ivfunc_Down znunu 0.999916 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 ivfunc_Up ttbarplusw 1.052168 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 ivfunc_Down ttbarplusw 0.947832 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 ivfunc_Up qcd 1.001338 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 ivfunc_Down qcd 0.998649 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 trigger_err_Up Rare 1.004796 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 trigger_err_Down Rare 0.994870 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 trigger_err_Up znunu 1.004581 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 trigger_err_Down znunu 0.995100 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 trigger_err_Up ttbarplusw 1.004331 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 trigger_err_Down ttbarplusw 0.995313 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 trigger_err_Up qcd 0.999568 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 trigger_err_Down qcd 1.000213 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 JES_Up Rare 1.018776 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 JES_Down Rare 0.922953 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 JES_Up znunu 1.240148 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 JES_Down znunu 0.906692 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 JES_Up ttbarplusw 1.001767 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 JES_Down ttbarplusw 1.003745 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 JES_Up qcd 1.016906 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 JES_Down qcd 0.872654 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 metres_Up Rare 1.906512 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 metres_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 metres_Up znunu 1.134259 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 metres_Down znunu 1.003850 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 metres_Up ttbarplusw 1.007064 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 metres_Down ttbarplusw 1.000335 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 metres_Up qcd 0.877722 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt550to650 metres_Down qcd 0.985033 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf PU_Weight_Up Rare 0.995673 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf PU_Weight_Down Rare 1.005205 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf PU_Weight_Up znunu 0.997447 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf PU_Weight_Down znunu 1.002416 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf PU_Weight_Up ttbarplusw 1.133037 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf PU_Weight_Down ttbarplusw 0.860736 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf PU_Weight_Up qcd 0.982656 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf PU_Weight_Down qcd 1.015920 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf b_Up Rare 1.024967 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf b_Down Rare 0.974583 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf b_Up znunu 1.066012 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf b_Down znunu 0.935533 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf b_Up ttbarplusw 1.014923 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf b_Down ttbarplusw 0.982428 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf b_Up qcd 1.035872 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf b_Down qcd 0.963403 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf eff_restoptag_Up Rare 1.006175 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf eff_restoptag_Down Rare 0.993829 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf eff_restoptag_Up znunu 1.002494 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf eff_restoptag_Down znunu 0.997495 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf eff_restoptag_Up ttbarplusw 1.001904 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf eff_restoptag_Down ttbarplusw 0.998094 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf eff_restoptag_Up qcd 1.002321 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf eff_restoptag_Down qcd 0.997674 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf eff_toptag_Up Rare 1.027727 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf eff_toptag_Down Rare 0.972287 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf eff_toptag_Up znunu 1.002124 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf eff_toptag_Down znunu 0.997876 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf eff_toptag_Up ttbarplusw 1.000201 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf eff_toptag_Down ttbarplusw 0.999799 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf eff_toptag_Up qcd 0.999545 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf eff_toptag_Down qcd 1.000454 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf eff_wtag_Up Rare 1.002780 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf eff_wtag_Down Rare 0.997220 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf eff_wtag_Up znunu 1.005412 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf eff_wtag_Down znunu 0.994588 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf eff_wtag_Up ttbarplusw 1.000240 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf eff_wtag_Down ttbarplusw 0.999760 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf eff_wtag_Up qcd 0.999678 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf eff_wtag_Down qcd 1.000320 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf ivfunc_Up Rare 1.001482 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf ivfunc_Down Rare 0.998518 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf ivfunc_Up znunu 1.004385 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf ivfunc_Down znunu 0.995615 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf ivfunc_Up ttbarplusw 1.000200 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf ivfunc_Down ttbarplusw 0.999800 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf ivfunc_Up qcd 1.002298 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf ivfunc_Down qcd 0.997679 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf trigger_err_Up Rare 1.004645 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf trigger_err_Down Rare 0.995000 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf trigger_err_Up znunu 1.004838 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf trigger_err_Down znunu 0.994801 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf trigger_err_Up ttbarplusw 1.005535 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf trigger_err_Down ttbarplusw 0.993947 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf trigger_err_Up qcd 0.999486 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf trigger_err_Down qcd 1.000293 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf JES_Up Rare 0.952117 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf JES_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf JES_Up znunu 1.004744 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf JES_Down znunu 0.962636 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf JES_Up ttbarplusw 1.014056 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf JES_Down ttbarplusw 0.982640 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf JES_Up qcd 1.029631 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf JES_Down qcd 0.908089 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf metres_Up Rare 0.914633 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf metres_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf metres_Up znunu 0.962520 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf metres_Down znunu 1.001078 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf metres_Up ttbarplusw 0.997681 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf metres_Down ttbarplusw 1.958928 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf metres_Up qcd 1.039691 +bin_qcdcr_hm_nbeq2_highmtb_htgt1500_MET_pt650toinf metres_Down qcd 0.974990 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 PU_Weight_Up Rare 0.978149 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 PU_Weight_Down Rare 1.011510 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 PU_Weight_Up znunu 1.005998 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 PU_Weight_Down znunu 0.995340 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 PU_Weight_Up ttbarplusw 1.001731 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 PU_Weight_Down ttbarplusw 0.996796 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 PU_Weight_Up qcd 0.989409 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 PU_Weight_Down qcd 1.010295 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 b_Up Rare 1.018395 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 b_Down Rare 0.990132 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 b_Up znunu 1.045961 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 b_Down znunu 0.954942 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 b_Up ttbarplusw 1.041070 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 b_Down ttbarplusw 0.957526 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 b_Up qcd 1.046280 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 b_Down qcd 0.953662 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 eff_restoptag_Up Rare 0.983578 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 eff_restoptag_Down Rare 1.017172 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 eff_restoptag_Up znunu 1.013709 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 eff_restoptag_Down znunu 0.986197 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 eff_restoptag_Up ttbarplusw 1.018372 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 eff_restoptag_Down ttbarplusw 0.981915 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 eff_restoptag_Up qcd 1.008461 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 eff_restoptag_Down qcd 0.991488 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 eff_toptag_Up Rare 1.008998 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 eff_toptag_Down Rare 0.991002 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 eff_toptag_Up znunu 1.001874 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 eff_toptag_Down znunu 0.998126 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 eff_toptag_Up ttbarplusw 1.017075 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 eff_toptag_Down ttbarplusw 0.982925 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 eff_toptag_Up qcd 1.000362 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 eff_toptag_Down qcd 0.999636 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 eff_wtag_Up Rare 1.016143 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 eff_wtag_Down Rare 0.983857 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 eff_wtag_Up znunu 1.000358 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 eff_wtag_Down znunu 0.999642 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 eff_wtag_Up ttbarplusw 1.007996 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 eff_wtag_Down ttbarplusw 0.992004 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 eff_wtag_Up qcd 0.999330 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 eff_wtag_Down qcd 1.000671 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 ivfunc_Up Rare 0.995508 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 ivfunc_Down Rare 1.004502 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 ivfunc_Up znunu 1.000667 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 ivfunc_Down znunu 0.999336 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 ivfunc_Up ttbarplusw 1.000802 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 ivfunc_Down ttbarplusw 0.999198 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 ivfunc_Up qcd 1.000155 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 ivfunc_Down qcd 0.999835 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 trigger_err_Up Rare 1.005273 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 trigger_err_Down Rare 0.994521 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 trigger_err_Up znunu 1.005401 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 trigger_err_Down znunu 0.994436 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 trigger_err_Up ttbarplusw 1.005063 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 trigger_err_Down ttbarplusw 0.994801 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 trigger_err_Up qcd 0.999396 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 trigger_err_Down qcd 1.000643 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 JES_Up Rare 0.759389 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 JES_Down Rare 1.162629 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 JES_Up znunu 1.057051 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 JES_Down znunu 0.868218 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 JES_Up ttbarplusw 0.998853 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 JES_Down ttbarplusw 0.932313 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 JES_Up qcd 1.050837 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 JES_Down qcd 0.916759 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 metres_Up Rare 1.045503 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 metres_Down Rare 1.193082 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 metres_Up znunu 1.013976 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 metres_Down znunu 0.990064 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 metres_Up ttbarplusw 1.105904 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 metres_Down ttbarplusw 0.873138 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 metres_Up qcd 1.013566 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt250to350 metres_Down qcd 1.001379 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 PU_Weight_Up Rare 0.912742 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 PU_Weight_Down Rare 1.084769 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 PU_Weight_Up znunu 1.006200 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 PU_Weight_Down znunu 0.994904 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 PU_Weight_Up ttbarplusw 1.029298 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 PU_Weight_Down ttbarplusw 0.972592 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 PU_Weight_Up qcd 1.026171 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 PU_Weight_Down qcd 0.977157 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 b_Up Rare 1.066616 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 b_Down Rare 0.932692 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 b_Up znunu 1.066326 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 b_Down znunu 0.936027 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 b_Up ttbarplusw 1.034305 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 b_Down ttbarplusw 0.964290 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 b_Up qcd 1.065157 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 b_Down qcd 0.936005 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 eff_restoptag_Up Rare 1.028329 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 eff_restoptag_Down Rare 0.971517 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 eff_restoptag_Up znunu 1.007918 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 eff_restoptag_Down znunu 0.992066 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 eff_restoptag_Up ttbarplusw 1.034896 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 eff_restoptag_Down ttbarplusw 0.964541 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 eff_restoptag_Up qcd 1.006568 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 eff_restoptag_Down qcd 0.993399 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 eff_toptag_Up Rare 1.001354 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 eff_toptag_Down Rare 0.998646 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 eff_toptag_Up znunu 1.005324 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 eff_toptag_Down znunu 0.994676 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 eff_toptag_Up ttbarplusw 1.019242 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 eff_toptag_Down ttbarplusw 0.980758 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 eff_toptag_Up qcd 1.001041 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 eff_toptag_Down qcd 0.998956 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 eff_wtag_Up Rare 0.997987 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 eff_wtag_Down Rare 1.002013 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 eff_wtag_Up znunu 1.000591 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 eff_wtag_Down znunu 0.999409 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 eff_wtag_Up ttbarplusw 1.000105 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 eff_wtag_Down ttbarplusw 0.999895 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 eff_wtag_Up qcd 0.998567 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 eff_wtag_Down qcd 1.001436 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 ivfunc_Up Rare 1.000338 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 ivfunc_Down Rare 0.999662 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 ivfunc_Up znunu 1.001069 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 ivfunc_Down znunu 0.998931 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 ivfunc_Up ttbarplusw 1.000430 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 ivfunc_Down ttbarplusw 0.999577 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 ivfunc_Up qcd 1.001455 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 ivfunc_Down qcd 0.998519 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 trigger_err_Up Rare 1.004196 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 trigger_err_Down Rare 0.995631 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 trigger_err_Up znunu 1.004299 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 trigger_err_Down znunu 0.995513 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 trigger_err_Up ttbarplusw 1.004081 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 trigger_err_Down ttbarplusw 0.995756 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 trigger_err_Up qcd 0.998206 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 trigger_err_Down qcd 1.001853 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 JES_Up Rare 1.654192 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 JES_Down Rare 1.342899 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 JES_Up znunu 1.055705 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 JES_Down znunu 0.946780 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 JES_Up ttbarplusw 1.124761 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 JES_Down ttbarplusw 0.996124 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 JES_Up qcd 1.031270 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 JES_Down qcd 0.931441 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 metres_Up Rare 1.393604 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 metres_Down Rare 1.312397 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 metres_Up znunu 0.952495 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 metres_Down znunu 0.972693 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 metres_Up ttbarplusw 1.002650 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 metres_Down ttbarplusw 1.282548 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 metres_Up qcd 1.011839 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt350to450 metres_Down qcd 1.014269 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 PU_Weight_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 PU_Weight_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 PU_Weight_Up znunu 0.994591 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 PU_Weight_Down znunu 1.005530 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 PU_Weight_Up ttbarplusw 1.006162 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 PU_Weight_Down ttbarplusw 0.993563 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 PU_Weight_Up qcd 0.967797 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 PU_Weight_Down qcd 1.048089 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 b_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 b_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 b_Up znunu 1.066245 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 b_Down znunu 0.935835 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 b_Up ttbarplusw 1.062819 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 b_Down ttbarplusw 0.938246 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 b_Up qcd 1.045028 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 b_Down qcd 0.954917 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 eff_restoptag_Up znunu 1.002813 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 eff_restoptag_Down znunu 0.997117 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 eff_restoptag_Up ttbarplusw 1.023001 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 eff_restoptag_Down ttbarplusw 0.976861 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 eff_restoptag_Up qcd 1.002870 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 eff_restoptag_Down qcd 0.997113 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 eff_toptag_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 eff_toptag_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 eff_toptag_Up znunu 1.003299 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 eff_toptag_Down znunu 0.996701 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 eff_toptag_Up qcd 1.021018 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 eff_toptag_Down qcd 0.978947 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 eff_wtag_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 eff_wtag_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 eff_wtag_Up qcd 0.998953 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 eff_wtag_Down qcd 1.001049 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 ivfunc_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 ivfunc_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 ivfunc_Up znunu 1.003200 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 ivfunc_Down znunu 0.996800 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 ivfunc_Up ttbarplusw 1.002118 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 ivfunc_Down ttbarplusw 0.997882 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 ivfunc_Up qcd 0.997765 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 ivfunc_Down qcd 1.002231 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 trigger_err_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 trigger_err_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 trigger_err_Up znunu 1.004463 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 trigger_err_Down znunu 0.995255 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 trigger_err_Up ttbarplusw 1.004512 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 trigger_err_Down ttbarplusw 0.995210 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 trigger_err_Up qcd 0.998123 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 trigger_err_Down qcd 1.001835 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 JES_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 JES_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 JES_Up znunu 1.005881 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 JES_Down znunu 0.902355 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 JES_Up ttbarplusw 1.262440 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 JES_Down ttbarplusw 1.104109 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 JES_Up qcd 1.019907 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 JES_Down qcd 0.974222 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 metres_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 metres_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 metres_Up znunu 1.082182 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 metres_Down znunu 1.038216 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 metres_Up ttbarplusw 1.098375 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 metres_Down ttbarplusw 1.092644 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 metres_Up qcd 0.917502 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt450to550 metres_Down qcd 1.052510 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 PU_Weight_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 PU_Weight_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 PU_Weight_Up znunu 1.025912 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 PU_Weight_Down znunu 0.972724 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 PU_Weight_Up ttbarplusw 1.076766 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 PU_Weight_Down ttbarplusw 0.929375 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 PU_Weight_Up qcd 0.963105 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 PU_Weight_Down qcd 1.039340 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 b_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 b_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 b_Up znunu 1.066174 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 b_Down znunu 0.936614 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 b_Up ttbarplusw 1.114613 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 b_Down ttbarplusw 0.888428 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 b_Up qcd 1.117510 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 b_Down qcd 0.883283 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 eff_restoptag_Up znunu 1.029059 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 eff_restoptag_Down znunu 0.970807 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 eff_restoptag_Up qcd 0.998920 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 eff_restoptag_Down qcd 1.001079 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 eff_toptag_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 eff_toptag_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 eff_toptag_Up znunu 1.004704 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 eff_toptag_Down znunu 0.995296 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 eff_toptag_Up ttbarplusw 1.008623 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 eff_toptag_Down ttbarplusw 0.991377 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 eff_toptag_Up qcd 1.002528 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 eff_toptag_Down qcd 0.997469 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 eff_wtag_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 eff_wtag_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 eff_wtag_Up qcd 0.999669 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 eff_wtag_Down qcd 1.000332 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 ivfunc_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 ivfunc_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 ivfunc_Up znunu 1.001140 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 ivfunc_Down znunu 0.998860 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 ivfunc_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 ivfunc_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 ivfunc_Up qcd 0.999218 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 ivfunc_Down qcd 1.000773 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 trigger_err_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 trigger_err_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 trigger_err_Up znunu 1.005068 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 trigger_err_Down znunu 0.994525 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 trigger_err_Up ttbarplusw 1.004493 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 trigger_err_Down ttbarplusw 0.995193 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 trigger_err_Up qcd 0.999000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 trigger_err_Down qcd 1.000738 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 JES_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 JES_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 JES_Up znunu 1.050508 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 JES_Down znunu 0.884753 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 JES_Up ttbarplusw 0.924064 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 JES_Down ttbarplusw 1.128214 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 JES_Up qcd 0.974443 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 JES_Down qcd 1.141000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 metres_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 metres_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 metres_Up znunu 0.947684 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 metres_Down znunu 0.947319 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 metres_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 metres_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 metres_Up qcd 1.010798 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt550to650 metres_Down qcd 0.968122 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf PU_Weight_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf PU_Weight_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf PU_Weight_Up znunu 0.936073 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf PU_Weight_Down znunu 1.067426 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf PU_Weight_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf PU_Weight_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf PU_Weight_Up qcd 0.965780 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf PU_Weight_Down qcd 1.033884 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf b_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf b_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf b_Up znunu 1.063056 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf b_Down znunu 0.938309 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf b_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf b_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf b_Up qcd 1.061205 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf b_Down qcd 0.939202 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf eff_restoptag_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf eff_restoptag_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf eff_restoptag_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf eff_restoptag_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf eff_restoptag_Up qcd 0.998205 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf eff_restoptag_Down qcd 1.001799 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf eff_toptag_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf eff_toptag_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf eff_toptag_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf eff_toptag_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf eff_toptag_Up qcd 1.013616 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf eff_toptag_Down qcd 0.986373 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf eff_wtag_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf eff_wtag_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf eff_wtag_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf eff_wtag_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf eff_wtag_Up qcd 0.997826 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf eff_wtag_Down qcd 1.002179 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf ivfunc_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf ivfunc_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf ivfunc_Up znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf ivfunc_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf ivfunc_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf ivfunc_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf ivfunc_Up qcd 1.001484 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf ivfunc_Down qcd 0.998515 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf trigger_err_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf trigger_err_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf trigger_err_Up znunu 1.005223 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf trigger_err_Down znunu 0.994347 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf trigger_err_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf trigger_err_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf trigger_err_Up qcd 0.998021 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf trigger_err_Down qcd 1.001863 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf JES_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf JES_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf JES_Up znunu 0.839945 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf JES_Down znunu 0.728161 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf JES_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf JES_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf JES_Up qcd 0.965278 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf JES_Down qcd 0.756659 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf metres_Up Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf metres_Down Rare 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf metres_Up znunu 0.728161 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf metres_Down znunu 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf metres_Up ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf metres_Down ttbarplusw 1.000000 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf metres_Up qcd 0.916830 +bin_qcdcr_hm_nbeq2_highmtb_htlt1000_MET_pt650toinf metres_Down qcd 0.899851 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_Up Rare 1.004801 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_Down Rare 0.989962 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_Up znunu 0.997412 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_Down znunu 1.002591 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_Up ttbarplusw 0.997027 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_Down ttbarplusw 1.003342 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_Up qcd 0.993834 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_Down qcd 1.005234 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_Up Rare 0.990989 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_Down Rare 1.008931 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_Up znunu 0.994825 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_Down znunu 1.005217 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_Up ttbarplusw 0.994254 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_Down ttbarplusw 1.005797 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_Up qcd 0.986907 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_Down qcd 1.013281 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Up qcd 0.998527 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Down qcd 1.001477 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_Up qcd 0.999202 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_Down qcd 1.000797 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_Up qcd 0.999008 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_Down qcd 1.000994 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_Up qcd 0.997523 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_Down qcd 1.002475 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_Up Rare 1.004232 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_Down Rare 0.995523 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_Up znunu 1.004543 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_Down znunu 0.995157 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_Up ttbarplusw 1.004537 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_Down ttbarplusw 0.995162 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_Up qcd 0.998574 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_Down qcd 1.001373 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_Up Rare 0.976285 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_Down Rare 0.840101 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_Up znunu 1.015354 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_Down znunu 0.983342 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_Up ttbarplusw 1.010915 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_Down ttbarplusw 0.991625 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_Up qcd 0.975076 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_Down qcd 0.997279 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 metres_Up Rare 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 metres_Down Rare 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 metres_Up znunu 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 metres_Down znunu 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 metres_Up qcd 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 metres_Down qcd 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_Up Rare 0.987218 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_Down Rare 1.011815 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_Up znunu 0.997822 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_Down znunu 1.002096 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_Up ttbarplusw 0.998736 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_Down ttbarplusw 1.001391 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_Up qcd 0.995430 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_Down qcd 1.004807 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_Up Rare 0.996519 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_Down Rare 1.003119 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_Up znunu 0.994853 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_Down znunu 1.005191 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_Up ttbarplusw 0.994205 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_Down ttbarplusw 1.005845 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_Up qcd 0.986699 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_Down qcd 1.013497 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Up qcd 0.998498 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Down qcd 1.001506 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_Up qcd 0.999221 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_Down qcd 1.000778 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_Up qcd 0.998982 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_Down qcd 1.001020 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_Up qcd 0.997547 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_Down qcd 1.002451 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_Up Rare 1.004725 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_Down Rare 0.994875 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_Up znunu 1.004941 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_Down znunu 0.994640 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_Up ttbarplusw 1.004961 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_Down ttbarplusw 0.994615 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_Up qcd 0.998959 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_Down qcd 1.000851 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_Up Rare 1.070055 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_Down Rare 1.250164 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_Up znunu 1.032706 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_Down znunu 0.956822 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_Up ttbarplusw 1.023557 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_Down ttbarplusw 0.990297 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_Up qcd 1.004028 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_Down qcd 0.982816 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 metres_Up Rare 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 metres_Down Rare 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 metres_Up znunu 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 metres_Down znunu 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 metres_Up qcd 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 metres_Down qcd 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_Up Rare 0.993901 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_Down Rare 0.995602 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_Up znunu 0.999638 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_Down znunu 1.000420 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_Up ttbarplusw 1.012474 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_Down ttbarplusw 0.985298 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_Up qcd 0.993938 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_Down qcd 1.006247 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_Up Rare 0.995133 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_Down Rare 1.004906 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_Up znunu 0.994941 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_Down znunu 1.005101 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_Up ttbarplusw 0.992811 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_Down ttbarplusw 1.007246 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_Up qcd 0.986401 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_Down qcd 1.013797 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Up qcd 0.998468 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Down qcd 1.001536 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_Up qcd 0.999212 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_Down qcd 1.000787 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_Up qcd 0.998996 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_Down qcd 1.001006 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_Up qcd 0.997481 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_Down qcd 1.002517 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_Up Rare 1.004428 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_Down Rare 0.995208 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_Up znunu 1.004971 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_Down znunu 0.994605 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_Up ttbarplusw 1.004938 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_Down ttbarplusw 0.994640 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_Up qcd 0.998913 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_Down qcd 1.000902 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_Up Rare 0.768639 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_Down Rare 0.880171 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_Up znunu 1.037298 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_Down znunu 0.957689 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_Up ttbarplusw 1.018336 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_Down ttbarplusw 0.937578 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_Up qcd 1.003814 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_Down qcd 0.989175 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 metres_Up Rare 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 metres_Down Rare 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 metres_Up znunu 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 metres_Down znunu 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 metres_Up qcd 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 metres_Down qcd 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_Up Rare 1.031445 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_Down Rare 0.972268 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_Up znunu 0.995847 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_Down znunu 1.003735 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_Up ttbarplusw 0.994869 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_Down ttbarplusw 1.005219 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_Up qcd 0.998024 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_Down qcd 1.001612 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_Up Rare 0.985791 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_Down Rare 1.014427 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_Up znunu 0.994473 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_Down znunu 1.005585 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_Up ttbarplusw 0.993794 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_Down ttbarplusw 1.006259 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_Up qcd 0.986295 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_Down qcd 1.013920 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Up qcd 0.998396 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Down qcd 1.001609 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_Up qcd 0.999224 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_Down qcd 1.000776 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_Up qcd 0.998993 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_Down qcd 1.001008 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_Up qcd 0.997400 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_Down qcd 1.002599 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_Up Rare 1.004976 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_Down Rare 0.994571 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_Up znunu 1.004953 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_Down znunu 0.994624 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_Up ttbarplusw 1.004960 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_Down ttbarplusw 0.994614 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_Up qcd 0.998791 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_Down qcd 1.001031 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_Up Rare 0.713095 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_Down Rare 0.986603 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_Up znunu 1.048480 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_Down znunu 0.945129 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_Up ttbarplusw 1.028295 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_Down ttbarplusw 0.962075 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_Up qcd 1.005734 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_Down qcd 0.961913 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf metres_Up Rare 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf metres_Down Rare 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf metres_Up znunu 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf metres_Down znunu 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf metres_Up qcd 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf metres_Down qcd 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_Up Rare 1.001091 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_Down Rare 1.010406 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_Up znunu 0.997504 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_Down znunu 1.003546 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_Up ttbarplusw 0.997928 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_Down ttbarplusw 0.999916 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_Up qcd 0.996449 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_Down qcd 1.001225 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_Up Rare 0.978675 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_Down Rare 1.021824 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_Up znunu 0.988972 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_Down znunu 1.011223 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_Up ttbarplusw 0.976751 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_Down ttbarplusw 1.023600 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_Up qcd 0.980142 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_Down qcd 1.020340 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restoptag_Up qcd 0.998712 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restoptag_Down qcd 1.001291 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_Up qcd 0.999245 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_Down qcd 1.000754 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_Up qcd 0.999033 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_Down qcd 1.000969 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_Up qcd 0.997791 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_Down qcd 1.002208 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_Up Rare 1.004278 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_Down Rare 0.995510 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_Up znunu 1.004533 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_Down znunu 0.995174 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_Up ttbarplusw 1.004503 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_Down ttbarplusw 0.995215 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_Up qcd 0.998842 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_Down qcd 1.001083 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_Up Rare 1.000330 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_Up znunu 1.312252 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_Down znunu 0.990562 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_Up ttbarplusw 1.055845 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_Down ttbarplusw 0.999420 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_Up qcd 1.019353 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_Down qcd 1.018444 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 metres_Up Rare 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 metres_Down Rare 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 metres_Up znunu 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 metres_Down znunu 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 metres_Up qcd 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 metres_Down qcd 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_Up znunu 0.995140 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_Down znunu 1.005366 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_Up ttbarplusw 0.972776 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_Down ttbarplusw 1.026349 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_Up qcd 0.996302 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_Down qcd 1.002063 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_Up znunu 0.990674 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_Down znunu 1.009450 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_Up ttbarplusw 0.968068 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_Down ttbarplusw 1.033503 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_Up qcd 0.979793 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_Down qcd 1.020687 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restoptag_Up qcd 0.998725 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restoptag_Down qcd 1.001277 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_Up qcd 0.999168 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_Down qcd 1.000830 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_Up qcd 0.998968 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_Down qcd 1.001034 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_Up qcd 0.997798 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_Down qcd 1.002201 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_Up znunu 1.004921 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_Down znunu 0.994667 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_Up ttbarplusw 1.004645 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_Down ttbarplusw 0.994989 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_Up qcd 0.999269 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_Down qcd 1.000526 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_Up znunu 1.280435 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_Down znunu 0.968604 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_Up ttbarplusw 1.292947 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_Down ttbarplusw 0.993074 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_Up qcd 1.007330 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_Down qcd 0.997669 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 metres_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 metres_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 metres_Up znunu 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 metres_Down znunu 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 metres_Up qcd 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 metres_Down qcd 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_Up Rare 1.112311 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_Down Rare 0.879148 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_Up znunu 1.001963 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_Down znunu 0.998806 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_Up ttbarplusw 0.966073 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_Down ttbarplusw 1.034139 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_Up qcd 0.991571 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_Down qcd 1.008456 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_Up Rare 0.976926 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_Down Rare 1.023608 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_Up znunu 0.989024 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_Down znunu 1.011158 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_Up ttbarplusw 0.910045 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_Down ttbarplusw 1.098482 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_Up qcd 0.979708 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_Down qcd 1.020690 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restoptag_Up qcd 0.998725 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restoptag_Down qcd 1.001278 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_Up qcd 0.999261 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_Down qcd 1.000738 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_Up qcd 0.999041 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_Down qcd 1.000960 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_Up qcd 0.997848 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_Down qcd 1.002151 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_Up Rare 1.005432 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_Down Rare 0.994084 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_Up znunu 1.004999 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_Down znunu 0.994582 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_Up ttbarplusw 1.005342 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_Down ttbarplusw 0.994171 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_Up qcd 0.999105 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_Down qcd 1.000692 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_Up znunu 1.255864 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_Down znunu 0.976250 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_Up ttbarplusw 1.022121 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_Down ttbarplusw 0.992390 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_Up qcd 1.007269 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_Down qcd 0.988142 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 metres_Up Rare 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 metres_Down Rare 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 metres_Up znunu 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 metres_Down znunu 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 metres_Up qcd 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 metres_Down qcd 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_Up Rare 1.029092 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_Down Rare 0.960990 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_Up znunu 0.991895 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_Down znunu 1.009237 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_Up ttbarplusw 1.002800 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_Down ttbarplusw 0.996270 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_Up qcd 0.998670 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_Down qcd 1.003855 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_Up Rare 0.955583 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_Down Rare 1.046464 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_Up znunu 0.988915 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_Down znunu 1.011281 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_Up ttbarplusw 0.987760 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_Down ttbarplusw 1.012486 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_Up qcd 0.979934 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_Down qcd 1.020532 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restoptag_Up qcd 0.998610 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restoptag_Down qcd 1.001394 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_Up qcd 0.999255 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_Down qcd 1.000745 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_Up qcd 0.999016 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_Down qcd 1.000986 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_Up qcd 0.997672 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_Down qcd 1.002326 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_Up Rare 1.005123 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_Down Rare 0.994417 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_Up znunu 1.004881 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_Down znunu 0.994714 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_Up ttbarplusw 1.004927 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_Down ttbarplusw 0.994656 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_Up qcd 0.998989 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_Down qcd 1.000816 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_Up Rare 0.892730 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_Down Rare 1.007042 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_Up znunu 1.170967 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_Down znunu 0.966931 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_Up ttbarplusw 1.060497 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_Down ttbarplusw 0.957824 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_Up qcd 1.046127 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_Down qcd 0.976832 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf metres_Up Rare 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf metres_Down Rare 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf metres_Up znunu 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf metres_Down znunu 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf metres_Up qcd 0.000000 +bin_qcdcr_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf metres_Down qcd 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_Up znunu 1.012201 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_Down znunu 0.986377 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_Up ttbarplusw 1.015123 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_Down ttbarplusw 0.986606 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_Up qcd 0.993869 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_Down qcd 1.008642 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_Up znunu 0.994074 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_Down znunu 1.005996 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_Up ttbarplusw 0.992583 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_Down ttbarplusw 1.007500 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_Up qcd 0.982763 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_Down qcd 1.017485 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Up qcd 0.998707 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Down qcd 1.001296 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_Up qcd 0.999184 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_Down qcd 1.000815 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_Up qcd 0.999330 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_Down qcd 1.000671 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_Up znunu 1.054626 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_Down znunu 0.945727 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_Up ttbarplusw 1.054810 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_Down ttbarplusw 0.945637 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_Up qcd 1.052375 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_Down qcd 0.947741 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_Up znunu 1.004501 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_Down znunu 0.995196 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_Up ttbarplusw 1.004555 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_Down ttbarplusw 0.995137 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_Up qcd 0.998640 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_Down qcd 1.001296 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_Up znunu 1.017574 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_Down znunu 0.949742 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_Up ttbarplusw 0.969321 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_Down ttbarplusw 0.992851 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_Up qcd 0.954954 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_Down qcd 0.976183 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 metres_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 metres_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 metres_Up znunu 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 metres_Down znunu 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 metres_Up qcd 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 metres_Down qcd 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_Up Rare 1.005858 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_Down Rare 0.989048 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_Up znunu 1.012670 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_Down znunu 0.986324 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_Up ttbarplusw 1.016034 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_Down ttbarplusw 0.985529 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_Up qcd 1.010257 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_Down qcd 0.988532 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_Up Rare 0.989522 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_Down Rare 1.010561 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_Up znunu 0.993138 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_Down znunu 1.006903 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_Up ttbarplusw 0.991893 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_Down ttbarplusw 1.008186 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_Up qcd 0.984907 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_Down qcd 1.015289 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Up qcd 0.998513 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Down qcd 1.001491 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_Up qcd 0.999175 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_Down qcd 1.000824 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_Up qcd 0.999263 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_Down qcd 1.000738 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_Up Rare 1.033555 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_Down Rare 0.966445 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_Up znunu 1.053568 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_Down znunu 0.946748 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_Up ttbarplusw 1.051741 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_Down ttbarplusw 0.948370 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_Up qcd 1.049363 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_Down qcd 0.950446 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_Up Rare 1.004526 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_Down Rare 0.995193 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_Up znunu 1.005001 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_Down znunu 0.994562 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_Up ttbarplusw 1.005031 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_Down ttbarplusw 0.994527 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_Up qcd 0.999044 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_Down qcd 1.000764 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_Up Rare 0.934223 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_Up znunu 1.014845 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_Down znunu 0.992824 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_Up ttbarplusw 0.971826 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_Down ttbarplusw 1.008557 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_Up qcd 1.037295 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_Down qcd 1.091841 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 metres_Up Rare 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 metres_Down Rare 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 metres_Up znunu 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 metres_Down znunu 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 metres_Up qcd 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 metres_Down qcd 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf PU_Weight_Up Rare 1.127949 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf PU_Weight_Down Rare 0.894073 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf PU_Weight_Up znunu 1.011314 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf PU_Weight_Down znunu 0.987413 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf PU_Weight_Up ttbarplusw 1.024901 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf PU_Weight_Down ttbarplusw 0.977961 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf PU_Weight_Up qcd 1.008893 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf PU_Weight_Down qcd 0.983936 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf b_Up Rare 0.993480 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf b_Down Rare 1.006626 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf b_Up znunu 0.993177 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf b_Down znunu 1.006873 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf b_Up ttbarplusw 0.993749 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf b_Down ttbarplusw 1.006310 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf b_Up qcd 0.985427 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf b_Down qcd 1.014705 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf eff_restoptag_Up qcd 0.998500 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf eff_restoptag_Down qcd 1.001505 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf eff_toptag_Up qcd 0.999217 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf eff_toptag_Down qcd 1.000782 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf eff_wtag_Up qcd 0.999303 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf eff_wtag_Down qcd 1.000698 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf ivfunc_Up Rare 1.055539 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf ivfunc_Down Rare 0.944461 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf ivfunc_Up znunu 1.053160 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf ivfunc_Down znunu 0.947048 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf ivfunc_Up ttbarplusw 1.054829 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf ivfunc_Down ttbarplusw 0.945476 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf ivfunc_Up qcd 1.054270 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf ivfunc_Down qcd 0.946148 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf trigger_err_Up Rare 1.004592 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf trigger_err_Down Rare 0.995013 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf trigger_err_Up znunu 1.005039 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf trigger_err_Down znunu 0.994515 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf trigger_err_Up ttbarplusw 1.004917 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf trigger_err_Down ttbarplusw 0.994653 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf trigger_err_Up qcd 0.998891 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf trigger_err_Down qcd 1.000921 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf JES_Up Rare 1.114674 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf JES_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf JES_Up znunu 1.014475 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf JES_Down znunu 0.995767 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf JES_Up ttbarplusw 1.028559 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf JES_Down ttbarplusw 0.990162 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf JES_Up qcd 1.019346 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf JES_Down qcd 1.003537 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf metres_Up Rare 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf metres_Down Rare 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf metres_Up znunu 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf metres_Down znunu 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf metres_Up qcd 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650toinf metres_Down qcd 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf PU_Weight_Up Rare 0.947479 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf PU_Weight_Down Rare 1.053200 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf PU_Weight_Up znunu 1.020297 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf PU_Weight_Down znunu 0.989619 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf PU_Weight_Up ttbarplusw 1.005677 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf PU_Weight_Down ttbarplusw 0.992808 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf PU_Weight_Up qcd 1.008783 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf PU_Weight_Down qcd 0.989081 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf b_Up Rare 0.964011 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf b_Down Rare 1.037366 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf b_Up znunu 0.993521 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf b_Down znunu 1.006553 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf b_Up ttbarplusw 0.986245 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf b_Down ttbarplusw 1.013998 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf b_Up qcd 0.974411 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf b_Down qcd 1.026295 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf eff_restoptag_Up qcd 0.998906 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf eff_restoptag_Down qcd 1.001097 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf eff_toptag_Up qcd 0.999126 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf eff_toptag_Down qcd 1.000872 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf eff_wtag_Up qcd 0.999396 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf eff_wtag_Down qcd 1.000605 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf ivfunc_Up Rare 1.050390 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf ivfunc_Down Rare 0.949610 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf ivfunc_Up znunu 1.061049 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf ivfunc_Down znunu 0.940729 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf ivfunc_Up ttbarplusw 1.054445 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf ivfunc_Down ttbarplusw 0.945990 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf ivfunc_Up qcd 1.052493 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf ivfunc_Down qcd 0.947582 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf trigger_err_Up Rare 1.005544 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf trigger_err_Down Rare 0.993941 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf trigger_err_Up znunu 1.004607 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf trigger_err_Down znunu 0.995049 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf trigger_err_Up ttbarplusw 1.004751 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf trigger_err_Down ttbarplusw 0.994895 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf trigger_err_Up qcd 0.999248 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf trigger_err_Down qcd 1.000583 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf JES_Up Rare 1.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf JES_Down Rare 1.165778 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf JES_Up znunu 1.530977 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf JES_Down znunu 0.910599 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf JES_Up ttbarplusw 1.471458 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf JES_Down ttbarplusw 0.992499 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf JES_Up qcd 1.069780 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf JES_Down qcd 0.988887 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf metres_Up Rare 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf metres_Down Rare 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf metres_Up znunu 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf metres_Down znunu 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf metres_Up qcd 0.000000 +bin_qcdcr_lm_nb0_nivf1_highptisr_nj6_MET_pt450toinf metres_Down qcd 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_Up Rare 0.862704 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_Down Rare 1.166354 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_Up znunu 1.014969 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_Down znunu 0.983708 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_Up ttbarplusw 1.013835 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_Down ttbarplusw 0.990939 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_Up qcd 1.001651 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_Down qcd 0.997329 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_Up Rare 1.038138 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_Down Rare 0.951660 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_Up znunu 1.059181 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_Down znunu 0.939933 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_Up ttbarplusw 1.051134 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_Down ttbarplusw 0.948184 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_Up qcd 1.025949 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_Down qcd 0.972218 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restoptag_Up qcd 0.998717 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restoptag_Down qcd 1.001287 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_Up qcd 0.999208 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_Down qcd 1.000791 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_Up qcd 0.999169 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_Down qcd 1.000833 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_Up qcd 0.997594 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_Down qcd 1.002404 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_Up Rare 1.004002 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_Down Rare 0.995884 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_Up znunu 1.004549 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_Down znunu 0.995153 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_Up ttbarplusw 1.004517 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_Down ttbarplusw 0.995189 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_Up qcd 0.998612 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_Down qcd 1.001322 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_Up znunu 1.001665 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_Down znunu 0.956763 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_Up ttbarplusw 0.768150 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_Down ttbarplusw 1.054639 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_Up qcd 0.949917 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_Down qcd 0.979515 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 metres_Up Rare 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 metres_Down Rare 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 metres_Up znunu 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 metres_Down znunu 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 metres_Up qcd 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 metres_Down qcd 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_Up Rare 0.910239 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_Down Rare 1.115342 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_Up znunu 1.004983 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_Down znunu 0.992840 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_Up ttbarplusw 1.011015 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_Down ttbarplusw 0.989205 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_Up qcd 1.022525 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_Down qcd 0.975230 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_Up Rare 1.020196 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_Down Rare 0.978258 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_Up znunu 1.044812 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_Down znunu 0.953960 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_Up ttbarplusw 1.057564 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_Down ttbarplusw 0.941647 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_Up qcd 1.042032 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_Down qcd 0.956366 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restoptag_Up qcd 0.998368 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restoptag_Down qcd 1.001636 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_Up qcd 0.999279 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_Down qcd 1.000720 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_Up qcd 0.998998 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_Down qcd 1.001003 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_Up qcd 0.997486 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_Down qcd 1.002512 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_Up Rare 1.004259 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_Down Rare 0.995392 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_Up znunu 1.004946 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_Down znunu 0.994638 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_Up ttbarplusw 1.004892 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_Down ttbarplusw 0.994701 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_Up qcd 0.998616 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_Down qcd 1.001206 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_Up Rare 1.354550 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_Up znunu 1.115319 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_Down znunu 1.037885 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_Up ttbarplusw 1.051543 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_Down ttbarplusw 1.033357 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_Up qcd 1.006707 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_Down qcd 0.995888 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 metres_Up Rare 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 metres_Down Rare 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 metres_Up znunu 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 metres_Down znunu 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 metres_Up qcd 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 metres_Down qcd 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf PU_Weight_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf PU_Weight_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf PU_Weight_Up znunu 1.011337 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf PU_Weight_Down znunu 0.992059 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf PU_Weight_Up ttbarplusw 0.981110 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf PU_Weight_Down ttbarplusw 1.019600 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf PU_Weight_Up qcd 1.008314 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf PU_Weight_Down qcd 0.993729 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf b_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf b_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf b_Up znunu 1.060612 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf b_Down znunu 0.938182 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf b_Up ttbarplusw 1.024544 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf b_Down ttbarplusw 0.974928 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf b_Up qcd 1.027134 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf b_Down qcd 0.971312 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf eff_restoptag_Up qcd 0.998510 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf eff_restoptag_Down qcd 1.001494 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf eff_toptag_Up qcd 0.999404 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf eff_toptag_Down qcd 1.000596 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf eff_wtag_Up qcd 0.999162 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf eff_wtag_Down qcd 1.000840 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf ivfunc_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf ivfunc_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf ivfunc_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf ivfunc_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf ivfunc_Up qcd 0.997515 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf ivfunc_Down qcd 1.002484 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf trigger_err_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf trigger_err_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf trigger_err_Up znunu 1.005091 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf trigger_err_Down znunu 0.994471 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf trigger_err_Up ttbarplusw 1.005437 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf trigger_err_Down ttbarplusw 0.994059 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf trigger_err_Up qcd 0.998602 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf trigger_err_Down qcd 1.001217 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf JES_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf JES_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf JES_Up znunu 1.025613 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf JES_Down znunu 0.978158 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf JES_Up ttbarplusw 1.032874 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf JES_Down ttbarplusw 0.990875 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf JES_Up qcd 1.077673 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf JES_Down qcd 0.967161 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf metres_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf metres_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf metres_Up znunu 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf metres_Down znunu 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf metres_Up qcd 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650toinf metres_Down qcd 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_Up znunu 0.997821 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_Down znunu 1.000924 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_Up ttbarplusw 1.004901 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_Down ttbarplusw 0.997015 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_Up qcd 1.009302 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_Down qcd 0.990609 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_Up znunu 1.038733 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_Down znunu 0.960690 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_Up ttbarplusw 1.058409 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_Down ttbarplusw 0.941119 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_Up qcd 1.011395 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_Down qcd 0.987768 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restoptag_Up qcd 0.998613 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restoptag_Down qcd 1.001391 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_Up qcd 0.999138 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_Down qcd 1.000860 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_Up qcd 0.999137 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_Down qcd 1.000864 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_Up qcd 0.997619 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_Down qcd 1.002378 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_Up znunu 1.004683 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_Down znunu 0.994987 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_Up ttbarplusw 1.004479 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_Down ttbarplusw 0.995239 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_Up qcd 0.998549 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_Down qcd 1.001384 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_Up znunu 1.002751 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_Down znunu 1.001562 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_Up ttbarplusw 0.985123 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_Down ttbarplusw 1.383552 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_Up qcd 1.029398 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_Down qcd 1.002698 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 metres_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 metres_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 metres_Up znunu 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 metres_Down znunu 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 metres_Up qcd 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 metres_Down qcd 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_Up Rare 1.003968 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_Down Rare 0.977679 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_Up znunu 1.048616 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_Down znunu 0.953471 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_Up ttbarplusw 0.992442 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_Down ttbarplusw 1.007872 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_Up qcd 1.009095 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_Down qcd 0.992294 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_Up Rare 0.990610 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_Down Rare 1.009302 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_Up znunu 1.039687 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_Down znunu 0.959726 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_Up ttbarplusw 1.067707 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_Down ttbarplusw 0.931470 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_Up qcd 1.004169 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_Down qcd 0.994775 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restoptag_Up qcd 0.998721 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restoptag_Down qcd 1.001281 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_Up qcd 0.999286 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_Down qcd 1.000713 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_Up qcd 0.998747 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_Down qcd 1.001256 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_Up qcd 0.997977 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_Down qcd 1.002022 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_Up Rare 1.005530 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_Down Rare 0.993996 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_Up znunu 1.005017 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_Down znunu 0.994547 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_Up ttbarplusw 1.004994 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_Down ttbarplusw 0.994572 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_Up qcd 0.998939 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_Down qcd 1.000866 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_Down Rare 1.009476 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_Up znunu 1.025854 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_Down znunu 0.942728 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_Up ttbarplusw 1.011497 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_Down ttbarplusw 0.955382 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_Up qcd 1.159109 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_Down qcd 0.959522 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 metres_Up Rare 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 metres_Down Rare 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 metres_Up znunu 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 metres_Down znunu 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 metres_Up qcd 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 metres_Down qcd 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf PU_Weight_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf PU_Weight_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf PU_Weight_Up znunu 0.991479 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf PU_Weight_Down znunu 1.005660 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf PU_Weight_Up ttbarplusw 1.006144 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf PU_Weight_Down ttbarplusw 0.989481 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf PU_Weight_Up qcd 1.032042 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf PU_Weight_Down qcd 0.971405 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf b_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf b_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf b_Up znunu 1.033117 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf b_Down znunu 0.966055 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf b_Up ttbarplusw 1.067072 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf b_Down ttbarplusw 0.931937 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf b_Up qcd 0.995905 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf b_Down qcd 1.003492 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf eff_restoptag_Up qcd 0.998618 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf eff_restoptag_Down qcd 1.001387 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf eff_toptag_Up qcd 0.999232 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf eff_toptag_Down qcd 1.000768 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf eff_wtag_Up qcd 0.998712 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf eff_wtag_Down qcd 1.001290 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf ivfunc_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf ivfunc_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf ivfunc_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf ivfunc_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf ivfunc_Up qcd 0.997708 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf ivfunc_Down qcd 1.002291 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf trigger_err_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf trigger_err_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf trigger_err_Up znunu 1.005178 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf trigger_err_Down znunu 0.994366 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf trigger_err_Up ttbarplusw 1.005129 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf trigger_err_Down ttbarplusw 0.994421 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf trigger_err_Up qcd 0.998844 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf trigger_err_Down qcd 1.000974 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf JES_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf JES_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf JES_Up znunu 0.993188 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf JES_Down znunu 0.956654 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf JES_Up ttbarplusw 0.959739 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf JES_Down ttbarplusw 0.886177 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf JES_Up qcd 1.081959 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf JES_Down qcd 1.022582 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf metres_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf metres_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf metres_Up znunu 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf metres_Down znunu 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf metres_Up qcd 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650toinf metres_Down qcd 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_Up Rare 1.016872 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_Down Rare 0.970389 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_Up znunu 1.007727 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_Down znunu 0.992809 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_Up ttbarplusw 1.022096 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_Down ttbarplusw 0.980228 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_Up qcd 0.995183 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_Down qcd 1.005501 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_Up Rare 1.014319 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_Down Rare 0.984276 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_Up znunu 1.058879 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_Down znunu 0.940288 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_Up ttbarplusw 1.054909 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_Down ttbarplusw 0.943628 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_Up qcd 1.041627 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_Down qcd 0.956529 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restoptag_Up qcd 0.998609 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restoptag_Down qcd 1.001395 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_Up qcd 0.999102 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_Down qcd 1.000896 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_Up qcd 0.999004 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_Down qcd 1.000998 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_Up qcd 0.997611 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_Down qcd 1.002387 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_Up Rare 1.003783 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_Down Rare 0.996084 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_Up znunu 1.003727 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_Down znunu 0.996150 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_Up ttbarplusw 1.003666 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_Down ttbarplusw 0.996218 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_Up qcd 0.997420 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_Down qcd 1.002739 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_Up Rare 0.886974 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_Down Rare 0.998299 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_Up znunu 1.040045 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_Down znunu 0.911516 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_Up ttbarplusw 1.007044 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_Down ttbarplusw 0.944985 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_Up qcd 1.012298 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_Down qcd 0.823126 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 metres_Up Rare 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 metres_Down Rare 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 metres_Up znunu 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 metres_Down znunu 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 metres_Up qcd 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 metres_Down qcd 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf PU_Weight_Up Rare 1.001026 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf PU_Weight_Down Rare 0.996370 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf PU_Weight_Up znunu 1.008912 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf PU_Weight_Down znunu 0.988226 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf PU_Weight_Up ttbarplusw 1.010152 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf PU_Weight_Down ttbarplusw 0.991300 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf PU_Weight_Up qcd 1.038862 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf PU_Weight_Down qcd 0.955392 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf b_Up Rare 1.050436 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf b_Down Rare 0.948094 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf b_Up znunu 1.058057 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf b_Down znunu 0.940387 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf b_Up ttbarplusw 1.057393 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf b_Down ttbarplusw 0.941684 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf b_Up qcd 1.059401 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf b_Down qcd 0.939464 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf eff_restoptag_Up qcd 0.998424 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf eff_restoptag_Down qcd 1.001579 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf eff_toptag_Up qcd 0.999409 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf eff_toptag_Down qcd 1.000591 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf eff_wtag_Up qcd 0.998547 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf eff_wtag_Down qcd 1.001456 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf ivfunc_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf ivfunc_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf ivfunc_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf ivfunc_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf ivfunc_Up qcd 0.997987 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf ivfunc_Down qcd 1.002012 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf trigger_err_Up Rare 1.004112 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf trigger_err_Down Rare 0.995629 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf trigger_err_Up znunu 1.004354 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf trigger_err_Down znunu 0.995406 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf trigger_err_Up ttbarplusw 1.004305 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf trigger_err_Down ttbarplusw 0.995474 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf trigger_err_Up qcd 0.997722 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf trigger_err_Down qcd 1.002314 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf JES_Up Rare 0.796525 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf JES_Down Rare 0.910492 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf JES_Up znunu 1.120112 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf JES_Down znunu 0.954836 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf JES_Up ttbarplusw 1.420693 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf JES_Down ttbarplusw 0.727790 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf JES_Up qcd 1.007122 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf JES_Down qcd 1.487580 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf metres_Up Rare 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf metres_Down Rare 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf metres_Up znunu 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf metres_Down znunu 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf metres_Up qcd 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400toinf metres_Down qcd 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_Up Rare 1.131613 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_Down Rare 0.887210 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_Up znunu 1.008089 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_Down znunu 0.994052 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_Up ttbarplusw 0.978097 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_Down ttbarplusw 1.022993 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_Up qcd 0.992906 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_Down qcd 1.008622 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_Up Rare 1.002784 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_Down Rare 0.996722 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_Up znunu 1.027046 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_Down znunu 0.972419 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_Up ttbarplusw 1.033344 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_Down ttbarplusw 0.966158 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_Up qcd 1.020626 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_Down qcd 0.979018 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restoptag_Up qcd 0.998458 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restoptag_Down qcd 1.001546 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_Up qcd 0.999279 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_Down qcd 1.000720 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_Up qcd 0.998885 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_Down qcd 1.001117 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_Up qcd 0.997579 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_Down qcd 1.002418 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_Up Rare 1.003471 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_Down Rare 0.996457 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_Up znunu 1.003683 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_Down znunu 0.996199 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_Up ttbarplusw 1.003621 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_Down ttbarplusw 0.996265 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_Up qcd 0.997146 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_Down qcd 1.003018 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_Up Rare 0.977343 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_Down Rare 0.287652 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_Up znunu 1.034098 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_Down znunu 0.957625 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_Up ttbarplusw 1.041758 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_Down ttbarplusw 0.986053 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_Up qcd 1.013958 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_Down qcd 1.049439 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 metres_Up Rare 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 metres_Down Rare 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 metres_Up znunu 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 metres_Down znunu 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 metres_Up qcd 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 metres_Down qcd 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf PU_Weight_Up Rare 1.004472 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf PU_Weight_Down Rare 0.996087 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf PU_Weight_Up znunu 1.007143 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf PU_Weight_Down znunu 0.988101 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf PU_Weight_Up ttbarplusw 0.994677 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf PU_Weight_Down ttbarplusw 1.004006 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf PU_Weight_Up qcd 1.013266 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf PU_Weight_Down qcd 0.990006 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf b_Up Rare 1.057668 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf b_Down Rare 0.942128 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf b_Up znunu 1.025522 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf b_Down znunu 0.974272 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf b_Up ttbarplusw 1.033894 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf b_Down ttbarplusw 0.965848 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf b_Up qcd 1.014704 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf b_Down qcd 0.984923 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf eff_restoptag_Up qcd 0.998196 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf eff_restoptag_Down qcd 1.001810 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf eff_toptag_Up qcd 0.999286 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf eff_toptag_Down qcd 1.000713 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf eff_wtag_Up qcd 0.998668 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf eff_wtag_Down qcd 1.001335 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf ivfunc_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf ivfunc_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf ivfunc_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf ivfunc_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf ivfunc_Up qcd 0.997402 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf ivfunc_Down qcd 1.002597 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf trigger_err_Up Rare 1.003993 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf trigger_err_Down Rare 0.995847 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf trigger_err_Up znunu 1.004352 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf trigger_err_Down znunu 0.995406 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf trigger_err_Up ttbarplusw 1.004154 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf trigger_err_Down ttbarplusw 0.995631 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf trigger_err_Up qcd 0.997098 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf trigger_err_Down qcd 1.002990 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf JES_Up Rare 2.337654 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf JES_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf JES_Up znunu 1.213681 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf JES_Down znunu 0.866055 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf JES_Up ttbarplusw 1.022645 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf JES_Down ttbarplusw 0.969525 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf JES_Up qcd 0.978497 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf JES_Down qcd 0.910436 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf metres_Up Rare 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf metres_Down Rare 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf metres_Up znunu 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf metres_Down znunu 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf metres_Up qcd 0.000000 +bin_qcdcr_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400toinf metres_Down qcd 0.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PU_Weight_Up Rare 0.956054 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PU_Weight_Down Rare 1.039759 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PU_Weight_Up znunu 1.001632 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PU_Weight_Down znunu 0.996572 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PU_Weight_Up ttbarplusw 1.029988 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PU_Weight_Down ttbarplusw 0.971668 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PU_Weight_Up qcd 0.977535 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PU_Weight_Down qcd 1.022288 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_Up Rare 0.994543 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_Down Rare 1.002728 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_Up znunu 1.041243 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_Down znunu 0.958324 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_Up ttbarplusw 1.038249 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_Down ttbarplusw 0.959469 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_Up qcd 1.023964 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_Down qcd 0.974005 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restoptag_Up qcd 0.998750 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restoptag_Down qcd 1.001254 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_Up qcd 0.999358 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_Down qcd 1.000643 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_Up qcd 0.999544 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_Down qcd 1.000456 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_Up Rare 1.034532 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_Down Rare 0.965468 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_Up znunu 1.052005 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_Down znunu 0.948219 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_Up ttbarplusw 1.050090 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_Down ttbarplusw 0.950019 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_Up qcd 1.047997 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_Down qcd 0.951808 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_Up Rare 1.003470 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_Down Rare 0.996464 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_Up znunu 1.003664 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_Down znunu 0.996214 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_Up ttbarplusw 1.003659 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_Down ttbarplusw 0.996223 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_Up qcd 0.997602 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_Down qcd 1.002521 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_Up Rare 0.956192 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_Down Rare 1.170514 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_Up znunu 1.440169 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_Down znunu 1.013729 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_Up ttbarplusw 1.227030 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_Down ttbarplusw 0.863061 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_Up qcd 1.366306 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_Down qcd 1.051287 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 metres_Up Rare 0.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 metres_Down Rare 0.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 metres_Up znunu 0.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 metres_Down znunu 0.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 metres_Up qcd 0.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 metres_Down qcd 0.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf PU_Weight_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf PU_Weight_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf PU_Weight_Up znunu 1.011863 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf PU_Weight_Down znunu 0.987278 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf PU_Weight_Up ttbarplusw 1.007165 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf PU_Weight_Down ttbarplusw 0.994017 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf PU_Weight_Up qcd 1.010441 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf PU_Weight_Down qcd 0.987201 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf b_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf b_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf b_Up znunu 1.039795 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf b_Down znunu 0.959791 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf b_Up ttbarplusw 1.084303 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf b_Down ttbarplusw 0.914958 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf b_Up qcd 1.021402 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf b_Down qcd 0.977749 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf eff_restoptag_Up qcd 0.998446 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf eff_restoptag_Down qcd 1.001559 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf eff_toptag_Up qcd 0.999293 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf eff_toptag_Down qcd 1.000707 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf eff_wtag_Up qcd 0.999184 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf eff_wtag_Down qcd 1.000817 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf ivfunc_Up znunu 1.050192 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf ivfunc_Down znunu 0.949808 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf ivfunc_Up ttbarplusw 1.053257 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf ivfunc_Down ttbarplusw 0.946759 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf ivfunc_Up qcd 1.050840 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf ivfunc_Down qcd 0.949168 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf trigger_err_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf trigger_err_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf trigger_err_Up znunu 1.004524 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf trigger_err_Down znunu 0.995179 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf trigger_err_Up ttbarplusw 1.004521 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf trigger_err_Down ttbarplusw 0.995178 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf trigger_err_Up qcd 0.998076 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf trigger_err_Down qcd 1.001922 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf JES_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf JES_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf JES_Up znunu 1.322135 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf JES_Down znunu 0.993092 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf JES_Up ttbarplusw 1.167312 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf JES_Down ttbarplusw 1.025509 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf JES_Up qcd 1.080341 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf JES_Down qcd 1.015833 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf metres_Up Rare 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf metres_Down Rare 1.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf metres_Up znunu 0.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf metres_Down znunu 0.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf metres_Up qcd 0.000000 +bin_qcdcr_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400toinf metres_Down qcd 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_Up Rare 0.955826 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_Down Rare 1.053584 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_Up znunu 1.028829 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_Down znunu 0.957916 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_Up ttbarplusw 1.035162 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_Down ttbarplusw 0.988432 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_Up qcd 1.020135 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_Down qcd 0.981920 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_Up Rare 1.129674 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_Down Rare 0.875378 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_Up znunu 1.043651 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_Down znunu 0.955925 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_Up ttbarplusw 1.051717 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_Down ttbarplusw 0.949267 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_Up qcd 1.048946 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_Down qcd 0.951042 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restoptag_Up qcd 0.999275 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restoptag_Down qcd 1.000726 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_Up qcd 0.999417 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_Down qcd 1.000584 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_Up qcd 0.999609 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_Down qcd 1.000391 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_Up ttbarplusw 1.000025 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_Down ttbarplusw 0.999975 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_Up qcd 1.000922 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_Down qcd 0.999069 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_Up Rare 1.004869 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_Down Rare 0.994777 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_Up znunu 1.004055 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_Down znunu 0.995729 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_Up ttbarplusw 1.004183 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_Down ttbarplusw 0.995579 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_Up qcd 0.998700 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_Down qcd 1.001227 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_Up Rare 1.009548 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_Down Rare 1.065821 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_Down znunu 0.715590 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_Up ttbarplusw 0.998120 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_Down ttbarplusw 0.990410 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_Up qcd 0.999087 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_Down qcd 1.040922 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 metres_Up Rare 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 metres_Down Rare 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 metres_Up znunu 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 metres_Down znunu 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 metres_Up qcd 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 metres_Down qcd 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf PU_Weight_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf PU_Weight_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf PU_Weight_Up znunu 1.107486 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf PU_Weight_Down znunu 0.890830 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf PU_Weight_Up ttbarplusw 0.988646 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf PU_Weight_Down ttbarplusw 1.003530 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf PU_Weight_Up qcd 1.001736 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf PU_Weight_Down qcd 0.996834 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf b_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf b_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf b_Up znunu 1.059835 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf b_Down znunu 0.942089 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf b_Up ttbarplusw 1.097308 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf b_Down ttbarplusw 0.908180 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf b_Up qcd 1.086141 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf b_Down qcd 0.916274 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf eff_restoptag_Up qcd 0.999184 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf eff_restoptag_Down qcd 1.000818 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf eff_toptag_Up qcd 0.999097 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf eff_toptag_Down qcd 1.000903 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf eff_wtag_Up qcd 0.998765 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf eff_wtag_Down qcd 1.001237 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf ivfunc_Up znunu 1.019789 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf ivfunc_Down znunu 0.980211 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf ivfunc_Up ttbarplusw 1.000075 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf ivfunc_Down ttbarplusw 0.999925 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf ivfunc_Up qcd 0.999352 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf ivfunc_Down qcd 1.000643 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf trigger_err_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf trigger_err_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf trigger_err_Up znunu 1.004715 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf trigger_err_Down znunu 0.994877 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf trigger_err_Up ttbarplusw 1.004266 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf trigger_err_Down ttbarplusw 0.995386 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf trigger_err_Up qcd 0.999620 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf trigger_err_Down qcd 1.000159 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf JES_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf JES_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf JES_Up znunu 1.082357 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf JES_Down znunu 1.263601 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf JES_Up ttbarplusw 1.002114 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf JES_Down ttbarplusw 0.999912 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf JES_Up qcd 0.926152 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf JES_Down qcd 0.986424 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf metres_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf metres_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf metres_Up znunu 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf metres_Down znunu 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf metres_Up qcd 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550toinf metres_Down qcd 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf PU_Weight_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf PU_Weight_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf PU_Weight_Up znunu 0.970041 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf PU_Weight_Down znunu 1.032898 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf PU_Weight_Up ttbarplusw 1.019124 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf PU_Weight_Down ttbarplusw 0.981527 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf PU_Weight_Up qcd 0.997931 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf PU_Weight_Down qcd 1.008202 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf b_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf b_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf b_Up znunu 1.107506 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf b_Down znunu 0.898692 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf b_Up ttbarplusw 1.105072 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf b_Down ttbarplusw 0.900744 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf b_Up qcd 1.117459 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf b_Down qcd 0.890536 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf eff_restoptag_Up qcd 0.998512 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf eff_restoptag_Down qcd 1.001491 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf eff_toptag_Up qcd 0.999154 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf eff_toptag_Down qcd 1.000844 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf eff_wtag_Up qcd 0.998614 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf eff_wtag_Down qcd 1.001389 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf ivfunc_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf ivfunc_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf ivfunc_Up ttbarplusw 1.010930 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf ivfunc_Down ttbarplusw 0.989138 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf ivfunc_Up qcd 1.003467 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf ivfunc_Down qcd 0.996494 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf trigger_err_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf trigger_err_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf trigger_err_Up znunu 1.004988 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf trigger_err_Down znunu 0.994586 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf trigger_err_Up ttbarplusw 1.004874 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf trigger_err_Down ttbarplusw 0.994749 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf trigger_err_Up qcd 0.998416 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf trigger_err_Down qcd 1.001521 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf JES_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf JES_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf JES_Up znunu 1.000429 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf JES_Down znunu 0.899671 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf JES_Up ttbarplusw 4.169486 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf JES_Down ttbarplusw 1.010834 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf JES_Up qcd 1.134299 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf JES_Down qcd 1.072820 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf metres_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf metres_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf metres_Up znunu 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf metres_Down znunu 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf metres_Up qcd 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450toinf metres_Down qcd 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf PU_Weight_Up Rare 1.068357 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf PU_Weight_Down Rare 0.936017 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf PU_Weight_Up znunu 0.999036 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf PU_Weight_Down znunu 1.000317 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf PU_Weight_Up ttbarplusw 0.974403 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf PU_Weight_Down ttbarplusw 1.027538 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf PU_Weight_Up qcd 0.997125 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf PU_Weight_Down qcd 1.000409 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf b_Up Rare 1.025380 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf b_Down Rare 0.973828 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf b_Up znunu 1.060746 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf b_Down znunu 0.940610 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf b_Up ttbarplusw 1.043235 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf b_Down ttbarplusw 0.953809 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf b_Up qcd 1.053616 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf b_Down qcd 0.946457 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf eff_restoptag_Up qcd 0.998770 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf eff_restoptag_Down qcd 1.001233 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf eff_toptag_Up qcd 0.999245 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf eff_toptag_Down qcd 1.000754 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf eff_wtag_Up qcd 0.998769 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf eff_wtag_Down qcd 1.001234 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf ivfunc_Up znunu 1.002148 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf ivfunc_Down znunu 0.997852 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf ivfunc_Up ttbarplusw 1.000534 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf ivfunc_Down ttbarplusw 0.999467 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf ivfunc_Up qcd 1.005848 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf ivfunc_Down qcd 0.994116 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf trigger_err_Up Rare 1.004742 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf trigger_err_Down Rare 0.994916 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf trigger_err_Up znunu 1.004910 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf trigger_err_Down znunu 0.994700 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf trigger_err_Up ttbarplusw 1.004670 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf trigger_err_Down ttbarplusw 0.995023 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf trigger_err_Up qcd 0.998806 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf trigger_err_Down qcd 1.001073 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf JES_Up Rare 0.935695 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf JES_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf JES_Up znunu 0.984657 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf JES_Down znunu 0.987582 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf JES_Up ttbarplusw 1.007958 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf JES_Down ttbarplusw 1.001241 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf JES_Up qcd 1.013755 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf JES_Down qcd 0.901580 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf metres_Up Rare 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf metres_Down Rare 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf metres_Up znunu 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf metres_Down znunu 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf metres_Up qcd 0.000000 +bin_qcdcr_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450toinf metres_Down qcd 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_Up znunu 0.992147 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_Down znunu 1.004702 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_Up ttbarplusw 0.965522 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_Down ttbarplusw 1.029963 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_Up qcd 1.026459 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_Down qcd 0.941288 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_Up znunu 1.035187 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_Down znunu 0.965907 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_Up ttbarplusw 1.030929 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_Down ttbarplusw 0.969507 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_Up qcd 1.019913 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_Down qcd 0.979815 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restoptag_Up qcd 0.998981 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restoptag_Down qcd 1.001024 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_Up qcd 0.998752 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_Down qcd 1.001245 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_Up qcd 0.999417 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_Down qcd 1.000583 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_Up qcd 0.997458 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_Down qcd 1.002542 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_Up znunu 1.003680 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_Down znunu 0.996199 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_Up ttbarplusw 1.003930 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_Down ttbarplusw 0.995942 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_Up qcd 0.999030 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_Down qcd 1.001013 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_Up znunu 1.053714 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_Down znunu 0.680035 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_Up ttbarplusw 1.009905 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_Up qcd 0.935751 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_Down qcd 1.047519 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 metres_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 metres_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 metres_Up znunu 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 metres_Down znunu 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 metres_Up qcd 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 metres_Down qcd 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf PU_Weight_Up Rare 1.067616 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf PU_Weight_Down Rare 0.924264 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf PU_Weight_Up znunu 1.028451 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf PU_Weight_Down znunu 1.016972 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf PU_Weight_Up ttbarplusw 0.888811 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf PU_Weight_Down ttbarplusw 1.117667 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf PU_Weight_Up qcd 0.994734 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf PU_Weight_Down qcd 1.010459 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf b_Up Rare 1.066149 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf b_Down Rare 0.932298 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf b_Up znunu 1.084781 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf b_Down znunu 0.917847 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf b_Up ttbarplusw 1.037366 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf b_Down ttbarplusw 0.963708 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf b_Up qcd 1.107471 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf b_Down qcd 0.898772 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf eff_restoptag_Up qcd 0.999211 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf eff_restoptag_Down qcd 1.000789 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf eff_toptag_Up qcd 0.999538 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf eff_toptag_Down qcd 1.000464 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf eff_wtag_Up qcd 0.998175 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf eff_wtag_Down qcd 1.001829 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf ivfunc_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf ivfunc_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf ivfunc_Up ttbarplusw 1.013296 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf ivfunc_Down ttbarplusw 0.986704 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf ivfunc_Up qcd 0.998544 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf ivfunc_Down qcd 1.001458 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf trigger_err_Up Rare 1.004957 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf trigger_err_Down Rare 0.994624 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf trigger_err_Up znunu 1.004433 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf trigger_err_Down znunu 0.995342 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf trigger_err_Up ttbarplusw 1.003971 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf trigger_err_Down ttbarplusw 0.995879 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf trigger_err_Up qcd 0.998444 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf trigger_err_Down qcd 1.001522 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf JES_Up Rare 1.488966 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf JES_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf JES_Up znunu 1.196112 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf JES_Down znunu 0.735971 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf JES_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf JES_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf JES_Up qcd 1.149483 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf JES_Down qcd 0.990532 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf metres_Up Rare 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf metres_Down Rare 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf metres_Up znunu 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf metres_Down znunu 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf metres_Up qcd 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400toinf metres_Down qcd 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf PU_Weight_Up Rare 1.054279 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf PU_Weight_Down Rare 0.944820 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf PU_Weight_Up znunu 1.005292 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf PU_Weight_Down znunu 0.994672 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf PU_Weight_Up ttbarplusw 0.925078 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf PU_Weight_Down ttbarplusw 1.081525 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf PU_Weight_Up qcd 1.037832 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf PU_Weight_Down qcd 0.968569 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf b_Up Rare 1.046709 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf b_Down Rare 0.951309 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf b_Up znunu 1.083102 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf b_Down znunu 0.919888 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf b_Up ttbarplusw 1.074401 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf b_Down ttbarplusw 0.929150 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf b_Up qcd 1.112621 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf b_Down qcd 0.882355 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf eff_restoptag_Up qcd 0.998880 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf eff_restoptag_Down qcd 1.001124 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf eff_toptag_Up qcd 0.999251 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf eff_toptag_Down qcd 1.000750 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf eff_wtag_Up qcd 0.999483 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf eff_wtag_Down qcd 1.000518 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf ivfunc_Up znunu 1.003645 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf ivfunc_Down znunu 0.996355 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf ivfunc_Up ttbarplusw 1.001880 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf ivfunc_Down ttbarplusw 0.998120 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf ivfunc_Up qcd 0.997746 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf ivfunc_Down qcd 1.002248 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf trigger_err_Up Rare 1.004045 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf trigger_err_Down Rare 0.995790 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf trigger_err_Up znunu 1.003763 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf trigger_err_Down znunu 0.996099 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf trigger_err_Up ttbarplusw 1.003608 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf trigger_err_Down ttbarplusw 0.996274 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf trigger_err_Up qcd 0.996898 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf trigger_err_Down qcd 1.003297 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf JES_Up Rare 0.962671 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf JES_Down Rare 0.772254 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf JES_Up znunu 1.083373 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf JES_Down znunu 0.816087 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf JES_Up ttbarplusw 0.930996 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf JES_Down ttbarplusw 0.313274 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf JES_Up qcd 1.177171 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf JES_Down qcd 0.764393 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf metres_Up Rare 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf metres_Down Rare 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf metres_Up znunu 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf metres_Down znunu 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf metres_Up qcd 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300toinf metres_Down qcd 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_Up Rare 1.059541 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_Down Rare 0.940729 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_Up znunu 0.990155 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_Down znunu 1.004383 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_Up ttbarplusw 1.012765 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_Down ttbarplusw 0.982733 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_Up qcd 0.982878 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_Down qcd 1.019365 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_Up Rare 1.014623 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_Down Rare 0.982622 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_Up znunu 1.050278 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_Down znunu 0.949882 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_Up ttbarplusw 1.090045 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_Down ttbarplusw 0.910859 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_Up qcd 1.044314 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_Down qcd 0.954872 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restoptag_Up qcd 0.998655 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restoptag_Down qcd 1.001349 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_Up qcd 0.999441 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_Down qcd 1.000559 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_Up qcd 0.999446 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_Down qcd 1.000554 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_Up Rare 1.026034 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_Down Rare 0.973966 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_Up znunu 1.000493 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_Down znunu 0.999507 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_Up ttbarplusw 1.000009 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_Down ttbarplusw 0.999991 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_Up qcd 0.997925 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_Down qcd 1.002075 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_Up Rare 1.003577 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_Down Rare 0.996329 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_Up znunu 1.003758 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_Down znunu 0.996117 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_Up ttbarplusw 1.003585 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_Down ttbarplusw 0.996332 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_Up qcd 0.997253 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_Down qcd 1.002885 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_Up Rare 0.872480 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_Down Rare 0.964337 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_Up znunu 1.013281 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_Down znunu 0.892168 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_Up ttbarplusw 0.948605 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_Down ttbarplusw 1.010542 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_Up qcd 1.013684 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_Down qcd 0.866335 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 metres_Up Rare 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 metres_Down Rare 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 metres_Up znunu 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 metres_Down znunu 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 metres_Up qcd 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 metres_Down qcd 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf PU_Weight_Up Rare 1.161790 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf PU_Weight_Down Rare 0.872654 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf PU_Weight_Up znunu 0.976656 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf PU_Weight_Down znunu 1.021570 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf PU_Weight_Up ttbarplusw 1.026800 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf PU_Weight_Down ttbarplusw 0.984555 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf PU_Weight_Up qcd 0.985856 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf PU_Weight_Down qcd 1.012020 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf b_Up Rare 1.022894 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf b_Down Rare 0.977205 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf b_Up znunu 1.050912 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf b_Down znunu 0.950717 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf b_Up ttbarplusw 1.160871 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf b_Down ttbarplusw 0.852516 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf b_Up qcd 1.043357 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf b_Down qcd 0.957160 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf eff_restoptag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf eff_restoptag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf eff_restoptag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf eff_restoptag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf eff_restoptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf eff_restoptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf eff_restoptag_Up qcd 0.998393 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf eff_restoptag_Down qcd 1.001615 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf eff_toptag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf eff_toptag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf eff_toptag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf eff_toptag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf eff_toptag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf eff_toptag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf eff_toptag_Up qcd 0.999337 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf eff_toptag_Down qcd 1.000663 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf eff_wtag_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf eff_wtag_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf eff_wtag_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf eff_wtag_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf eff_wtag_Up ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf eff_wtag_Down ttbarplusw 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf eff_wtag_Up qcd 0.999520 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf eff_wtag_Down qcd 1.000481 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf ivfunc_Up Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf ivfunc_Down Rare 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf ivfunc_Up znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf ivfunc_Down znunu 1.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf ivfunc_Up ttbarplusw 1.003343 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf ivfunc_Down ttbarplusw 0.996657 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf ivfunc_Up qcd 1.003332 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf ivfunc_Down qcd 0.996917 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf trigger_err_Up Rare 1.004102 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf trigger_err_Down Rare 0.995726 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf trigger_err_Up znunu 1.004404 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf trigger_err_Down znunu 0.995345 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf trigger_err_Up ttbarplusw 1.004006 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf trigger_err_Down ttbarplusw 0.995814 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf trigger_err_Up qcd 0.997356 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf trigger_err_Down qcd 1.002703 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf JES_Up Rare 1.923913 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf JES_Down Rare 1.271888 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf JES_Up znunu 0.799010 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf JES_Down znunu 0.901423 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf JES_Up ttbarplusw 1.219422 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf JES_Down ttbarplusw 0.543273 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf JES_Up qcd 0.947280 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf JES_Down qcd 1.054447 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf metres_Up Rare 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf metres_Down Rare 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf metres_Up znunu 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf metres_Down znunu 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf metres_Up ttbarplusw 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf metres_Down ttbarplusw 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf metres_Up qcd 0.000000 +bin_qcdcr_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400toinf metres_Down qcd 0.000000 diff --git a/Datacards/setup/SUSYNano19/values_unc_qcd_sb.conf b/Datacards/setup/SUSYNano19/values_unc_qcd_sb.conf new file mode 100644 index 0000000..2c674ae --- /dev/null +++ b/Datacards/setup/SUSYNano19/values_unc_qcd_sb.conf @@ -0,0 +1,3294 @@ +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_Up qcd 1.002816 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_Down qcd 0.996345 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_Up qcd 1.023986 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_Down qcd 0.972793 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restoptag_Up qcd 0.999123 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restoptag_Down qcd 1.000878 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_Up qcd 0.999301 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_Down qcd 1.000699 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_Up qcd 0.999531 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_Down qcd 1.000470 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_Up qcd 1.005726 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_Down qcd 0.994231 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_Up qcd 0.996333 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_Down qcd 1.003733 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_Up qcd 0.956140 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_Down qcd 0.994933 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_Up qcd 1.063169 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_Down qcd 0.992671 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_Up qcd 1.025799 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_Down qcd 0.973334 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_Up qcd 1.038184 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_Down qcd 0.959526 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restoptag_Up qcd 0.999092 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restoptag_Down qcd 1.000909 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_Up qcd 0.999246 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_Down qcd 1.000753 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_Up qcd 0.999542 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_Down qcd 1.000458 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_Up qcd 1.001648 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_Down qcd 0.998349 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_Up qcd 0.995722 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_Down qcd 1.004300 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_Up qcd 0.950721 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_Down qcd 0.961315 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_Up qcd 1.006319 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_Down qcd 0.962659 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_Up qcd 1.014980 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_Down qcd 0.986973 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_Up qcd 1.033154 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_Down qcd 0.965176 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restoptag_Up qcd 0.999486 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restoptag_Down qcd 1.000516 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_Up qcd 0.999298 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_Down qcd 1.000702 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_Up qcd 0.999538 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_Down qcd 1.000461 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_Up qcd 1.000439 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_Down qcd 0.999616 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_Up qcd 0.995599 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_Down qcd 1.004198 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_Up qcd 1.384445 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_Down qcd 0.835690 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_Up qcd 1.001142 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_Down qcd 1.108159 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_Up qcd 1.016189 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_Down qcd 0.987558 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_Up qcd 1.027332 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_Down qcd 0.971429 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restoptag_Up qcd 0.999026 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restoptag_Down qcd 1.000976 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_Up qcd 0.999446 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_Down qcd 1.000555 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_Up qcd 0.999112 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_Down qcd 1.000889 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_Up qcd 1.001659 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_Down qcd 0.998374 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_Up qcd 0.995347 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_Down qcd 1.004152 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_Up qcd 0.995839 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_Down qcd 0.999899 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_Up qcd 1.008049 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_Down qcd 1.007263 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PU_Weight_Up qcd 0.969247 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PU_Weight_Down qcd 1.030617 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 b_Up qcd 1.055850 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 b_Down qcd 0.940917 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_restoptag_Up qcd 0.999490 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_restoptag_Down qcd 1.000511 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_toptag_Up qcd 0.999607 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_toptag_Down qcd 1.000393 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_wtag_Up qcd 1.118510 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_wtag_Down qcd 0.881399 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ivfunc_Up qcd 0.999591 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ivfunc_Down qcd 1.000408 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 trigger_err_Up qcd 0.996352 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 trigger_err_Down qcd 1.003604 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 JES_Up qcd 1.101373 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 JES_Down qcd 1.157495 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 metres_Up qcd 1.206660 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 metres_Down qcd 0.977547 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PU_Weight_Up qcd 1.031387 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PU_Weight_Down qcd 0.971279 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 b_Up qcd 0.992125 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 b_Down qcd 1.007669 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_restoptag_Up qcd 0.999664 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_restoptag_Down qcd 1.000343 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_toptag_Up qcd 0.999179 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_toptag_Down qcd 1.000823 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_wtag_Up qcd 1.037698 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_wtag_Down qcd 0.962242 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ivfunc_Up qcd 0.997567 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ivfunc_Down qcd 1.002434 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 trigger_err_Up qcd 0.995395 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 trigger_err_Down qcd 1.004715 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 JES_Up qcd 0.993067 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 JES_Down qcd 0.958172 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 metres_Up qcd 0.976447 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 metres_Down qcd 1.024797 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PU_Weight_Up qcd 0.928100 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PU_Weight_Down qcd 1.068885 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf b_Up qcd 1.004058 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf b_Down qcd 0.995759 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_restoptag_Up qcd 0.999217 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_restoptag_Down qcd 1.000782 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_toptag_Up qcd 0.999175 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_toptag_Down qcd 1.000825 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_wtag_Up qcd 1.132793 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_wtag_Down qcd 0.866179 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ivfunc_Up qcd 0.999200 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ivfunc_Down qcd 1.000800 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf trigger_err_Up qcd 0.998542 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf trigger_err_Down qcd 1.000880 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf JES_Up qcd 1.431682 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf JES_Down qcd 1.026294 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf metres_Up qcd 1.020529 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf metres_Down qcd 0.982115 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PU_Weight_Up qcd 0.995867 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PU_Weight_Down qcd 1.017726 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 b_Up qcd 1.017003 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 b_Down qcd 0.982250 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_restoptag_Up qcd 0.999368 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_restoptag_Down qcd 1.000630 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_toptag_Up qcd 0.998623 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_toptag_Down qcd 1.001373 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_wtag_Up qcd 1.106493 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_wtag_Down qcd 0.892843 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ivfunc_Up qcd 0.998337 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ivfunc_Down qcd 1.001661 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 trigger_err_Up qcd 0.996913 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 trigger_err_Down qcd 1.003117 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 JES_Up qcd 2.483456 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 JES_Down qcd 0.963615 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 metres_Up qcd 1.015001 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 metres_Down qcd 0.974104 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PU_Weight_Up qcd 0.960270 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PU_Weight_Down qcd 1.037424 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 b_Up qcd 1.028292 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 b_Down qcd 0.971152 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_restoptag_Up qcd 0.999299 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_restoptag_Down qcd 1.000704 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_toptag_Up qcd 0.999480 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_toptag_Down qcd 1.000520 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_wtag_Up qcd 1.116295 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_wtag_Down qcd 0.883524 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ivfunc_Up qcd 0.998833 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ivfunc_Down qcd 1.001164 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 trigger_err_Up qcd 0.996100 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 trigger_err_Down qcd 1.003788 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 JES_Up qcd 0.757003 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 JES_Down qcd 1.059408 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 metres_Up qcd 1.026516 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 metres_Down qcd 0.984100 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PU_Weight_Up qcd 1.006569 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PU_Weight_Down qcd 0.987893 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf b_Up qcd 1.026343 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf b_Down qcd 0.973372 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_restoptag_Up qcd 0.999153 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_restoptag_Down qcd 1.000846 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_toptag_Up qcd 0.999366 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_toptag_Down qcd 1.000634 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_wtag_Up qcd 1.135053 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_wtag_Down qcd 0.864240 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ivfunc_Up qcd 0.999282 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ivfunc_Down qcd 1.000718 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf trigger_err_Up qcd 0.997910 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf trigger_err_Down qcd 1.001559 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf JES_Up qcd 1.306138 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf JES_Down qcd 1.077869 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf metres_Up qcd 1.007519 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf metres_Down qcd 0.989972 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Up qcd 1.022545 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Down qcd 0.994910 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 b_Up qcd 1.005749 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 b_Down qcd 0.993738 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Up qcd 1.181832 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Down qcd 0.817703 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Up qcd 0.999606 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Down qcd 1.000397 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Up qcd 0.999920 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Down qcd 1.000079 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Up qcd 0.998360 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Down qcd 1.001642 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Up qcd 0.996521 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Down qcd 1.003486 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 JES_Up qcd 1.082058 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 JES_Down qcd 1.080851 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 metres_Up qcd 1.125888 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 metres_Down qcd 1.010738 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_Up qcd 1.059022 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_Down qcd 0.933546 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 b_Up qcd 0.952466 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 b_Down qcd 1.049647 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_restoptag_Up qcd 1.130717 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_restoptag_Down qcd 0.868821 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_Up qcd 0.999200 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_Down qcd 1.000799 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_Up qcd 0.997758 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_Down qcd 1.002245 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ivfunc_Up qcd 0.998340 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ivfunc_Down qcd 1.001659 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 trigger_err_Up qcd 0.996103 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 trigger_err_Down qcd 1.003895 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 JES_Up qcd 0.965978 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 JES_Down qcd 0.957233 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 metres_Up qcd 1.073166 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 metres_Down qcd 0.908811 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_Up qcd 1.076606 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_Down qcd 0.940668 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 b_Up qcd 1.019226 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 b_Down qcd 0.979562 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_restoptag_Up qcd 1.127140 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_restoptag_Down qcd 0.872200 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_Up qcd 0.998703 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_Down qcd 1.001293 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_Up qcd 0.999128 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_Down qcd 1.000873 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ivfunc_Up qcd 1.001198 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ivfunc_Down qcd 0.998772 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 trigger_err_Up qcd 0.996179 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 trigger_err_Down qcd 1.003588 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 JES_Up qcd 0.999342 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 JES_Down qcd 1.277810 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 metres_Up qcd 0.982868 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 metres_Down qcd 1.138789 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Up qcd 0.949186 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Down qcd 1.056498 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 b_Up qcd 0.997732 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 b_Down qcd 1.001983 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Up qcd 1.278833 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Down qcd 0.720616 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Up qcd 0.999234 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Down qcd 1.000766 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Up qcd 0.999575 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Down qcd 1.000426 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ivfunc_Up qcd 1.000085 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ivfunc_Down qcd 0.999901 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 trigger_err_Up qcd 0.994952 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 trigger_err_Down qcd 1.004493 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 JES_Up qcd 0.963320 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 JES_Down qcd 0.410244 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 metres_Up qcd 1.012965 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 metres_Down qcd 0.717641 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Up qcd 0.953717 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Down qcd 1.040967 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf b_Up qcd 1.035301 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf b_Down qcd 0.962963 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Up qcd 1.122777 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Down qcd 0.876653 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Up qcd 0.998820 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Down qcd 1.001180 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Up qcd 0.998763 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Down qcd 1.001239 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ivfunc_Up qcd 1.015436 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ivfunc_Down qcd 0.984454 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf trigger_err_Up qcd 0.996885 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf trigger_err_Down qcd 1.002654 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf JES_Up qcd 0.962671 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf JES_Down qcd 0.858438 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf metres_Up qcd 0.993416 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf metres_Down qcd 0.967413 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PU_Weight_Up qcd 0.971268 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PU_Weight_Down qcd 1.028804 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 b_Up qcd 0.979390 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 b_Down qcd 1.019948 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Up qcd 1.226868 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Down qcd 0.773026 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_toptag_Up qcd 0.999257 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_toptag_Down qcd 1.000746 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_wtag_Up qcd 0.999543 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_wtag_Down qcd 1.000457 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ivfunc_Up qcd 0.999965 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ivfunc_Down qcd 1.000035 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 trigger_err_Up qcd 0.996025 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 trigger_err_Down qcd 1.004128 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 JES_Up qcd 1.398256 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 JES_Down qcd 0.962447 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 metres_Up qcd 1.052535 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 metres_Down qcd 1.624775 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PU_Weight_Up qcd 0.937556 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PU_Weight_Down qcd 1.069054 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 b_Up qcd 0.969486 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 b_Down qcd 1.029916 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_restoptag_Up qcd 1.244566 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_restoptag_Down qcd 0.755275 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_toptag_Up qcd 0.999333 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_toptag_Down qcd 1.000668 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_wtag_Up qcd 0.999171 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_wtag_Down qcd 1.000828 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ivfunc_Up qcd 0.998700 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ivfunc_Down qcd 1.001303 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 trigger_err_Up qcd 0.996144 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 trigger_err_Down qcd 1.003859 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 JES_Up qcd 1.472588 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 JES_Down qcd 0.803419 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 metres_Up qcd 0.689614 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 metres_Down qcd 1.425152 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PU_Weight_Up qcd 1.025033 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PU_Weight_Down qcd 0.968480 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 b_Up qcd 0.997776 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 b_Down qcd 1.000677 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_restoptag_Up qcd 1.190027 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_restoptag_Down qcd 0.809479 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_toptag_Up qcd 0.999426 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_toptag_Down qcd 1.000577 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_wtag_Up qcd 0.999746 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_wtag_Down qcd 1.000253 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ivfunc_Up qcd 0.997763 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ivfunc_Down qcd 1.002239 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 trigger_err_Up qcd 0.994379 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 trigger_err_Down qcd 1.005329 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 JES_Up qcd 0.977122 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 JES_Down qcd 0.848451 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 metres_Up qcd 1.438392 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 metres_Down qcd 1.015629 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PU_Weight_Up qcd 1.148495 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PU_Weight_Down qcd 0.844813 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 b_Up qcd 1.024508 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 b_Down qcd 0.974504 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_restoptag_Up qcd 1.462854 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_restoptag_Down qcd 0.536554 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_toptag_Up qcd 0.999191 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_toptag_Down qcd 1.000809 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_wtag_Up qcd 0.999692 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_wtag_Down qcd 1.000309 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ivfunc_Up qcd 0.998135 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ivfunc_Down qcd 1.001858 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 trigger_err_Up qcd 0.994288 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 trigger_err_Down qcd 1.005149 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 JES_Up qcd 5.641971 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 JES_Down qcd 0.894936 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 metres_Up qcd 3.887404 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 metres_Down qcd 0.976136 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PU_Weight_Up qcd 0.966404 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PU_Weight_Down qcd 1.028803 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf b_Up qcd 0.983281 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf b_Down qcd 1.016085 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_restoptag_Up qcd 1.257866 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_restoptag_Down qcd 0.742027 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_toptag_Up qcd 0.999090 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_toptag_Down qcd 1.000910 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_wtag_Up qcd 0.999072 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_wtag_Down qcd 1.000928 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ivfunc_Up qcd 0.998417 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ivfunc_Down qcd 1.001583 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf trigger_err_Up qcd 0.995569 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf trigger_err_Down qcd 1.003849 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf JES_Up qcd 0.976334 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf JES_Down qcd 0.999678 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf metres_Up qcd 1.019899 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf metres_Down qcd 0.994983 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PU_Weight_Up qcd 1.022604 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PU_Weight_Down qcd 0.981501 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 b_Up qcd 1.012618 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 b_Down qcd 0.986698 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Up qcd 1.084917 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Down qcd 0.914544 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_toptag_Up qcd 0.999287 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_toptag_Down qcd 1.000713 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_wtag_Up qcd 0.999349 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_wtag_Down qcd 1.000652 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ivfunc_Up qcd 0.998339 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ivfunc_Down qcd 1.001660 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 trigger_err_Up qcd 0.996081 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 trigger_err_Down qcd 1.004034 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 JES_Up qcd 1.007492 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 JES_Down qcd 0.951795 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 metres_Up qcd 0.997063 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 metres_Down qcd 0.953878 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PU_Weight_Up qcd 0.982171 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PU_Weight_Down qcd 1.019724 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 b_Up qcd 1.005932 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 b_Down qcd 0.993168 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_restoptag_Up qcd 1.102513 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_restoptag_Down qcd 0.896813 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_toptag_Up qcd 0.999267 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_toptag_Down qcd 1.000732 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_wtag_Up qcd 0.999134 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_wtag_Down qcd 1.000867 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ivfunc_Up qcd 0.998145 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ivfunc_Down qcd 1.001851 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 trigger_err_Up qcd 0.995650 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 trigger_err_Down qcd 1.004390 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 JES_Up qcd 1.200851 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 JES_Down qcd 0.856371 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 metres_Up qcd 0.927648 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 metres_Down qcd 1.208538 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PU_Weight_Up qcd 1.020965 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PU_Weight_Down qcd 0.968924 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 b_Up qcd 1.010093 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 b_Down qcd 0.989211 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_restoptag_Up qcd 1.080350 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_restoptag_Down qcd 0.919204 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_toptag_Up qcd 0.999283 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_toptag_Down qcd 1.000717 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_wtag_Up qcd 0.998931 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_wtag_Down qcd 1.001071 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ivfunc_Up qcd 0.998017 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ivfunc_Down qcd 1.001979 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 trigger_err_Up qcd 0.994940 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 trigger_err_Down qcd 1.004863 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 JES_Up qcd 0.993000 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 JES_Down qcd 0.902561 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 metres_Up qcd 0.995544 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 metres_Down qcd 0.996667 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PU_Weight_Up qcd 0.934587 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PU_Weight_Down qcd 1.086408 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 b_Up qcd 1.107294 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 b_Down qcd 0.893361 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_restoptag_Up qcd 1.091911 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_restoptag_Down qcd 0.907815 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_toptag_Up qcd 0.999219 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_toptag_Down qcd 1.000781 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_wtag_Up qcd 0.997109 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_wtag_Down qcd 1.002897 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ivfunc_Up qcd 0.999600 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ivfunc_Down qcd 1.000399 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 trigger_err_Up qcd 0.997618 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 trigger_err_Down qcd 1.001811 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 JES_Up qcd 0.983646 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 JES_Down qcd 1.044574 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 metres_Up qcd 1.034160 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 metres_Down qcd 0.969692 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PU_Weight_Up qcd 1.400285 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PU_Weight_Down qcd 0.724262 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf b_Up qcd 1.061857 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf b_Down qcd 0.933161 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_restoptag_Up qcd 1.118609 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_restoptag_Down qcd 0.880821 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_toptag_Up qcd 0.999302 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_toptag_Down qcd 1.000697 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_wtag_Up qcd 0.999656 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_wtag_Down qcd 1.000344 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ivfunc_Up qcd 0.997684 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ivfunc_Down qcd 1.002315 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf trigger_err_Up qcd 0.994505 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf trigger_err_Down qcd 1.004948 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf JES_Up qcd 1.108199 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf JES_Down qcd 0.917097 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf metres_Up qcd 0.988522 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf metres_Down qcd 1.025974 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PU_Weight_Up qcd 1.129282 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PU_Weight_Down qcd 0.857712 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 b_Up qcd 1.018102 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 b_Down qcd 0.980128 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_restoptag_Up qcd 1.132377 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_restoptag_Down qcd 0.866812 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_toptag_Up qcd 0.999268 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_toptag_Down qcd 1.000731 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_wtag_Up qcd 1.000130 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_wtag_Down qcd 0.999870 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ivfunc_Up qcd 0.998113 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ivfunc_Down qcd 1.001876 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 trigger_err_Up qcd 0.995736 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 trigger_err_Down qcd 1.004410 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 JES_Up qcd 1.184815 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 JES_Down qcd 0.944238 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 metres_Up qcd 1.788509 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 metres_Down qcd 0.425425 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PU_Weight_Up qcd 1.023541 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PU_Weight_Down qcd 0.969581 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf b_Up qcd 1.038699 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf b_Down qcd 0.961239 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_restoptag_Up qcd 1.253721 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_restoptag_Down qcd 0.745906 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_toptag_Up qcd 0.999138 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_toptag_Down qcd 1.000863 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_wtag_Up qcd 1.162261 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_wtag_Down qcd 0.836434 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ivfunc_Up qcd 0.999150 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ivfunc_Down qcd 1.000851 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf trigger_err_Up qcd 0.998577 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf trigger_err_Down qcd 1.000847 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf JES_Up qcd 0.923628 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf JES_Down qcd 1.024925 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf metres_Up qcd 1.019098 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf metres_Down qcd 0.979764 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_Up qcd 0.292551 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_Down qcd 1.533177 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_Up qcd 1.045077 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_Down qcd 0.942353 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restoptag_Up qcd 0.998100 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restoptag_Down qcd 1.001901 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_Up qcd 1.047086 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_Down qcd 0.952677 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_Up qcd 0.996561 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_Down qcd 1.003446 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_Up qcd 1.018537 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_Down qcd 0.981428 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_Up qcd 0.996529 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_Down qcd 1.003439 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_Up qcd 1.637226 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_Down qcd 1.090025 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_Up qcd 0.733487 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_Down qcd 1.954775 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Up qcd 0.971020 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Down qcd 1.025858 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_Up qcd 1.217938 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_Down qcd 0.777498 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Up qcd 0.999090 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Down qcd 1.000907 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Up qcd 1.052427 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Down qcd 0.947494 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Up qcd 1.000130 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Down qcd 0.999870 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_Up qcd 0.998113 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_Down qcd 1.001876 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_Up qcd 0.993761 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_Down qcd 1.005675 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_Up qcd 0.924649 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_Down qcd 1.103972 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_Up qcd 1.002008 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_Down qcd 0.964105 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Up qcd 1.103483 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Down qcd 0.879978 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_Up qcd 1.012798 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_Down qcd 0.987104 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Up qcd 0.998888 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Down qcd 1.001112 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Up qcd 1.052425 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Down qcd 0.947496 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Up qcd 0.999782 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Down qcd 1.000218 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_Up qcd 0.997776 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_Down qcd 1.002220 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_Up qcd 0.994231 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_Down qcd 1.005216 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_Up qcd 0.923596 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_Down qcd 1.079629 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_Up qcd 1.033909 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_Down qcd 0.989331 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_Up qcd 1.023733 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_Down qcd 0.975972 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 b_Up qcd 1.019695 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 b_Down qcd 0.977495 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restoptag_Up qcd 0.999378 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restoptag_Down qcd 1.000621 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_Up qcd 1.062703 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_Down qcd 0.937192 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_Up qcd 0.999794 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_Down qcd 1.000207 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_Up qcd 0.998175 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_Down qcd 1.001821 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_Up qcd 0.996338 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_Down qcd 1.003734 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 JES_Up qcd 1.047363 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 JES_Down qcd 0.865409 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 metres_Up qcd 1.055547 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 metres_Down qcd 0.962546 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_Up qcd 0.971020 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_Down qcd 1.025858 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 b_Up qcd 0.969609 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 b_Down qcd 1.030042 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restoptag_Up qcd 0.999090 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restoptag_Down qcd 1.000907 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_Up qcd 1.072910 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_Down qcd 0.926982 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_Up qcd 1.000130 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_Down qcd 0.999870 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_Up qcd 0.998113 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_Down qcd 1.001876 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_Up qcd 0.993761 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_Down qcd 1.005675 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 JES_Up qcd 0.924649 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 JES_Down qcd 1.103972 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 metres_Up qcd 1.002008 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 metres_Down qcd 0.964105 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_Up qcd 0.974908 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_Down qcd 1.021670 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf b_Up qcd 0.967128 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf b_Down qcd 1.032745 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restoptag_Up qcd 1.000293 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restoptag_Down qcd 0.999711 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_Up qcd 1.072586 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_Down qcd 0.927264 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_Up qcd 0.999376 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_Down qcd 1.000624 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_Up qcd 0.997922 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_Down qcd 1.002083 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_Up qcd 0.994768 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_Down qcd 1.004672 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf JES_Up qcd 0.995942 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf JES_Down qcd 0.972956 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf metres_Up qcd 1.028242 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf metres_Down qcd 1.011057 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_Up qcd 1.028698 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_Down qcd 0.978305 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 b_Up qcd 1.014775 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 b_Down qcd 0.984764 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restoptag_Up qcd 0.999417 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restoptag_Down qcd 1.000584 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_Up qcd 1.078757 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_Down qcd 0.921055 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_Up qcd 0.998441 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_Down qcd 1.001561 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_Up qcd 1.002634 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_Down qcd 0.997344 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_Up qcd 0.996699 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_Down qcd 1.003323 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 JES_Up qcd 0.941759 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 JES_Down qcd 1.051771 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 metres_Up qcd 1.011304 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 metres_Down qcd 0.982844 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_Up qcd 1.000000 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_Down qcd 1.000000 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 b_Up qcd 1.000000 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 b_Down qcd 1.000000 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restoptag_Up qcd 1.000000 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restoptag_Down qcd 1.000000 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_Up qcd 1.000000 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_Down qcd 1.000000 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_Up qcd 1.000000 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_Down qcd 1.000000 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_Up qcd 1.000000 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_Down qcd 1.000000 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_Up qcd 1.000000 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_Down qcd 1.000000 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 JES_Up qcd 1.000000 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 JES_Down qcd 1.000000 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 metres_Up qcd 1.000000 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 metres_Down qcd 1.000000 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_Up qcd 1.024312 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_Down qcd 0.960350 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf b_Up qcd 1.141105 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf b_Down qcd 0.855704 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restoptag_Up qcd 0.998966 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restoptag_Down qcd 1.001040 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_Up qcd 1.052357 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_Down qcd 0.947560 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_Up qcd 0.999477 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_Down qcd 1.000523 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_Up qcd 0.997619 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_Down qcd 1.002383 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_Up qcd 0.994656 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_Down qcd 1.004799 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf JES_Up qcd 1.102010 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf JES_Down qcd 0.989506 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf metres_Up qcd 1.022613 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf metres_Down qcd 1.006784 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PU_Weight_Up qcd 0.890381 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PU_Weight_Down qcd 1.121104 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 b_Up qcd 0.985411 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 b_Down qcd 1.013739 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_restoptag_Up qcd 0.999504 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_restoptag_Down qcd 1.000495 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_toptag_Up qcd 1.075579 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_toptag_Down qcd 0.924335 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_wtag_Up qcd 1.135298 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_wtag_Down qcd 0.864273 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ivfunc_Up qcd 0.999438 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ivfunc_Down qcd 1.000562 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 trigger_err_Up qcd 0.998065 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 trigger_err_Down qcd 1.001423 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 JES_Up qcd 0.823014 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 JES_Down qcd 1.238994 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 metres_Up qcd 0.918893 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 metres_Down qcd 1.057919 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PU_Weight_Up qcd 0.889292 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PU_Weight_Down qcd 1.122539 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf b_Up qcd 0.981468 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf b_Down qcd 1.017727 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_restoptag_Up qcd 0.999428 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_restoptag_Down qcd 1.000574 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_toptag_Up qcd 1.075724 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_toptag_Down qcd 0.924210 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_wtag_Up qcd 1.136361 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_wtag_Down qcd 0.863462 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ivfunc_Up qcd 0.999583 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ivfunc_Down qcd 1.000416 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf trigger_err_Up qcd 0.998225 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf trigger_err_Down qcd 1.001186 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf JES_Up qcd 0.999285 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf JES_Down qcd 0.914225 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf metres_Up qcd 1.108047 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf metres_Down qcd 0.938191 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PU_Weight_Up qcd 1.042506 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PU_Weight_Down qcd 0.945687 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 b_Up qcd 1.012433 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 b_Down qcd 0.985705 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_restoptag_Up qcd 1.149085 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_restoptag_Down qcd 0.850388 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_toptag_Up qcd 1.073417 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_toptag_Down qcd 0.926469 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_wtag_Up qcd 0.999768 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_wtag_Down qcd 1.000232 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ivfunc_Up qcd 0.997564 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ivfunc_Down qcd 1.002433 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 trigger_err_Up qcd 0.995036 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 trigger_err_Down qcd 1.005181 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 JES_Up qcd 0.824747 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 JES_Down qcd 1.040321 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 metres_Up qcd 1.026787 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 metres_Down qcd 0.989438 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PU_Weight_Up qcd 0.973626 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PU_Weight_Down qcd 1.023051 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf b_Up qcd 0.968182 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf b_Down qcd 1.031603 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_restoptag_Up qcd 1.350743 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_restoptag_Down qcd 0.649062 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_toptag_Up qcd 1.072693 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_toptag_Down qcd 0.927171 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_wtag_Up qcd 0.999625 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_wtag_Down qcd 1.000375 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ivfunc_Up qcd 0.997985 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ivfunc_Down qcd 1.002015 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf trigger_err_Up qcd 0.994436 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf trigger_err_Down qcd 1.005003 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf JES_Up qcd 0.920771 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf JES_Down qcd 1.016741 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf metres_Up qcd 1.019589 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf metres_Down qcd 0.995569 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Up qcd 1.036501 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Down qcd 0.951935 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Up qcd 1.103186 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Down qcd 0.893252 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Up qcd 0.998515 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Down qcd 1.001486 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Up qcd 0.999367 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Down qcd 1.000633 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Up qcd 0.999928 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Down qcd 1.000072 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Up qcd 1.048058 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Down qcd 0.951673 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Up qcd 0.993599 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Down qcd 1.006536 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Up qcd 0.903286 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Down qcd 1.185223 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Up qcd 0.000000 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Down qcd 0.000000 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Up qcd 0.969545 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Down qcd 1.031665 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Up qcd 1.052504 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Down qcd 0.945802 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Up qcd 0.999581 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Down qcd 1.000425 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Up qcd 0.999103 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Down qcd 1.000898 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Up qcd 0.999298 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Down qcd 1.000702 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Up qcd 1.047630 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Down qcd 0.952143 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Up qcd 0.994760 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Down qcd 1.004697 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Up qcd 0.841360 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Down qcd 0.983092 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Up qcd 0.000000 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Down qcd 0.000000 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Up qcd 1.003932 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Down qcd 0.996730 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Up qcd 1.057683 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Down qcd 0.944568 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Up qcd 0.998335 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Down qcd 1.001670 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Up qcd 0.999395 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Down qcd 1.000606 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Up qcd 0.999014 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Down qcd 1.000989 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Up qcd 0.999384 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Down qcd 1.000600 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Up qcd 0.994507 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Down qcd 1.005729 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Up qcd 1.762748 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Down qcd 0.946368 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Up qcd 0.000000 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Down qcd 0.000000 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Up qcd 1.202450 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Down qcd 0.829328 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Up qcd 1.072870 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Down qcd 0.929565 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Up qcd 0.998078 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Down qcd 1.001933 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Up qcd 0.999368 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Down qcd 1.000634 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Up qcd 0.999400 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Down qcd 1.000600 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Up qcd 1.021757 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Down qcd 0.978035 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Up qcd 0.992772 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Down qcd 1.007487 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Up qcd 1.986240 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Down qcd 0.652387 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Up qcd 0.000000 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Down qcd 0.000000 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_Up qcd 1.019113 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_Down qcd 0.977459 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_Up qcd 1.076528 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_Down qcd 0.924420 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restoptag_Up qcd 0.999179 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restoptag_Down qcd 1.000821 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_Up qcd 0.999320 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_Down qcd 1.000680 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_Up qcd 0.999761 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_Down qcd 1.000239 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_Up qcd 1.009596 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_Down qcd 0.990338 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_Up qcd 0.996103 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_Down qcd 1.003982 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_Up qcd 1.076819 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_Down qcd 1.018588 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_Up qcd 1.046437 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_Down qcd 0.922488 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_Up qcd 1.065154 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_Down qcd 0.948082 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_Up qcd 1.068275 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_Down qcd 0.932955 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restoptag_Up qcd 0.999204 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restoptag_Down qcd 1.000799 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_Up qcd 0.999342 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_Down qcd 1.000658 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_Up qcd 0.999224 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_Down qcd 1.000776 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_Up qcd 0.999997 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_Down qcd 0.999994 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_Up qcd 0.995764 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_Down qcd 1.004242 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_Up qcd 1.034178 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_Down qcd 1.754364 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_Up qcd 1.040684 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_Down qcd 0.952857 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_Up qcd 1.030462 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_Down qcd 0.975268 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_Up qcd 1.084704 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_Down qcd 0.917408 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restoptag_Up qcd 0.999343 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restoptag_Down qcd 1.000657 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_Up qcd 0.999435 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_Down qcd 1.000565 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_Up qcd 0.998585 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_Down qcd 1.001418 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_Up qcd 0.998667 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_Down qcd 1.001334 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_Up qcd 0.996051 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_Down qcd 1.003765 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_Up qcd 1.126156 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_Down qcd 0.974570 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_Up qcd 1.045563 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_Down qcd 0.992380 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_Up qcd 1.030210 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_Down qcd 0.973017 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_Up qcd 1.096437 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_Down qcd 0.907536 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restoptag_Up qcd 0.999198 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restoptag_Down qcd 1.000802 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_Up qcd 0.999337 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_Down qcd 1.000663 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_Up qcd 0.998638 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_Down qcd 1.001364 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_Up qcd 0.998725 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_Down qcd 1.001275 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_Up qcd 0.996786 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_Down qcd 1.002661 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_Up qcd 1.063783 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_Down qcd 1.001270 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_Up qcd 1.017602 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_Down qcd 0.991010 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Up qcd 1.000000 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Down qcd 1.000000 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Up qcd 1.000000 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Down qcd 1.000000 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Up qcd 1.000000 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Down qcd 1.000000 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Up qcd 1.000000 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Down qcd 1.000000 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Up qcd 1.000000 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Down qcd 1.000000 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Up qcd 1.000000 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Down qcd 1.000000 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Up qcd 1.000000 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Down qcd 1.000000 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Up qcd 1.000000 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Down qcd 1.000000 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Up qcd 1.000000 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Down qcd 1.000000 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Up qcd 1.014391 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Down qcd 0.982516 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Up qcd 1.088682 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Down qcd 0.916995 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Up qcd 0.998537 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Down qcd 1.001467 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Up qcd 0.999371 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Down qcd 1.000630 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Up qcd 0.999441 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Down qcd 1.000560 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Up qcd 1.002783 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Down qcd 0.997176 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Up qcd 0.994506 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Down qcd 1.005732 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Up qcd 1.041144 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Down qcd 0.985852 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Up qcd 0.000000 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Down qcd 0.000000 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Up qcd 0.953265 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Down qcd 1.050740 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Up qcd 1.013018 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Down qcd 0.986956 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Up qcd 0.998131 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Down qcd 1.001878 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Up qcd 0.999305 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Down qcd 1.000696 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Up qcd 0.999417 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Down qcd 1.000584 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Up qcd 0.996930 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Down qcd 1.003070 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Up qcd 0.993470 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Down qcd 1.006730 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Up qcd 1.008959 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Down qcd 1.052562 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Up qcd 0.000000 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Down qcd 0.000000 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Up qcd 1.105042 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Down qcd 0.883499 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Up qcd 1.058629 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Down qcd 0.942290 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Up qcd 1.000072 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Down qcd 0.999932 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Up qcd 0.998992 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Down qcd 1.001010 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Up qcd 0.998608 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Down qcd 1.001393 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Up qcd 0.998102 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Down qcd 1.001904 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Up qcd 0.995667 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Down qcd 1.003773 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Up qcd 1.067246 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Down qcd 0.781113 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Up qcd 0.000000 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Down qcd 0.000000 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_Up qcd 1.000000 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_Down qcd 1.000000 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf b_Up qcd 1.000000 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf b_Down qcd 1.000000 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restoptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restoptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_Up qcd 1.000000 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_Down qcd 1.000000 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_Up qcd 1.000000 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_Down qcd 1.000000 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf JES_Up qcd 1.000000 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf JES_Down qcd 1.000000 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf metres_Up qcd 1.000000 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf metres_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PU_Weight_Up qcd 1.031726 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PU_Weight_Down qcd 0.961124 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 b_Up qcd 1.089104 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 b_Down qcd 0.914281 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_restoptag_Up qcd 0.999572 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_restoptag_Down qcd 1.000431 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_toptag_Up qcd 0.999742 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_toptag_Down qcd 1.000258 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_wtag_Up qcd 1.167783 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_wtag_Down qcd 0.832476 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ivfunc_Up qcd 0.999748 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ivfunc_Down qcd 1.000251 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 trigger_err_Up qcd 0.995966 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 trigger_err_Down qcd 1.004011 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 JES_Up qcd 0.898532 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 JES_Down qcd 1.082895 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 metres_Up qcd 0.987545 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 metres_Down qcd 1.001646 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PU_Weight_Up qcd 1.031726 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PU_Weight_Down qcd 0.961124 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 b_Up qcd 1.158529 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 b_Down qcd 0.849815 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_restoptag_Up qcd 0.999572 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_restoptag_Down qcd 1.000431 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_toptag_Up qcd 0.999742 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_toptag_Down qcd 1.000258 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_wtag_Up qcd 1.167783 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_wtag_Down qcd 0.832476 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ivfunc_Up qcd 0.999748 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ivfunc_Down qcd 1.000251 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 trigger_err_Up qcd 0.996280 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 trigger_err_Down qcd 1.003613 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 JES_Up qcd 1.127944 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 JES_Down qcd 1.115936 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 metres_Up qcd 1.311146 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 metres_Down qcd 1.001646 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PU_Weight_Up qcd 1.021149 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PU_Weight_Down qcd 0.971893 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf b_Up qcd 1.003575 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf b_Down qcd 0.994229 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_restoptag_Up qcd 0.998914 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_restoptag_Down qcd 1.001086 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_toptag_Up qcd 0.999219 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_toptag_Down qcd 1.000781 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_wtag_Up qcd 1.132831 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_wtag_Down qcd 0.866149 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ivfunc_Up qcd 0.999260 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ivfunc_Down qcd 1.000740 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf trigger_err_Up qcd 0.998515 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf trigger_err_Down qcd 1.000908 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf JES_Up qcd 0.975381 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf JES_Down qcd 1.022900 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf metres_Up qcd 1.019538 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf metres_Down qcd 0.984918 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restoptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restoptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Up qcd 0.996676 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Down qcd 0.995876 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_Up qcd 1.151370 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_Down qcd 0.852296 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Up qcd 1.082482 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Down qcd 0.916359 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Up qcd 0.997900 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Down qcd 1.002091 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Up qcd 0.999254 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Down qcd 1.000747 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Up qcd 1.047894 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Down qcd 0.951805 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Up qcd 0.998017 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Down qcd 1.001967 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_Up qcd 7.862229 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_Down qcd 0.834767 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_Up qcd 0.979604 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_Down qcd 0.931072 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PU_Weight_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PU_Weight_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 b_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 b_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_restoptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_restoptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_toptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_toptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_wtag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_wtag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ivfunc_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ivfunc_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 trigger_err_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 trigger_err_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 JES_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 JES_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 metres_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 metres_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PU_Weight_Up qcd 0.972000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PU_Weight_Down qcd 1.023024 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf b_Up qcd 1.100579 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf b_Down qcd 0.903741 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_restoptag_Up qcd 1.069091 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_restoptag_Down qcd 0.930577 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_toptag_Up qcd 0.999140 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_toptag_Down qcd 1.000858 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_wtag_Up qcd 0.997093 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_wtag_Down qcd 1.002915 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ivfunc_Up qcd 0.998820 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ivfunc_Down qcd 1.001179 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf trigger_err_Up qcd 0.997753 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf trigger_err_Down qcd 1.001718 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf JES_Up qcd 0.933724 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf JES_Down qcd 0.994853 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf metres_Up qcd 1.002148 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf metres_Down qcd 0.981669 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_Up qcd 2.756936 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_Down qcd -0.260717 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_Up qcd 0.702239 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_Down qcd 1.250909 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Up qcd 2.608508 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Down qcd -0.611789 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_Up qcd 0.998701 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_Down qcd 1.001295 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_Up qcd 1.005928 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_Down qcd 0.994066 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_Up qcd 0.993555 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_Down qcd 1.006394 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_Up qcd 0.991717 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_Down qcd 1.009221 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_Up qcd -8.443391 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_Down qcd 1.673500 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_Up qcd 2.020560 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_Down qcd -0.930854 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PU_Weight_Up qcd 0.973324 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PU_Weight_Down qcd 1.017624 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 b_Up qcd 1.188357 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 b_Down qcd 0.827249 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_restoptag_Up qcd 1.256496 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_restoptag_Down qcd 0.743074 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_toptag_Up qcd 0.999664 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_toptag_Down qcd 1.000337 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_wtag_Up qcd 1.000260 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_wtag_Down qcd 0.999739 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ivfunc_Up qcd 0.998438 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ivfunc_Down qcd 1.001559 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 trigger_err_Up qcd 0.995204 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 trigger_err_Down qcd 1.004817 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 JES_Up qcd 3.067087 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 JES_Down qcd 0.077764 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 metres_Up qcd 0.849257 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 metres_Down qcd 1.207139 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PU_Weight_Up qcd 0.960804 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PU_Weight_Down qcd 1.041245 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf b_Up qcd 1.092668 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf b_Down qcd 0.913616 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_restoptag_Up qcd 1.230266 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_restoptag_Down qcd 0.768986 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_toptag_Up qcd 0.999303 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_toptag_Down qcd 1.000696 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_wtag_Up qcd 0.999684 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_wtag_Down qcd 1.000316 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ivfunc_Up qcd 0.997560 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ivfunc_Down qcd 1.002439 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf trigger_err_Up qcd 0.994375 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf trigger_err_Down qcd 1.005077 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf JES_Up qcd 0.991069 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf JES_Down qcd 0.704819 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf metres_Up qcd 1.010731 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf metres_Down qcd 0.694313 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_Up qcd 0.982986 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_Down qcd 1.015644 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_Up qcd 1.112461 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_Down qcd 0.885111 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Up qcd 1.113106 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Down qcd 0.886168 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_Up qcd 0.999278 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_Down qcd 1.000721 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_Up qcd 0.999817 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_Down qcd 1.000184 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_Up qcd 0.997741 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_Down qcd 1.002254 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_Up qcd 0.995775 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_Down qcd 1.004370 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_Up qcd 1.106350 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_Down qcd 0.108131 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_Up qcd 1.013560 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_Down qcd 0.985282 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PU_Weight_Up qcd 1.101303 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PU_Weight_Down qcd 0.887219 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 b_Up qcd 1.052631 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 b_Down qcd 0.947225 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_restoptag_Up qcd 1.163430 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_restoptag_Down qcd 0.836498 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_toptag_Up qcd 0.999009 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_toptag_Down qcd 1.000994 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_wtag_Up qcd 0.999292 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_wtag_Down qcd 1.000708 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ivfunc_Up qcd 0.997933 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ivfunc_Down qcd 1.002076 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 trigger_err_Up qcd 0.996166 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 trigger_err_Down qcd 1.003909 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 JES_Up qcd 1.162330 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 JES_Down qcd 0.963284 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 metres_Up qcd 1.038796 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 metres_Down qcd 1.027193 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PU_Weight_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PU_Weight_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf b_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf b_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_restoptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_restoptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_toptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_toptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_wtag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_wtag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ivfunc_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ivfunc_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf trigger_err_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf trigger_err_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf JES_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf JES_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf metres_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf metres_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PU_Weight_Up qcd 1.101939 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PU_Weight_Down qcd 0.881518 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf b_Up qcd 1.069389 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf b_Down qcd 0.932543 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_restoptag_Up qcd 1.349654 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_restoptag_Down qcd 0.649582 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_toptag_Up qcd 0.999268 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_toptag_Down qcd 1.000731 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_wtag_Up qcd 1.037470 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_wtag_Down qcd 0.962540 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ivfunc_Up qcd 0.998113 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ivfunc_Down qcd 1.001876 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf trigger_err_Up qcd 0.995777 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf trigger_err_Down qcd 1.004382 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf JES_Up qcd 2.488002 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf JES_Down qcd 0.000000 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf metres_Up qcd 1.002008 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf metres_Down qcd 2.009975 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PU_Weight_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PU_Weight_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 b_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 b_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_restoptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_restoptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_toptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_toptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_wtag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_wtag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ivfunc_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ivfunc_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 trigger_err_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 trigger_err_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 JES_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 JES_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 metres_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 metres_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PU_Weight_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PU_Weight_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf b_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf b_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_restoptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_restoptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_toptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_toptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_wtag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_wtag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ivfunc_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ivfunc_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf trigger_err_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf trigger_err_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf JES_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf JES_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf metres_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf metres_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 b_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 b_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ivfunc_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ivfunc_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 trigger_err_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 trigger_err_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 JES_Up qcd 11701340775529032.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 JES_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 metres_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 metres_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PU_Weight_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PU_Weight_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 b_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 b_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_restoptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_restoptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_toptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_toptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_wtag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_wtag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ivfunc_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ivfunc_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 trigger_err_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 trigger_err_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 JES_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 JES_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 metres_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 metres_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PU_Weight_Up qcd 1.010506 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PU_Weight_Down qcd 0.983382 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf b_Up qcd 1.134027 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf b_Down qcd 0.870698 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_restoptag_Up qcd 0.999572 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_restoptag_Down qcd 1.000431 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_toptag_Up qcd 1.108624 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_toptag_Down qcd 0.891319 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_wtag_Up qcd 1.000797 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_wtag_Down qcd 0.999195 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ivfunc_Up qcd 0.999748 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ivfunc_Down qcd 1.000251 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf trigger_err_Up qcd 0.998087 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf trigger_err_Down qcd 1.001320 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf JES_Up qcd 0.459028 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf JES_Down qcd 1.082895 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf metres_Up qcd 1.022001 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf metres_Down qcd 1.001646 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PU_Weight_Up qcd 1.196760 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PU_Weight_Down qcd 0.805360 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 b_Up qcd 1.204416 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 b_Down qcd 0.807532 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_restoptag_Up qcd 1.000596 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_restoptag_Down qcd 0.999409 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_toptag_Up qcd 1.052030 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_toptag_Down qcd 0.947855 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_wtag_Up qcd 0.999185 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_wtag_Down qcd 1.000815 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ivfunc_Up qcd 0.997874 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ivfunc_Down qcd 1.002135 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 trigger_err_Up qcd 0.997006 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 trigger_err_Down qcd 1.003133 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 JES_Up qcd 1.047372 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 JES_Down qcd 0.944927 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 metres_Up qcd 1.034866 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 metres_Down qcd 1.058938 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PU_Weight_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PU_Weight_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 b_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 b_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_restoptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_restoptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_toptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_toptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_wtag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_wtag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ivfunc_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ivfunc_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 trigger_err_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 trigger_err_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 JES_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 JES_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 metres_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 metres_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PU_Weight_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PU_Weight_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf b_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf b_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_restoptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_restoptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_toptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_toptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_wtag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_wtag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ivfunc_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ivfunc_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf trigger_err_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf trigger_err_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf JES_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf JES_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf metres_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf metres_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PU_Weight_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PU_Weight_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 b_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 b_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_restoptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_restoptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_toptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_toptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_wtag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_wtag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ivfunc_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ivfunc_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 trigger_err_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 trigger_err_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 JES_Up qcd 241805333725367.593750 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 JES_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 metres_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 metres_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PU_Weight_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PU_Weight_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 b_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 b_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_restoptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_restoptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_toptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_toptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_wtag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_wtag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ivfunc_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ivfunc_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 trigger_err_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 trigger_err_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 JES_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 JES_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 metres_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 metres_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PU_Weight_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PU_Weight_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf b_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf b_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_restoptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_restoptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_toptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_toptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_wtag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_wtag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ivfunc_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ivfunc_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf trigger_err_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf trigger_err_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf JES_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf JES_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf metres_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf metres_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PU_Weight_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PU_Weight_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf b_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf b_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_restoptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_restoptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_toptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_toptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_wtag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_wtag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ivfunc_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ivfunc_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf trigger_err_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf trigger_err_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf JES_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf JES_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf metres_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf metres_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PU_Weight_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PU_Weight_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 b_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 b_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_restoptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_restoptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_toptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_toptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_wtag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_wtag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ivfunc_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ivfunc_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 trigger_err_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 trigger_err_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 JES_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 JES_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 metres_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 metres_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PU_Weight_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PU_Weight_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf b_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf b_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_restoptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_restoptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_toptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_toptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_wtag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_wtag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ivfunc_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ivfunc_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf trigger_err_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf trigger_err_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf JES_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf JES_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf metres_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf metres_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PU_Weight_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PU_Weight_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf b_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf b_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_restoptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_restoptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_toptag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_toptag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_wtag_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_wtag_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ivfunc_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ivfunc_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf trigger_err_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf trigger_err_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf JES_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf JES_Down qcd 1.000000 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf metres_Up qcd 1.000000 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf metres_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf b_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf b_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restoptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restoptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf JES_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf JES_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf metres_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf metres_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PU_Weight_Up qcd 0.903756 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PU_Weight_Down qcd 1.105651 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 b_Up qcd 1.057936 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 b_Down qcd 0.943136 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_restoptag_Up qcd 0.997952 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_restoptag_Down qcd 1.002053 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_toptag_Up qcd 0.999423 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_toptag_Down qcd 1.000578 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_wtag_Up qcd 1.059382 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_wtag_Down qcd 0.940485 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ivfunc_Up qcd 1.040365 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ivfunc_Down qcd 0.959356 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 trigger_err_Up qcd 0.993646 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 trigger_err_Down qcd 1.006664 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 JES_Up qcd 1.226544 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 JES_Down qcd 0.926819 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 metres_Up qcd 1.210494 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 metres_Down qcd 0.938194 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PU_Weight_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PU_Weight_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 b_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 b_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_restoptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_restoptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_toptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_toptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_wtag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_wtag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ivfunc_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ivfunc_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 trigger_err_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 trigger_err_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 JES_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 JES_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 metres_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 metres_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PU_Weight_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PU_Weight_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf b_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf b_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_restoptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_restoptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_toptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_toptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_wtag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_wtag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ivfunc_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ivfunc_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf trigger_err_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf trigger_err_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf JES_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf JES_Down qcd 12115279126254.269531 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf metres_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf metres_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PU_Weight_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PU_Weight_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 b_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 b_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_restoptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_restoptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_toptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_toptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_wtag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_wtag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ivfunc_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ivfunc_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 trigger_err_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 trigger_err_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 JES_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 JES_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 metres_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 metres_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PU_Weight_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PU_Weight_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 b_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 b_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_restoptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_restoptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_toptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_toptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_wtag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_wtag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ivfunc_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ivfunc_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 trigger_err_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 trigger_err_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 JES_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 JES_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 metres_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 metres_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PU_Weight_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PU_Weight_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf b_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf b_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_restoptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_restoptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_toptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_toptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_wtag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_wtag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ivfunc_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ivfunc_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf trigger_err_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf trigger_err_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf JES_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf JES_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf metres_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf metres_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restoptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restoptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Up qcd 0.995121 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Down qcd 0.996021 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_Up qcd 1.126219 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_Down qcd 0.879076 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Up qcd 1.341844 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Down qcd 0.656124 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Up qcd 0.999485 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Down qcd 1.000515 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Up qcd 0.999408 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Down qcd 1.000591 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Up qcd 0.997438 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Down qcd 1.002561 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Up qcd 0.993760 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Down qcd 1.006531 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_Up qcd 0.630628 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_Down qcd 0.859053 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_Up qcd 1.257246 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_Down qcd 0.921448 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_Up qcd 0.996550 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_Down qcd 0.991804 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 b_Up qcd 1.197766 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 b_Down qcd 0.809991 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_restoptag_Up qcd 1.462262 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_restoptag_Down qcd 0.536783 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_Up qcd 0.999282 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_Down qcd 1.000717 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_Up qcd 0.999888 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_Down qcd 1.000113 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ivfunc_Up qcd 0.998158 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ivfunc_Down qcd 1.001832 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 trigger_err_Up qcd 0.994889 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 trigger_err_Down qcd 1.005179 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 JES_Up qcd 1.165377 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 JES_Down qcd 0.618067 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 metres_Up qcd 1.067113 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 metres_Down qcd 0.900440 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_Up qcd 0.973581 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_Down qcd 1.026243 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 b_Up qcd 1.161396 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 b_Down qcd 0.843309 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_restoptag_Up qcd 1.088516 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_restoptag_Down qcd 0.911285 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_Up qcd 0.999728 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_Down qcd 1.000271 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_Up qcd 1.000551 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_Down qcd 0.999443 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ivfunc_Up qcd 0.999712 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ivfunc_Down qcd 1.000287 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 trigger_err_Up qcd 0.997091 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 trigger_err_Down qcd 1.002563 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 JES_Up qcd 1.206440 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 JES_Down qcd 0.060629 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 metres_Up qcd 1.322768 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 metres_Down qcd 1.218837 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Up qcd 1.044661 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Down qcd 0.952202 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 b_Up qcd 1.090710 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 b_Down qcd 0.906715 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Up qcd 1.196014 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Down qcd 0.803406 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Up qcd 0.999526 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Down qcd 1.000475 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Up qcd 0.999719 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Down qcd 1.000282 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ivfunc_Up qcd 0.998205 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ivfunc_Down qcd 1.001794 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 trigger_err_Up qcd 0.995148 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 trigger_err_Down qcd 1.004345 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 JES_Up qcd 0.985144 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 JES_Down qcd 0.712950 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 metres_Up qcd 0.740741 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 metres_Down qcd 1.011380 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Up qcd 0.981211 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Down qcd 1.015218 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf b_Up qcd 1.125729 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf b_Down qcd 0.868330 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Up qcd 1.161002 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Down qcd 0.838486 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Up qcd 0.999212 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Down qcd 1.000788 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Up qcd 0.999521 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Down qcd 1.000481 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ivfunc_Up qcd 0.998185 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ivfunc_Down qcd 1.001810 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf trigger_err_Up qcd 0.994414 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf trigger_err_Down qcd 1.005027 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf JES_Up qcd 0.982359 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf JES_Down qcd 1.050550 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf metres_Up qcd 1.213105 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf metres_Down qcd 0.981532 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_Up qcd 1.036928 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_Down qcd 0.964850 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_Up qcd 1.065985 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_Down qcd 0.936374 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Up qcd 1.171314 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Down qcd 0.828309 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_Up qcd 0.999681 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_Down qcd 1.000321 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_Up qcd 1.000008 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_Down qcd 0.999991 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_Up qcd 0.998509 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_Down qcd 1.001494 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_Up qcd 0.995771 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_Down qcd 1.004330 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_Up qcd 3.777782 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_Down qcd 1.027318 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_Up qcd 1.036188 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_Down qcd 1.022081 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PU_Weight_Up qcd 1.043297 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PU_Weight_Down qcd 0.944845 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 b_Up qcd 1.040604 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 b_Down qcd 0.957998 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_restoptag_Up qcd 1.136921 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_restoptag_Down qcd 0.862387 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_toptag_Up qcd 0.999325 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_toptag_Down qcd 1.000674 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_wtag_Up qcd 0.999698 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_wtag_Down qcd 1.000302 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ivfunc_Up qcd 0.997561 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ivfunc_Down qcd 1.002438 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 trigger_err_Up qcd 0.995408 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 trigger_err_Down qcd 1.004712 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 JES_Up qcd 1.200250 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 JES_Down qcd 1.064900 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 metres_Up qcd 1.114533 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 metres_Down qcd 1.002760 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PU_Weight_Up qcd 1.066232 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PU_Weight_Down qcd 0.916595 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 b_Up qcd 1.047041 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 b_Down qcd 0.953394 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_restoptag_Up qcd 1.082672 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_restoptag_Down qcd 0.916685 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_toptag_Up qcd 0.999428 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_toptag_Down qcd 1.000570 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_wtag_Up qcd 0.999738 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_wtag_Down qcd 1.000262 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ivfunc_Up qcd 0.997539 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ivfunc_Down qcd 1.002462 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 trigger_err_Up qcd 0.995233 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 trigger_err_Down qcd 1.004749 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 JES_Up qcd 0.678819 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 JES_Down qcd 0.770975 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 metres_Up qcd 1.042021 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 metres_Down qcd 0.501194 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PU_Weight_Up qcd 1.122674 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PU_Weight_Down qcd 0.861949 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 b_Up qcd 1.000746 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 b_Down qcd 0.999315 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_restoptag_Up qcd 1.065351 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_restoptag_Down qcd 0.933658 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_toptag_Up qcd 0.999557 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_toptag_Down qcd 1.000444 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_wtag_Up qcd 0.999480 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_wtag_Down qcd 1.000520 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ivfunc_Up qcd 0.996277 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ivfunc_Down qcd 1.003724 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 trigger_err_Up qcd 0.991476 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 trigger_err_Down qcd 1.008205 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 JES_Up qcd 0.988028 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 JES_Down qcd 0.111408 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 metres_Up qcd 1.087144 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 metres_Down qcd 0.761085 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PU_Weight_Up qcd 1.331380 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PU_Weight_Down qcd 0.721250 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf b_Up qcd 0.988696 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf b_Down qcd 1.005239 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_restoptag_Up qcd 1.327779 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_restoptag_Down qcd 0.671390 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_toptag_Up qcd 0.999268 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_toptag_Down qcd 1.000731 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_wtag_Up qcd 1.000130 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_wtag_Down qcd 0.999870 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ivfunc_Up qcd 0.998113 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ivfunc_Down qcd 1.001876 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf trigger_err_Up qcd 0.993761 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf trigger_err_Down qcd 1.005675 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf JES_Up qcd 0.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf JES_Down qcd 1.103972 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf metres_Up qcd 1.002008 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf metres_Down qcd 0.964105 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_Up qcd 1.013267 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_Down qcd 0.984368 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_Up qcd 1.079126 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_Down qcd 0.928113 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Up qcd 1.094898 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Down qcd 0.904399 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_Up qcd 0.999246 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_Down qcd 1.000753 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_Up qcd 0.999527 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_Down qcd 1.000473 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_Up qcd 1.006165 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_Down qcd 0.993794 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_Up qcd 0.996279 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_Down qcd 1.003847 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_Up qcd 1.048112 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_Down qcd 0.520727 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_Up qcd 0.933763 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_Down qcd 1.029807 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PU_Weight_Up qcd 0.986552 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PU_Weight_Down qcd 1.012828 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 b_Up qcd 1.027332 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 b_Down qcd 0.972606 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_restoptag_Up qcd 1.078328 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_restoptag_Down qcd 0.921208 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_toptag_Up qcd 0.999241 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_toptag_Down qcd 1.000760 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_wtag_Up qcd 0.999423 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_wtag_Down qcd 1.000578 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ivfunc_Up qcd 1.004685 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ivfunc_Down qcd 0.995284 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 trigger_err_Up qcd 0.995292 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 trigger_err_Down qcd 1.004793 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 JES_Up qcd 1.109994 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 JES_Down qcd 0.890540 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 metres_Up qcd 1.021929 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 metres_Down qcd 1.086300 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PU_Weight_Up qcd 1.040837 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PU_Weight_Down qcd 0.952676 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 b_Up qcd 1.062727 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 b_Down qcd 0.939449 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_restoptag_Up qcd 1.116506 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_restoptag_Down qcd 0.883034 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_toptag_Up qcd 0.999399 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_toptag_Down qcd 1.000602 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_wtag_Up qcd 0.998446 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_wtag_Down qcd 1.001556 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ivfunc_Up qcd 0.998596 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ivfunc_Down qcd 1.001404 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 trigger_err_Up qcd 0.996082 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 trigger_err_Down qcd 1.003736 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 JES_Up qcd 0.869127 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 JES_Down qcd 1.023760 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 metres_Up qcd 1.052505 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 metres_Down qcd 0.954211 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PU_Weight_Up qcd 1.069205 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PU_Weight_Down qcd 0.927662 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 b_Up qcd 1.002040 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 b_Down qcd 0.997608 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_restoptag_Up qcd 1.059443 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_restoptag_Down qcd 0.940378 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_toptag_Up qcd 0.999471 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_toptag_Down qcd 1.000528 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_wtag_Up qcd 0.997062 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_wtag_Down qcd 1.002947 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ivfunc_Up qcd 0.999228 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ivfunc_Down qcd 1.000772 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 trigger_err_Up qcd 0.997295 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 trigger_err_Down qcd 1.002155 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 JES_Up qcd 1.090670 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 JES_Down qcd 1.036161 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 metres_Up qcd 0.977219 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 metres_Down qcd 1.061270 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PU_Weight_Up qcd 1.039443 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PU_Weight_Down qcd 0.953389 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf b_Up qcd 1.091515 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf b_Down qcd 0.912062 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_restoptag_Up qcd 1.065671 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_restoptag_Down qcd 0.934009 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_toptag_Up qcd 0.999511 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_toptag_Down qcd 1.000488 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_wtag_Up qcd 0.996538 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_wtag_Down qcd 1.003474 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ivfunc_Up qcd 0.999129 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ivfunc_Down qcd 1.000870 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf trigger_err_Up qcd 0.996716 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf trigger_err_Down qcd 1.002753 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf JES_Up qcd 2.212336 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf JES_Down qcd 0.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf metres_Up qcd 1.988732 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf metres_Down qcd 0.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PU_Weight_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PU_Weight_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 b_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 b_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_restoptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_restoptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_toptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_toptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_wtag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_wtag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ivfunc_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ivfunc_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 trigger_err_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 trigger_err_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 JES_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 JES_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 metres_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 metres_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PU_Weight_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PU_Weight_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf b_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf b_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_restoptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_restoptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_toptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_toptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_wtag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_wtag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ivfunc_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ivfunc_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf trigger_err_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf trigger_err_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf JES_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf JES_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf metres_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf metres_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PU_Weight_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PU_Weight_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 b_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 b_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_restoptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_restoptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_toptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_toptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_wtag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_wtag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ivfunc_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ivfunc_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 trigger_err_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 trigger_err_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 JES_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 JES_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 metres_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 metres_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PU_Weight_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PU_Weight_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf b_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf b_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_restoptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_restoptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_toptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_toptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_wtag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_wtag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ivfunc_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ivfunc_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf trigger_err_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf trigger_err_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf JES_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf JES_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf metres_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf metres_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PU_Weight_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PU_Weight_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 b_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 b_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_restoptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_restoptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_toptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_toptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_wtag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_wtag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ivfunc_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ivfunc_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 trigger_err_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 trigger_err_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 JES_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 JES_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 metres_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 metres_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PU_Weight_Up qcd 1.000174 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PU_Weight_Down qcd 0.993464 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf b_Up qcd 1.020537 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf b_Down qcd 0.979135 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_restoptag_Up qcd 1.184174 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_restoptag_Down qcd 0.831114 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_toptag_Up qcd 0.999742 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_toptag_Down qcd 1.000258 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_wtag_Up qcd 1.000797 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_wtag_Down qcd 0.999195 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ivfunc_Up qcd 0.999748 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ivfunc_Down qcd 1.000251 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf trigger_err_Up qcd 0.997833 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf trigger_err_Down qcd 1.001642 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf JES_Up qcd 0.929882 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf JES_Down qcd 1.082895 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf metres_Up qcd 1.022001 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf metres_Down qcd 1.001646 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_Up qcd 0.991531 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_Down qcd 1.013720 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_Up qcd 1.024530 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_Down qcd 0.971321 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restoptag_Up qcd 0.999094 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restoptag_Down qcd 1.000902 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_Up qcd 1.072863 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_Down qcd 0.927027 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_Up qcd 1.000119 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_Down qcd 0.999881 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_Up qcd 0.998103 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_Down qcd 1.001885 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_Up qcd 0.995788 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_Down qcd 1.004370 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_Up qcd 2.730869 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_Down qcd 0.024378 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_Up qcd 0.023911 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_Down qcd 1.921789 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Up qcd 0.910087 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Down qcd 1.103004 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_Up qcd 0.976359 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_Down qcd 1.021107 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Up qcd 0.999919 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Down qcd 1.000086 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Up qcd 1.052483 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Down qcd 0.947415 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Up qcd 0.999286 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Down qcd 1.000714 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_Up qcd 0.997787 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_Down qcd 1.002219 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_Up qcd 0.994911 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_Down qcd 1.004535 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_Up qcd 0.727351 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_Down qcd 1.950189 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_Up qcd 1.029723 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_Down qcd 1.015956 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_Up qcd 1.040466 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_Down qcd 0.954106 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 b_Up qcd 1.068948 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 b_Down qcd 0.937284 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restoptag_Up qcd 0.999113 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restoptag_Down qcd 1.000888 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_Up qcd 1.092474 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_Down qcd 0.907429 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_Up qcd 0.998481 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_Down qcd 1.001523 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_Up qcd 0.998865 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_Down qcd 1.001134 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_Up qcd 0.995724 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_Down qcd 1.004259 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 JES_Up qcd 1.064964 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 JES_Down qcd 0.859450 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 metres_Up qcd 0.587560 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 metres_Down qcd 1.106969 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 b_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 b_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restoptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restoptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 JES_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 JES_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 metres_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 metres_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_Up qcd 0.897415 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_Down qcd 1.113357 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf b_Up qcd 0.975687 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf b_Down qcd 1.021700 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restoptag_Up qcd 0.999708 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restoptag_Down qcd 1.000292 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_Up qcd 1.052264 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_Down qcd 0.947643 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_Up qcd 0.999742 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_Down qcd 1.000258 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_Up qcd 0.998015 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_Down qcd 1.001982 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_Up qcd 0.994279 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_Down qcd 1.005159 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf JES_Up qcd 1.191581 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf JES_Down qcd 0.185108 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf metres_Up qcd 1.015498 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf metres_Down qcd 0.988248 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_Up qcd 1.255543 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_Down qcd 0.777923 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 b_Up qcd 1.026326 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 b_Down qcd 0.974216 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restoptag_Up qcd 0.998926 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restoptag_Down qcd 1.001076 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_Up qcd 1.073369 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_Down qcd 0.926528 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_Up qcd 0.999868 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_Down qcd 1.000131 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_Up qcd 1.009058 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_Down qcd 0.990896 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_Up qcd 0.995347 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_Down qcd 1.004798 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 JES_Up qcd 0.941226 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 JES_Down qcd 2.145186 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 metres_Up qcd 1.006636 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 metres_Down qcd 0.987017 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 b_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 b_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restoptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restoptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 JES_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 JES_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 metres_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 metres_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf b_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf b_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restoptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restoptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf JES_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf JES_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf metres_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf metres_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PU_Weight_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PU_Weight_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 b_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 b_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_restoptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_restoptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_toptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_toptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_wtag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_wtag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ivfunc_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ivfunc_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 trigger_err_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 trigger_err_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 JES_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 JES_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 metres_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 metres_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PU_Weight_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PU_Weight_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf b_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf b_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_restoptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_restoptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_toptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_toptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_wtag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_wtag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ivfunc_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ivfunc_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf trigger_err_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf trigger_err_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf JES_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf JES_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf metres_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf metres_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PU_Weight_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PU_Weight_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 b_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 b_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_restoptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_restoptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_toptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_toptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_wtag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_wtag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ivfunc_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ivfunc_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 trigger_err_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 trigger_err_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 JES_Up qcd 769775216865801.625000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 JES_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 metres_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 metres_Down qcd 798957216566482.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PU_Weight_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PU_Weight_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 b_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 b_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_restoptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_restoptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_toptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_toptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_wtag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_wtag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ivfunc_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ivfunc_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 trigger_err_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 trigger_err_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 JES_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 JES_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 metres_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 metres_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PU_Weight_Up qcd 1.708221 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PU_Weight_Down qcd 0.538005 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf b_Up qcd 1.027637 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf b_Down qcd 0.969154 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_restoptag_Up qcd 1.254360 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_restoptag_Down qcd 0.745399 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_toptag_Up qcd 1.075911 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_toptag_Down qcd 0.924050 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_wtag_Up qcd 1.000797 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_wtag_Down qcd 0.999195 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ivfunc_Up qcd 0.999748 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ivfunc_Down qcd 1.000251 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf trigger_err_Up qcd 0.998087 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf trigger_err_Down qcd 1.001320 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf JES_Up qcd 6.657642 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf JES_Down qcd 0.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf metres_Up qcd 1.022001 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf metres_Down qcd 1.001646 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PU_Weight_Up qcd 1.298731 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PU_Weight_Down qcd 0.739241 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 b_Up qcd 1.025266 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 b_Down qcd 0.974792 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_restoptag_Up qcd 1.174122 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_restoptag_Down qcd 0.825351 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_toptag_Up qcd 1.072770 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_toptag_Down qcd 0.927103 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_wtag_Up qcd 0.999597 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_wtag_Down qcd 1.000403 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ivfunc_Up qcd 0.997852 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ivfunc_Down qcd 1.002148 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 trigger_err_Up qcd 0.995765 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 trigger_err_Down qcd 1.004437 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 JES_Up qcd 0.928273 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 JES_Down qcd 0.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 metres_Up qcd 1.019682 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 metres_Down qcd 0.997911 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PU_Weight_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PU_Weight_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 b_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 b_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_restoptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_restoptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_toptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_toptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_wtag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_wtag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ivfunc_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ivfunc_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 trigger_err_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 trigger_err_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 JES_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 JES_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 metres_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 metres_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PU_Weight_Up qcd 0.855549 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PU_Weight_Down qcd 1.174763 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf b_Up qcd 1.104605 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf b_Down qcd 0.893694 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_restoptag_Up qcd 1.045957 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_restoptag_Down qcd 0.951788 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_toptag_Up qcd 1.076810 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_toptag_Down qcd 0.922960 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_wtag_Up qcd 0.999019 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_wtag_Down qcd 1.000982 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ivfunc_Up qcd 0.996649 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ivfunc_Down qcd 1.003351 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf trigger_err_Up qcd 0.996785 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf trigger_err_Down qcd 1.003169 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf JES_Up qcd 1.019863 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf JES_Down qcd 0.958747 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf metres_Up qcd 0.985878 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf metres_Down qcd 0.942209 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PU_Weight_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PU_Weight_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 b_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 b_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_restoptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_restoptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_toptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_toptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_wtag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_wtag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ivfunc_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ivfunc_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 trigger_err_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 trigger_err_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 JES_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 JES_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 metres_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 metres_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PU_Weight_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PU_Weight_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf b_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf b_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_restoptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_restoptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_toptag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_toptag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_wtag_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_wtag_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ivfunc_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ivfunc_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf trigger_err_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf trigger_err_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf JES_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf JES_Down qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf metres_Up qcd 1.000000 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf metres_Down qcd 1.000000 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_Up qcd 0.999875 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_Down qcd 0.999410 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_Up qcd 0.988892 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_Down qcd 1.011262 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Up qcd 0.998414 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Down qcd 1.001592 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_Up qcd 0.999350 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_Down qcd 1.000651 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_Up qcd 0.999291 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_Down qcd 1.000710 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_Up qcd 0.997266 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_Down qcd 1.002731 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_Up qcd 0.994298 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_Down qcd 1.005584 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_Up qcd 0.940653 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_Down qcd 1.070733 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 metres_Up qcd 0.000000 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 metres_Down qcd 0.000000 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_Up qcd 0.997272 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_Down qcd 1.003400 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_Up qcd 0.989954 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_Down qcd 1.010147 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Up qcd 0.998259 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Down qcd 1.001748 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_Up qcd 0.999396 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_Down qcd 1.000604 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_Up qcd 0.999292 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_Down qcd 1.000710 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_Up qcd 0.997157 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_Down qcd 1.002840 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_Up qcd 0.993915 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_Down qcd 1.005676 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_Up qcd 0.963725 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_Down qcd 1.045866 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 metres_Up qcd 0.000000 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 metres_Down qcd 0.000000 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_Up qcd 0.984210 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_Down qcd 1.017608 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_Up qcd 0.991565 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_Down qcd 1.008528 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Up qcd 0.998367 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Down qcd 1.001638 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_Up qcd 0.999388 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_Down qcd 1.000612 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_Up qcd 0.999266 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_Down qcd 1.000735 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_Up qcd 0.997373 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_Down qcd 1.002625 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_Up qcd 0.994119 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_Down qcd 1.005439 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_Up qcd 0.976129 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_Down qcd 0.977518 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 metres_Up qcd 0.000000 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 metres_Down qcd 0.000000 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_Up qcd 0.990821 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_Down qcd 1.008115 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_Up qcd 0.990904 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_Down qcd 1.009211 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Up qcd 0.998433 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Down qcd 1.001573 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_Up qcd 0.999347 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_Down qcd 1.000654 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_Up qcd 0.999128 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_Down qcd 1.000874 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_Up qcd 0.997365 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_Down qcd 1.002634 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_Up qcd 0.994233 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_Down qcd 1.005330 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_Up qcd 0.986494 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_Down qcd 1.012330 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf metres_Up qcd 0.000000 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf metres_Down qcd 0.000000 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_Up qcd 1.011690 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_Down qcd 0.989898 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_Up qcd 0.984567 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_Down qcd 1.015719 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restoptag_Up qcd 0.999003 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restoptag_Down qcd 1.000999 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_Up qcd 0.999227 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_Down qcd 1.000773 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_Up qcd 0.999397 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_Down qcd 1.000603 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_Up qcd 0.997816 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_Down qcd 1.002182 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_Up qcd 0.995433 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_Down qcd 1.004405 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_Up qcd 1.141055 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_Down qcd 1.039842 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 metres_Up qcd 0.000000 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 metres_Down qcd 0.000000 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_Up qcd 0.991095 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_Down qcd 1.011499 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_Up qcd 0.983705 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_Down qcd 1.016596 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restoptag_Up qcd 0.999086 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restoptag_Down qcd 1.000916 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_Up qcd 0.999156 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_Down qcd 1.000843 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_Up qcd 0.999420 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_Down qcd 1.000581 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_Up qcd 0.997885 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_Down qcd 1.002112 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_Up qcd 0.995139 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_Down qcd 1.004356 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_Up qcd 1.068445 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_Down qcd 1.035149 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 metres_Up qcd 0.000000 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 metres_Down qcd 0.000000 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_Up qcd 1.025979 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_Down qcd 0.976722 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_Up qcd 0.985151 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_Down qcd 1.015080 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restoptag_Up qcd 0.999093 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restoptag_Down qcd 1.000909 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_Up qcd 0.999313 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_Down qcd 1.000687 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_Up qcd 0.999326 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_Down qcd 1.000675 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_Up qcd 0.998035 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_Down qcd 1.001963 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_Up qcd 0.995285 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_Down qcd 1.004200 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_Up qcd 1.114590 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_Down qcd 1.002845 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 metres_Up qcd 0.000000 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 metres_Down qcd 0.000000 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_Up qcd 0.997790 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_Down qcd 1.003522 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_Up qcd 0.983455 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_Down qcd 1.016790 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restoptag_Up qcd 0.999125 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restoptag_Down qcd 1.000876 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_Up qcd 0.999220 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_Down qcd 1.000779 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_Up qcd 0.999512 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_Down qcd 1.000489 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_Up qcd 0.997951 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_Down qcd 1.002045 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_Up qcd 0.995343 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_Down qcd 1.004166 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_Up qcd 1.056621 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_Down qcd 1.028749 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf metres_Up qcd 0.000000 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf metres_Down qcd 0.000000 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_Up qcd 0.997705 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_Down qcd 1.000356 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_Up qcd 0.987882 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_Down qcd 1.012245 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Up qcd 0.999094 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Down qcd 1.000910 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_Up qcd 0.999080 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_Down qcd 1.000919 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_Up qcd 0.999457 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_Down qcd 1.000544 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_Up qcd 1.052754 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_Down qcd 0.947389 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_Up qcd 0.994927 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_Down qcd 1.004951 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_Up qcd 0.934630 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_Down qcd 1.063716 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 metres_Up qcd 0.000000 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 metres_Down qcd 0.000000 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_Up qcd 0.970144 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_Down qcd 1.028815 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_Up qcd 0.984301 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_Down qcd 1.015794 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Up qcd 0.997846 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Down qcd 1.002164 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_Up qcd 0.999369 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_Down qcd 1.000631 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_Up qcd 0.999462 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_Down qcd 1.000538 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_Up qcd 1.062885 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_Down qcd 0.938104 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_Up qcd 0.992661 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_Down qcd 1.006992 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_Up qcd 0.963075 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_Down qcd 1.070160 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 metres_Up qcd 0.000000 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 metres_Down qcd 0.000000 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PU_Weight_Up qcd 0.994851 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PU_Weight_Down qcd 1.000496 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 b_Up qcd 0.993864 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 b_Down qcd 1.006149 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Up qcd 0.998713 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Down qcd 1.001292 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_toptag_Up qcd 0.999214 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_toptag_Down qcd 1.000786 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_wtag_Up qcd 0.999489 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_wtag_Down qcd 1.000512 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ivfunc_Up qcd 1.048879 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ivfunc_Down qcd 0.950854 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 trigger_err_Up qcd 0.994106 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 trigger_err_Down qcd 1.005446 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 JES_Up qcd 0.871206 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 JES_Down qcd 0.909391 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 metres_Up qcd 0.000000 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 metres_Down qcd 0.000000 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PU_Weight_Up qcd 0.994851 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PU_Weight_Down qcd 1.000496 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf b_Up qcd 0.993864 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf b_Down qcd 1.006149 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Up qcd 0.998713 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Down qcd 1.001292 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_toptag_Up qcd 0.999214 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_toptag_Down qcd 1.000786 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_wtag_Up qcd 0.999489 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_wtag_Down qcd 1.000512 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ivfunc_Up qcd 1.048879 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ivfunc_Down qcd 0.950854 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf trigger_err_Up qcd 0.994106 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf trigger_err_Down qcd 1.005446 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf JES_Up qcd 0.871206 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf JES_Down qcd 0.909391 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf metres_Up qcd 0.000000 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf metres_Down qcd 0.000000 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PU_Weight_Up qcd 1.027743 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PU_Weight_Down qcd 0.960648 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 b_Up qcd 0.988643 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 b_Down qcd 1.011364 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_restoptag_Up qcd 0.998312 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_restoptag_Down qcd 1.001697 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_toptag_Up qcd 0.999383 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_toptag_Down qcd 1.000618 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_wtag_Up qcd 0.999161 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_wtag_Down qcd 1.000840 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ivfunc_Up qcd 1.047717 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ivfunc_Down qcd 0.951925 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 trigger_err_Up qcd 0.993974 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 trigger_err_Down qcd 1.005678 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 JES_Up qcd 1.960488 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 JES_Down qcd 0.878648 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 metres_Up qcd 0.000000 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 metres_Down qcd 0.000000 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PU_Weight_Up qcd 1.027743 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PU_Weight_Down qcd 0.960648 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 b_Up qcd 0.988643 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 b_Down qcd 1.011364 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_restoptag_Up qcd 0.998312 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_restoptag_Down qcd 1.001697 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_toptag_Up qcd 0.999383 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_toptag_Down qcd 1.000618 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_wtag_Up qcd 0.999161 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_wtag_Down qcd 1.000840 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ivfunc_Up qcd 1.047717 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ivfunc_Down qcd 0.951925 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 trigger_err_Up qcd 0.993974 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 trigger_err_Down qcd 1.005678 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 JES_Up qcd 1.960488 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 JES_Down qcd 0.878648 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 metres_Up qcd 0.000000 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 metres_Down qcd 0.000000 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PU_Weight_Up qcd 1.027743 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PU_Weight_Down qcd 0.960648 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 b_Up qcd 0.988643 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 b_Down qcd 1.011364 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_restoptag_Up qcd 0.998312 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_restoptag_Down qcd 1.001697 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_toptag_Up qcd 0.999383 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_toptag_Down qcd 1.000618 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_wtag_Up qcd 0.999161 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_wtag_Down qcd 1.000840 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ivfunc_Up qcd 1.047717 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ivfunc_Down qcd 0.951925 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 trigger_err_Up qcd 0.993974 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 trigger_err_Down qcd 1.005678 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 JES_Up qcd 1.960488 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 JES_Down qcd 0.878648 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 metres_Up qcd 0.000000 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 metres_Down qcd 0.000000 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PU_Weight_Up qcd 1.027743 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PU_Weight_Down qcd 0.960648 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf b_Up qcd 0.988643 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf b_Down qcd 1.011364 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_restoptag_Up qcd 0.998312 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_restoptag_Down qcd 1.001697 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_toptag_Up qcd 0.999383 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_toptag_Down qcd 1.000618 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_wtag_Up qcd 0.999161 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_wtag_Down qcd 1.000840 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ivfunc_Up qcd 1.047717 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ivfunc_Down qcd 0.951925 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf trigger_err_Up qcd 0.993974 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf trigger_err_Down qcd 1.005678 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf JES_Up qcd 1.960488 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf JES_Down qcd 0.878648 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf metres_Up qcd 0.000000 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf metres_Down qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_Up qcd 1.006945 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_Down qcd 0.994847 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_Up qcd 1.063518 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_Down qcd 0.934485 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restoptag_Up qcd 0.998349 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restoptag_Down qcd 1.001657 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_Up qcd 0.999416 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_Down qcd 1.000584 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_Up qcd 0.998910 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_Down qcd 1.001093 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_Up qcd 0.997422 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_Down qcd 1.002577 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_Up qcd 0.994145 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_Down qcd 1.006098 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_Up qcd 1.090051 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_Down qcd 1.051366 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 metres_Up qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 metres_Down qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_Up qcd 1.037227 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_Down qcd 0.958494 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_Up qcd 1.077960 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_Down qcd 0.920253 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restoptag_Up qcd 0.998403 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restoptag_Down qcd 1.001601 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_Up qcd 0.999263 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_Down qcd 1.000735 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_Up qcd 0.998940 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_Down qcd 1.001062 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_Up qcd 0.997642 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_Down qcd 1.002356 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_Up qcd 0.994559 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_Down qcd 1.005506 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_Up qcd 0.981634 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_Down qcd 1.024425 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 metres_Up qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 metres_Down qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PU_Weight_Up qcd 1.100270 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PU_Weight_Down qcd 0.901993 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 b_Up qcd 1.105430 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 b_Down qcd 0.892092 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_restoptag_Up qcd 0.999254 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_restoptag_Down qcd 1.000749 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_toptag_Up qcd 0.999197 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_toptag_Down qcd 1.000803 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_wtag_Up qcd 0.999187 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_wtag_Down qcd 1.000814 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ivfunc_Up qcd 0.997893 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ivfunc_Down qcd 1.002107 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 trigger_err_Up qcd 0.994706 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 trigger_err_Down qcd 1.004752 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 JES_Up qcd 1.007237 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 JES_Down qcd 0.897188 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 metres_Up qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 metres_Down qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PU_Weight_Up qcd 1.100270 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PU_Weight_Down qcd 0.901993 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf b_Up qcd 1.105430 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf b_Down qcd 0.892092 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_restoptag_Up qcd 0.999254 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_restoptag_Down qcd 1.000749 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_toptag_Up qcd 0.999197 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_toptag_Down qcd 1.000803 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_wtag_Up qcd 0.999187 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_wtag_Down qcd 1.000814 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ivfunc_Up qcd 0.997893 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ivfunc_Down qcd 1.002107 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf trigger_err_Up qcd 0.994706 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf trigger_err_Down qcd 1.004752 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf JES_Up qcd 1.007237 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf JES_Down qcd 0.897188 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf metres_Up qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf metres_Down qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_Up qcd 0.951980 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_Down qcd 1.049751 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_Up qcd 0.995307 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_Down qcd 1.004769 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restoptag_Up qcd 0.996589 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restoptag_Down qcd 1.003427 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_Up qcd 0.999619 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_Down qcd 1.000382 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_Up qcd 0.999400 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_Down qcd 1.000600 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_Up qcd 0.995813 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_Down qcd 1.004187 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_Up qcd 0.990115 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_Down qcd 1.009668 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_Up qcd 1.338263 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_Down qcd 1.138480 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 metres_Up qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 metres_Down qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_Up qcd 1.017665 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_Down qcd 0.984739 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_Up qcd 1.007353 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_Down qcd 0.992012 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restoptag_Up qcd 0.998395 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restoptag_Down qcd 1.001611 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_Up qcd 0.999260 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_Down qcd 1.000740 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_Up qcd 0.999180 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_Down qcd 1.000821 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_Up qcd 0.997347 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_Down qcd 1.002653 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_Up qcd 0.994545 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_Down qcd 1.005702 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_Up qcd 1.030562 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_Down qcd 0.939539 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 metres_Up qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 metres_Down qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PU_Weight_Up qcd 1.063908 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PU_Weight_Down qcd 0.944066 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 b_Up qcd 1.023279 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 b_Down qcd 0.975772 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_restoptag_Up qcd 0.998609 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_restoptag_Down qcd 1.001395 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_toptag_Up qcd 0.999366 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_toptag_Down qcd 1.000635 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_wtag_Up qcd 0.998966 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_wtag_Down qcd 1.001036 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ivfunc_Up qcd 0.997679 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ivfunc_Down qcd 1.002319 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 trigger_err_Up qcd 0.994870 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 trigger_err_Down qcd 1.005149 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 JES_Up qcd 1.018034 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 JES_Down qcd 0.983112 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 metres_Up qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 metres_Down qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PU_Weight_Up qcd 1.063908 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PU_Weight_Down qcd 0.944066 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf b_Up qcd 1.023279 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf b_Down qcd 0.975772 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_restoptag_Up qcd 0.998609 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_restoptag_Down qcd 1.001395 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_toptag_Up qcd 0.999366 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_toptag_Down qcd 1.000635 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_wtag_Up qcd 0.998966 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_wtag_Down qcd 1.001036 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ivfunc_Up qcd 0.997679 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ivfunc_Down qcd 1.002319 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf trigger_err_Up qcd 0.994870 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf trigger_err_Down qcd 1.005149 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf JES_Up qcd 1.018034 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf JES_Down qcd 0.983112 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf metres_Up qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf metres_Down qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_Up qcd 0.997332 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_Down qcd 1.006173 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_Up qcd 0.983473 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_Down qcd 1.016724 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restoptag_Up qcd 0.999309 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restoptag_Down qcd 1.000694 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_Up qcd 0.999134 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_Down qcd 1.000866 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_Up qcd 0.999470 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_Down qcd 1.000531 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_Up qcd 1.050832 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_Down qcd 0.949084 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_Up qcd 0.994870 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_Down qcd 1.004971 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_Up qcd 1.086242 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_Down qcd 1.075164 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 metres_Up qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 metres_Down qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PU_Weight_Up qcd 1.003780 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PU_Weight_Down qcd 1.002054 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 b_Up qcd 0.971783 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 b_Down qcd 1.028771 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_restoptag_Up qcd 0.999240 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_restoptag_Down qcd 1.000761 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_toptag_Up qcd 0.999176 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_toptag_Down qcd 1.000823 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_wtag_Up qcd 0.999113 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_wtag_Down qcd 1.000888 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ivfunc_Up qcd 1.046309 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ivfunc_Down qcd 0.953494 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 trigger_err_Up qcd 0.995688 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 trigger_err_Down qcd 1.003806 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 JES_Up qcd 1.308724 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 JES_Down qcd 1.026586 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 metres_Up qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 metres_Down qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PU_Weight_Up qcd 1.003780 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PU_Weight_Down qcd 1.002054 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 b_Up qcd 0.971783 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 b_Down qcd 1.028771 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_restoptag_Up qcd 0.999240 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_restoptag_Down qcd 1.000761 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_toptag_Up qcd 0.999176 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_toptag_Down qcd 1.000823 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_wtag_Up qcd 0.999113 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_wtag_Down qcd 1.000888 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ivfunc_Up qcd 1.046309 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ivfunc_Down qcd 0.953494 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 trigger_err_Up qcd 0.995688 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 trigger_err_Down qcd 1.003806 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 JES_Up qcd 1.308724 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 JES_Down qcd 1.026586 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 metres_Up qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 metres_Down qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PU_Weight_Up qcd 1.003780 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PU_Weight_Down qcd 1.002054 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf b_Up qcd 0.971783 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf b_Down qcd 1.028771 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_restoptag_Up qcd 0.999240 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_restoptag_Down qcd 1.000761 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_toptag_Up qcd 0.999176 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_toptag_Down qcd 1.000823 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_wtag_Up qcd 0.999113 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_wtag_Down qcd 1.000888 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ivfunc_Up qcd 1.046309 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ivfunc_Down qcd 0.953494 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf trigger_err_Up qcd 0.995688 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf trigger_err_Down qcd 1.003806 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf JES_Up qcd 1.308724 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf JES_Down qcd 1.026586 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf metres_Up qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf metres_Down qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_Up qcd 0.974977 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_Down qcd 1.033423 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_Up qcd 0.982711 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_Down qcd 1.017526 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restoptag_Up qcd 0.999145 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restoptag_Down qcd 1.000853 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_Up qcd 0.999290 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_Down qcd 1.000710 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_Up qcd 0.999883 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_Down qcd 1.000117 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_Up qcd 1.045475 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_Down qcd 0.954346 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_Up qcd 0.994442 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_Down qcd 1.004992 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_Up qcd 0.831850 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_Down qcd 1.247764 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 metres_Up qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 metres_Down qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PU_Weight_Up qcd 0.990856 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PU_Weight_Down qcd 0.993379 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 b_Up qcd 0.984357 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 b_Down qcd 1.015842 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_restoptag_Up qcd 0.998826 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_restoptag_Down qcd 1.001179 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_toptag_Up qcd 0.998994 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_toptag_Down qcd 1.001003 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_wtag_Up qcd 0.999342 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_wtag_Down qcd 1.000658 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ivfunc_Up qcd 1.049676 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ivfunc_Down qcd 0.950043 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 trigger_err_Up qcd 0.996243 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 trigger_err_Down qcd 1.003303 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 JES_Up qcd 0.943955 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 JES_Down qcd 0.992357 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 metres_Up qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 metres_Down qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PU_Weight_Up qcd 0.990856 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PU_Weight_Down qcd 0.993379 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 b_Up qcd 0.984357 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 b_Down qcd 1.015842 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_restoptag_Up qcd 0.998826 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_restoptag_Down qcd 1.001179 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_toptag_Up qcd 0.998994 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_toptag_Down qcd 1.001003 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_wtag_Up qcd 0.999342 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_wtag_Down qcd 1.000658 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ivfunc_Up qcd 1.049676 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ivfunc_Down qcd 0.950043 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 trigger_err_Up qcd 0.996243 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 trigger_err_Down qcd 1.003303 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 JES_Up qcd 0.943955 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 JES_Down qcd 0.992357 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 metres_Up qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 metres_Down qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PU_Weight_Up qcd 0.990856 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PU_Weight_Down qcd 0.993379 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf b_Up qcd 0.984357 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf b_Down qcd 1.015842 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_restoptag_Up qcd 0.998826 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_restoptag_Down qcd 1.001179 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_toptag_Up qcd 0.998994 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_toptag_Down qcd 1.001003 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_wtag_Up qcd 0.999342 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_wtag_Down qcd 1.000658 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ivfunc_Up qcd 1.049676 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ivfunc_Down qcd 0.950043 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf trigger_err_Up qcd 0.996243 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf trigger_err_Down qcd 1.003303 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf JES_Up qcd 0.943955 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf JES_Down qcd 0.992357 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf metres_Up qcd 0.000000 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf metres_Down qcd 0.000000 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PU_Weight_Up qcd 1.071205 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PU_Weight_Down qcd 0.915728 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_Up qcd 1.032680 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_Down qcd 0.966732 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restoptag_Up qcd 0.999209 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restoptag_Down qcd 1.000797 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_Up qcd 0.999173 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_Down qcd 1.000827 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_Up qcd 0.999377 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_Down qcd 1.000624 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_Up qcd 0.997676 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_Down qcd 1.002327 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_Up qcd 0.994824 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_Down qcd 1.004631 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_Up qcd 0.985261 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_Down qcd 0.961682 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 metres_Up qcd 0.000000 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 metres_Down qcd 0.000000 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PU_Weight_Up qcd 1.299365 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PU_Weight_Down qcd 0.745288 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 b_Up qcd 1.119916 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 b_Down qcd 0.879558 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_restoptag_Up qcd 0.999674 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_restoptag_Down qcd 1.000329 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_toptag_Up qcd 0.999111 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_toptag_Down qcd 1.000889 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_wtag_Up qcd 0.999486 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_wtag_Down qcd 1.000514 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ivfunc_Up qcd 0.997921 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ivfunc_Down qcd 1.002081 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 trigger_err_Up qcd 0.994745 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 trigger_err_Down qcd 1.004698 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 JES_Up qcd 0.918859 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 JES_Down qcd 1.001002 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 metres_Up qcd 0.000000 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 metres_Down qcd 0.000000 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PU_Weight_Up qcd 1.299365 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PU_Weight_Down qcd 0.745288 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf b_Up qcd 1.119916 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf b_Down qcd 0.879558 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_restoptag_Up qcd 0.999674 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_restoptag_Down qcd 1.000329 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_toptag_Up qcd 0.999111 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_toptag_Down qcd 1.000889 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_wtag_Up qcd 0.999486 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_wtag_Down qcd 1.000514 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ivfunc_Up qcd 0.997921 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ivfunc_Down qcd 1.002081 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf trigger_err_Up qcd 0.994745 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf trigger_err_Down qcd 1.004698 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf JES_Up qcd 0.918859 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf JES_Down qcd 1.001002 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf metres_Up qcd 0.000000 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf metres_Down qcd 0.000000 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_Up qcd 1.026337 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_Down qcd 0.970683 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_Up qcd 1.021274 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_Down qcd 0.977489 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restoptag_Up qcd 0.998257 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restoptag_Down qcd 1.001749 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_Up qcd 0.999258 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_Down qcd 1.000741 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_Up qcd 0.999260 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_Down qcd 1.000740 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_Up qcd 0.997394 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_Down qcd 1.002605 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_Up qcd 0.995439 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_Down qcd 1.004126 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_Up qcd 0.982161 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_Down qcd 1.012019 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 metres_Up qcd 0.000000 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 metres_Down qcd 0.000000 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PU_Weight_Up qcd 0.961881 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PU_Weight_Down qcd 1.044400 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 b_Up qcd 1.074922 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 b_Down qcd 0.922980 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_restoptag_Up qcd 0.998460 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_restoptag_Down qcd 1.001549 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_toptag_Up qcd 0.999065 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_toptag_Down qcd 1.000936 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_wtag_Up qcd 0.999372 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_wtag_Down qcd 1.000628 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ivfunc_Up qcd 1.052935 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ivfunc_Down qcd 0.946679 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 trigger_err_Up qcd 0.995411 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 trigger_err_Down qcd 1.004747 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 JES_Up qcd 0.930013 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 JES_Down qcd 1.097086 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 metres_Up qcd 0.000000 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 metres_Down qcd 0.000000 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PU_Weight_Up qcd 0.961881 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PU_Weight_Down qcd 1.044400 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf b_Up qcd 1.074922 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf b_Down qcd 0.922980 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_restoptag_Up qcd 0.998460 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_restoptag_Down qcd 1.001549 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_toptag_Up qcd 0.999065 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_toptag_Down qcd 1.000936 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_wtag_Up qcd 0.999372 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_wtag_Down qcd 1.000628 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ivfunc_Up qcd 1.052935 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ivfunc_Down qcd 0.946679 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf trigger_err_Up qcd 0.995411 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf trigger_err_Down qcd 1.004747 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf JES_Up qcd 0.930013 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf JES_Down qcd 1.097086 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf metres_Up qcd 0.000000 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf metres_Down qcd 0.000000 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PU_Weight_Up qcd 1.049444 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PU_Weight_Down qcd 0.951718 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 b_Up qcd 1.008200 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 b_Down qcd 0.990909 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_restoptag_Up qcd 0.998802 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_restoptag_Down qcd 1.001203 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_toptag_Up qcd 0.999327 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_toptag_Down qcd 1.000672 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_wtag_Up qcd 0.999414 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_wtag_Down qcd 1.000586 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ivfunc_Up qcd 0.997833 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ivfunc_Down qcd 1.002167 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 trigger_err_Up qcd 0.995442 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 trigger_err_Down qcd 1.004055 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 JES_Up qcd 1.065058 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 JES_Down qcd 0.874974 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 metres_Up qcd 0.000000 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 metres_Down qcd 0.000000 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PU_Weight_Up qcd 1.049444 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PU_Weight_Down qcd 0.951718 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 b_Up qcd 1.008200 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 b_Down qcd 0.990909 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_restoptag_Up qcd 0.998802 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_restoptag_Down qcd 1.001203 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_toptag_Up qcd 0.999327 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_toptag_Down qcd 1.000672 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_wtag_Up qcd 0.999414 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_wtag_Down qcd 1.000586 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ivfunc_Up qcd 0.997833 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ivfunc_Down qcd 1.002167 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 trigger_err_Up qcd 0.995442 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 trigger_err_Down qcd 1.004055 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 JES_Up qcd 1.065058 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 JES_Down qcd 0.874974 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 metres_Up qcd 0.000000 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 metres_Down qcd 0.000000 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PU_Weight_Up qcd 1.049444 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PU_Weight_Down qcd 0.951718 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf b_Up qcd 1.008200 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf b_Down qcd 0.990909 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_restoptag_Up qcd 0.998802 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_restoptag_Down qcd 1.001203 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_toptag_Up qcd 0.999327 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_toptag_Down qcd 1.000672 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_wtag_Up qcd 0.999414 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_wtag_Down qcd 1.000586 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ivfunc_Up qcd 0.997833 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ivfunc_Down qcd 1.002167 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf trigger_err_Up qcd 0.995442 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf trigger_err_Down qcd 1.004055 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf JES_Up qcd 1.065058 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf JES_Down qcd 0.874974 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf metres_Up qcd 0.000000 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf metres_Down qcd 0.000000 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PU_Weight_Up qcd 1.026322 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PU_Weight_Down qcd 0.974604 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 b_Up qcd 1.067045 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 b_Down qcd 0.932393 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_restoptag_Up qcd 0.998627 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_restoptag_Down qcd 1.001377 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_toptag_Up qcd 0.999340 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_toptag_Down qcd 1.000660 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_wtag_Up qcd 0.999438 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_wtag_Down qcd 1.000563 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ivfunc_Up qcd 0.997669 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ivfunc_Down qcd 1.002332 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 trigger_err_Up qcd 0.994633 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 trigger_err_Down qcd 1.004856 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 JES_Up qcd 0.885545 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 JES_Down qcd 1.097685 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 metres_Up qcd 0.000000 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 metres_Down qcd 0.000000 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PU_Weight_Up qcd 1.026322 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PU_Weight_Down qcd 0.974604 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 b_Up qcd 1.067045 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 b_Down qcd 0.932393 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_restoptag_Up qcd 0.998627 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_restoptag_Down qcd 1.001377 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_toptag_Up qcd 0.999340 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_toptag_Down qcd 1.000660 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_wtag_Up qcd 0.999438 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_wtag_Down qcd 1.000563 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ivfunc_Up qcd 0.997669 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ivfunc_Down qcd 1.002332 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 trigger_err_Up qcd 0.994633 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 trigger_err_Down qcd 1.004856 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 JES_Up qcd 0.885545 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 JES_Down qcd 1.097685 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 metres_Up qcd 0.000000 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 metres_Down qcd 0.000000 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PU_Weight_Up qcd 1.026322 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PU_Weight_Down qcd 0.974604 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf b_Up qcd 1.067045 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf b_Down qcd 0.932393 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_restoptag_Up qcd 0.998627 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_restoptag_Down qcd 1.001377 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_toptag_Up qcd 0.999340 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_toptag_Down qcd 1.000660 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_wtag_Up qcd 0.999438 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_wtag_Down qcd 1.000563 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ivfunc_Up qcd 0.997669 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ivfunc_Down qcd 1.002332 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf trigger_err_Up qcd 0.994633 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf trigger_err_Down qcd 1.004856 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf JES_Up qcd 0.885545 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf JES_Down qcd 1.097685 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf metres_Up qcd 0.000000 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf metres_Down qcd 0.000000 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_Up qcd 1.003045 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_Down qcd 0.974505 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_Up qcd 1.022657 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_Down qcd 0.976259 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restoptag_Up qcd 0.998149 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restoptag_Down qcd 1.001858 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_Up qcd 0.999371 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_Down qcd 1.000629 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_Up qcd 0.999365 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_Down qcd 1.000635 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_Up qcd 0.996980 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_Down qcd 1.003016 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_Up qcd 0.993987 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_Down qcd 1.005634 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_Up qcd 0.912632 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_Down qcd 1.032418 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 metres_Up qcd 0.000000 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 metres_Down qcd 0.000000 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PU_Weight_Up qcd 1.031008 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PU_Weight_Down qcd 0.968957 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 b_Up qcd 1.013681 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 b_Down qcd 0.986103 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_restoptag_Up qcd 0.998433 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_restoptag_Down qcd 1.001576 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_toptag_Up qcd 0.999456 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_toptag_Down qcd 1.000545 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_wtag_Up qcd 0.999448 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_wtag_Down qcd 1.000552 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ivfunc_Up qcd 0.996637 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ivfunc_Down qcd 1.003357 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 trigger_err_Up qcd 0.993988 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 trigger_err_Down qcd 1.005999 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 JES_Up qcd 0.574599 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 JES_Down qcd 1.028414 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 metres_Up qcd 0.000000 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 metres_Down qcd 0.000000 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PU_Weight_Up qcd 1.031008 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PU_Weight_Down qcd 0.968957 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf b_Up qcd 1.013681 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf b_Down qcd 0.986103 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_restoptag_Up qcd 0.998433 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_restoptag_Down qcd 1.001576 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_toptag_Up qcd 0.999456 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_toptag_Down qcd 1.000545 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_wtag_Up qcd 0.999448 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_wtag_Down qcd 1.000552 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ivfunc_Up qcd 0.996637 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ivfunc_Down qcd 1.003357 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf trigger_err_Up qcd 0.993988 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf trigger_err_Down qcd 1.005999 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf JES_Up qcd 0.574599 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf JES_Down qcd 1.028414 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf metres_Up qcd 0.000000 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf metres_Down qcd 0.000000 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PU_Weight_Up qcd 1.009989 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PU_Weight_Down qcd 0.986522 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 b_Up qcd 1.048047 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 b_Down qcd 0.950515 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_restoptag_Up qcd 0.998391 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_restoptag_Down qcd 1.001612 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_toptag_Up qcd 0.999348 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_toptag_Down qcd 1.000651 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_wtag_Up qcd 0.999466 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_wtag_Down qcd 1.000535 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ivfunc_Up qcd 0.997408 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ivfunc_Down qcd 1.002590 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 trigger_err_Up qcd 0.994206 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 trigger_err_Down qcd 1.005694 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 JES_Up qcd 0.958835 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 JES_Down qcd 1.041701 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 metres_Up qcd 0.000000 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 metres_Down qcd 0.000000 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PU_Weight_Up qcd 1.009989 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PU_Weight_Down qcd 0.986522 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 b_Up qcd 1.048047 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 b_Down qcd 0.950515 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_restoptag_Up qcd 0.998391 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_restoptag_Down qcd 1.001612 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_toptag_Up qcd 0.999348 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_toptag_Down qcd 1.000651 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_wtag_Up qcd 0.999466 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_wtag_Down qcd 1.000535 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ivfunc_Up qcd 0.997408 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ivfunc_Down qcd 1.002590 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 trigger_err_Up qcd 0.994206 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 trigger_err_Down qcd 1.005694 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 JES_Up qcd 0.958835 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 JES_Down qcd 1.041701 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 metres_Up qcd 0.000000 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 metres_Down qcd 0.000000 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PU_Weight_Up qcd 1.009989 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PU_Weight_Down qcd 0.986522 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf b_Up qcd 1.048047 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf b_Down qcd 0.950515 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_restoptag_Up qcd 0.998391 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_restoptag_Down qcd 1.001612 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_toptag_Up qcd 0.999348 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_toptag_Down qcd 1.000651 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_wtag_Up qcd 0.999466 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_wtag_Down qcd 1.000535 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ivfunc_Up qcd 0.997408 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ivfunc_Down qcd 1.002590 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf trigger_err_Up qcd 0.994206 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf trigger_err_Down qcd 1.005694 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf JES_Up qcd 0.958835 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf JES_Down qcd 1.041701 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf metres_Up qcd 0.000000 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf metres_Down qcd 0.000000 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_Up qcd 1.039292 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_Down qcd 0.972023 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_Up qcd 1.056371 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_Down qcd 0.941547 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restoptag_Up qcd 0.998693 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restoptag_Down qcd 1.001309 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_Up qcd 0.999315 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_Down qcd 1.000685 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_Up qcd 0.999056 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_Down qcd 1.000945 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_Up qcd 0.997838 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_Down qcd 1.002157 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_Up qcd 0.994677 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_Down qcd 1.004812 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_Up qcd 1.004823 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_Down qcd 1.208235 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 metres_Up qcd 0.000000 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 metres_Down qcd 0.000000 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PU_Weight_Up qcd 0.971403 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PU_Weight_Down qcd 1.038475 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 b_Up qcd 1.052280 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 b_Down qcd 0.946277 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_restoptag_Up qcd 0.998418 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_restoptag_Down qcd 1.001590 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_toptag_Up qcd 0.999195 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_toptag_Down qcd 1.000806 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_wtag_Up qcd 0.999295 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_wtag_Down qcd 1.000706 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ivfunc_Up qcd 0.996956 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ivfunc_Down qcd 1.003042 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 trigger_err_Up qcd 0.995112 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 trigger_err_Down qcd 1.004484 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 JES_Up qcd 0.945463 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 JES_Down qcd 1.038115 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 metres_Up qcd 0.000000 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 metres_Down qcd 0.000000 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PU_Weight_Up qcd 0.971403 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PU_Weight_Down qcd 1.038475 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf b_Up qcd 1.052280 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf b_Down qcd 0.946277 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_restoptag_Up qcd 0.998418 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_restoptag_Down qcd 1.001590 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_toptag_Up qcd 0.999195 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_toptag_Down qcd 1.000806 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_wtag_Up qcd 0.999295 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_wtag_Down qcd 1.000706 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ivfunc_Up qcd 0.996956 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ivfunc_Down qcd 1.003042 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf trigger_err_Up qcd 0.995112 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf trigger_err_Down qcd 1.004484 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf JES_Up qcd 0.945463 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf JES_Down qcd 1.038115 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf metres_Up qcd 0.000000 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf metres_Down qcd 0.000000 diff --git a/Datacards/setup/SUSYNano19/values_unc_ttZ.conf b/Datacards/setup/SUSYNano19/values_unc_ttZ.conf index e752353..63563b8 100644 --- a/Datacards/setup/SUSYNano19/values_unc_ttZ.conf +++ b/Datacards/setup/SUSYNano19/values_unc_ttZ.conf @@ -1,5490 +1,5490 @@ -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 b_up ttZ 1.03819242136 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 b_down ttZ 1.03823132694 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 b_up ttZ 1.01417424793 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 b_down ttZ 1.01459978581 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_up ttZ 1.00152043153 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_down ttZ 1.00284374631 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf b_up ttZ 1.01718648952 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf b_down ttZ 1.01768151127 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 b_up ttZ 1.03325137864 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 b_down ttZ 1.03291295114 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_up ttZ 1.08310975543 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_down ttZ 1.08045389655 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_up ttZ 1.01432889297 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_down ttZ 1.01506015172 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 b_up ttZ 1.01796247981 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 b_down ttZ 1.01808267372 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_up ttZ 1.05596675011 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_down ttZ 1.05256601718 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_up ttZ 1.01869231526 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_down ttZ 1.01997289862 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 b_up ttZ 0.997426237487 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 b_down ttZ 0.994688045184 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_up ttZ 1.02007674706 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_down ttZ 1.02138277415 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf b_up ttZ 1.05829158684 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf b_down ttZ 1.05758340312 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 b_up ttZ 1.02404917789 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 b_down ttZ 1.02544837137 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf b_up ttZ 1.02823048954 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf b_down ttZ 1.02987037304 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_up ttZ 1.02917527493 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_down ttZ 1.02925039166 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_up ttZ 1.01137335882 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_down ttZ 1.01268902101 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 b_up ttZ 1.04386504038 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 b_down ttZ 1.04431261238 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 b_up ttZ 1.02118136712 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 b_down ttZ 1.02139642078 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 b_up ttZ 1.01632874843 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 b_down ttZ 1.01690687631 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf b_up ttZ 1.00841100452 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf b_down ttZ 1.00947725681 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_up ttZ 1.05484739442 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_down ttZ 1.0545709627 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf b_up ttZ 1.03114489889 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf b_down ttZ 1.03129806883 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 b_up ttZ 1.02686945227 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 b_down ttZ 1.02661586515 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 b_up ttZ 1.0180466863 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 b_down ttZ 1.01893398638 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf b_up ttZ 1.03674403805 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf b_down ttZ 1.03770137185 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_up ttZ 1.0234670332 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_down ttZ 1.02374563809 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 b_up ttZ 1.02053861907 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 b_down ttZ 1.0236980682 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf b_up ttZ 1.00491503441 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf b_down ttZ 1.00737652667 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf b_up ttZ 1.31274345108 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf b_down ttZ 1.28232969772 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf b_up ttZ 1.08843243051 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf b_down ttZ 1.08591166969 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_up ttZ 1.05065987208 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_down ttZ 1.05125665826 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_up ttZ 1.00995720622 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_down ttZ 1.01278561659 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 b_up ttZ 1.0452644576 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 b_down ttZ 1.04319669643 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 b_up ttZ 1.03310057869 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 b_down ttZ 1.03484763047 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_up ttZ 1.03072002517 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_down ttZ 1.03080507912 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf b_up ttZ 1.04396569332 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf b_down ttZ 1.04675491838 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_up ttZ 1.01421717696 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_down ttZ 1.01472746181 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 b_up ttZ 1.07860814611 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 b_down ttZ 1.07618214517 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_up ttZ 1.05762697563 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_down ttZ 1.05596544461 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf b_up ttZ 1.0145031177 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf b_down ttZ 1.01700386415 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 b_up ttZ 1.01128020493 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 b_down ttZ 1.01128632348 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf b_up ttZ 1.11385801301 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf b_down ttZ 1.10656746088 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 b_up ttZ 1.09203762059 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 b_down ttZ 1.08834697072 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 b_up ttZ 1.02685966656 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 b_down ttZ 1.02731096286 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf b_up ttZ 1.03803419791 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf b_down ttZ 1.03728805251 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_up ttZ 1.04877642766 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_down ttZ 1.04662809173 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 b_up ttZ 1.04328017113 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 b_down ttZ 1.04476286322 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf b_up ttZ 1.01701356407 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf b_down ttZ 1.01838148565 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 b_up ttZ 1.02365283027 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 b_down ttZ 1.02418000264 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 b_up ttZ 1.04204961771 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 b_down ttZ 1.04004450384 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_up ttZ 1.00199372862 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_down ttZ 1.00113490913 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 b_up ttZ 1.04670191729 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 b_down ttZ 1.04721728787 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 b_up ttZ 1.08616520038 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 b_down ttZ 1.08473569467 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf b_up ttZ 1.03424402178 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf b_down ttZ 1.03481088054 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 b_up ttZ 1.01203762746 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 b_down ttZ 1.01280941687 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 b_up ttZ 1.01500108378 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 b_down ttZ 1.01580794943 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf b_up ttZ 1.05082214491 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf b_down ttZ 1.05094248328 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 b_up ttZ 1.01161419157 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 b_down ttZ 1.0133688536 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 b_up ttZ 1.02851643823 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 b_down ttZ 1.02877699155 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf b_up ttZ 1.12045436486 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf b_down ttZ 1.11370901737 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 b_up ttZ 1.02079876842 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 b_down ttZ 1.04775204539 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_up ttZ 1.05947214278 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_down ttZ 1.05830118315 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 b_up ttZ 1.02007063481 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 b_down ttZ 1.01207193692 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_up ttZ 1.0442420386 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_down ttZ 1.04508785574 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_up ttZ 1.03126860149 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_down ttZ 1.03258266024 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 b_up ttZ 1.03892558576 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 b_down ttZ 1.03994874109 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 b_up ttZ 1.09941432741 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 b_down ttZ 1.09545582476 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 b_up ttZ 1.04246236497 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 b_down ttZ 1.04104587436 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 b_up ttZ 1.01476196992 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 b_down ttZ 1.01524397675 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 b_up ttZ 1.11538287546 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 b_down ttZ 1.10299189492 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_up ttZ 1.01833191235 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_down ttZ 1.01873481357 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_up ttZ 1.0472227265 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_down ttZ 1.0469841781 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_up ttZ 1.06673909944 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_down ttZ 1.063350552 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf b_up ttZ 1.04967059293 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf b_down ttZ 1.05177091572 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf b_up ttZ 1.0871274367 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf b_down ttZ 1.08445564648 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 b_up ttZ 1.00315634862 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 b_down ttZ 1.00664877058 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 b_up ttZ 1.0315254453 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 b_down ttZ 1.03196012797 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_up ttZ 1.08465106605 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_down ttZ 1.08219983032 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_up ttZ 1.06405277673 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_down ttZ 1.06213727229 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_up ttZ 1.00961127676 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_down ttZ 1.01093202939 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf b_up ttZ 1.12450408473 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf b_down ttZ 1.11779042101 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf b_up ttZ 1.0909649712 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf b_down ttZ 1.08671235294 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf b_up ttZ 1.06705643326 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf b_down ttZ 1.06390027182 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_up ttZ 1.03627155809 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_down ttZ 1.03612423286 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 b_up ttZ 1.00023301879 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 b_down ttZ 1.00382762801 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf b_up ttZ 1.07731140181 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf b_down ttZ 1.07530303682 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf b_up ttZ 1.02288393085 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf b_down ttZ 1.02300808611 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf b_up ttZ 1.02296359744 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf b_down ttZ 1.02592185132 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 b_up ttZ 1.11809942878 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 b_down ttZ 1.10913390769 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf b_up ttZ 1.07516964144 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf b_down ttZ 1.07407135515 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 b_up ttZ 1.028822675 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 b_down ttZ 1.02973395697 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 b_up ttZ 1.03191994643 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 b_down ttZ 1.03245385125 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 b_up ttZ 1.04813736757 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 b_down ttZ 1.0497869188 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf b_up ttZ 1.07117925392 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf b_down ttZ 1.07254636828 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 b_up ttZ 1.03228749415 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 b_down ttZ 1.03238930747 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf b_up ttZ 1.00633155372 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf b_down ttZ 1.00753917009 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf b_up ttZ 1.08842799232 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf b_down ttZ 1.08454360332 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf b_up ttZ 1.02303833483 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf b_down ttZ 1.02122458328 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf b_up ttZ 1.03625143411 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf b_down ttZ 1.03625045461 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 b_up ttZ 1.0361871731 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 b_down ttZ 1.03725175211 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 b_up ttZ 1.09454536048 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 b_down ttZ 1.09049890263 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf b_up ttZ 1.12984709694 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf b_down ttZ 1.11826792299 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 b_up ttZ 1.10047261669 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 b_down ttZ 1.09612866054 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf b_up ttZ 0.99869680565 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf b_down ttZ 0.998357913502 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf b_up ttZ 1.03163514403 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf b_down ttZ 1.03242353428 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_up ttZ 1.0150903435 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_down ttZ 1.01595190042 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 b_up ttZ 1.02785425816 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 b_down ttZ 1.0295666101 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 b_up ttZ 1.10339317361 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 b_down ttZ 1.10441614065 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 b_up ttZ 1.03591829951 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 b_down ttZ 1.03594793387 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 b_up ttZ 1.10802001324 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 b_down ttZ 1.10221694829 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_up ttZ 1.01484307494 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_down ttZ 1.01496448654 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 b_up ttZ 1.01159406403 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 b_down ttZ 1.01224477276 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_up ttZ 1.05698333309 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_down ttZ 1.0534617199 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf b_up ttZ 1.02297121578 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf b_down ttZ 1.02158952518 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_up ttZ 1.06831806322 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_down ttZ 1.06421026741 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 b_up ttZ 1.07719229216 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 b_down ttZ 1.07403390205 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 b_up ttZ 1.03384437041 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 b_down ttZ 1.03425733878 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf b_up ttZ 1.04161920745 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf b_down ttZ 1.04249129309 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_up ttZ 1.04198049685 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_down ttZ 1.04261127983 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf b_up ttZ 1.00775571708 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf b_down ttZ 1.00878044722 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf b_up ttZ 1.02678926745 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf b_down ttZ 1.0272662246 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 b_up ttZ 1.09903107328 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 b_down ttZ 1.0956999246 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf b_up ttZ 1.1384909917 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf b_down ttZ 1.12853622325 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_up ttZ 1.03809029697 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_down ttZ 1.03865248457 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 b_up ttZ 1.02061099965 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 b_down ttZ 1.02204327358 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf b_up ttZ 1.02469155308 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf b_down ttZ 1.02508572099 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_up ttZ 1.04893556698 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_down ttZ 1.04709079488 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_up ttZ 1.01259405374 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_down ttZ 1.0132639298 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf b_up ttZ 1.03896230205 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf b_down ttZ 1.03943799655 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 b_up ttZ 1.05236467109 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 b_down ttZ 1.05745550533 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 b_up ttZ 1.01970547953 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 b_down ttZ 1.02001908866 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_up ttZ 1.04373549063 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_down ttZ 1.04349992905 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf b_up ttZ 1.04216813765 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf b_down ttZ 1.04127243528 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf b_up ttZ 1.07369877317 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf b_down ttZ 1.07097740075 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_up ttZ 1.05654577837 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_down ttZ 1.05986314352 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 b_up ttZ 1.02758851197 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 b_down ttZ 1.02766261953 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 b_up ttZ 1.00993249228 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 b_down ttZ 1.01066883849 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf b_up ttZ 1.00232811473 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf b_down ttZ 1.00314887644 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_up ttZ 1.04121438421 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_down ttZ 1.04334232757 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_up ttZ 1.00488050805 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_down ttZ 1.00727974985 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 b_up ttZ 1.01234353029 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 b_down ttZ 1.01307459232 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_up ttZ 1.0367120145 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_down ttZ 1.03674767567 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 b_up ttZ 1.07559718609 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 b_down ttZ 1.07998890068 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 b_up ttZ 1.019180703 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 b_down ttZ 1.01978557387 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 b_up ttZ 1.0254581568 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 b_down ttZ 1.02573110619 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_up ttZ 1.01622538064 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_down ttZ 1.01715409297 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_up ttZ 1.14463581146 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_down ttZ 1.14182190199 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 b_up ttZ 1.01703842753 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 b_down ttZ 1.01748877044 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_up ttZ 1.01682578782 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_down ttZ 1.01805730675 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_up ttZ 1.02010182675 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_down ttZ 1.02066857514 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 b_up ttZ 1.03981430193 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 b_down ttZ 1.04063758158 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_up ttZ 1.04396428131 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_down ttZ 1.04289804547 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 b_up ttZ 1.01927508125 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 b_down ttZ 1.0206370775 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 b_up ttZ 1.06536940399 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 b_down ttZ 1.06803433966 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 b_up ttZ 1.02791777512 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 b_down ttZ 1.02679562266 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 b_up ttZ 1.01682170417 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 b_down ttZ 1.0186457425 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf b_up ttZ 1.0116705331 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf b_down ttZ 1.01213374831 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 b_up ttZ 1.0179728959 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 b_down ttZ 1.01782881346 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_up ttZ 1.05193387683 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_down ttZ 1.04873480613 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 b_up ttZ 1.02284746511 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 b_down ttZ 1.02498401055 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 b_up ttZ 1.00942837897 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 b_down ttZ 1.01195320373 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_up ttZ 1.04442874704 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_down ttZ 1.04205711584 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_up ttZ 1.0770952188 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_down ttZ 1.07467072399 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf b_up ttZ 1.06647794413 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf b_down ttZ 1.0644805122 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 b_up ttZ 1.02366489414 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 b_down ttZ 1.02577952804 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 b_up ttZ 1.01723442446 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 b_down ttZ 1.01774128597 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_up ttZ 1.09044863902 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_down ttZ 1.08392213276 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 b_up ttZ 1.02934071552 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 b_down ttZ 1.02979331173 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 b_up ttZ 1.01921247807 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 b_down ttZ 1.02773304637 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 b_up ttZ 1.0395329455 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 b_down ttZ 1.04004833954 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 b_up ttZ 1.01387155205 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 b_down ttZ 1.01423217826 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 b_up ttZ 1.03444218589 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 b_down ttZ 1.03636675382 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf b_up ttZ 1.03430619968 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf b_down ttZ 1.03418122321 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf b_up ttZ 1.03781512867 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf b_down ttZ 1.03797156669 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 b_up ttZ 1.01465859278 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 b_down ttZ 1.01686024353 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf b_up ttZ 1.11984920305 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf b_down ttZ 1.11224544299 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 b_up ttZ 1.07098098806 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 b_down ttZ 1.07099653966 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 b_up ttZ 1.01420523179 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 b_down ttZ 1.01458771472 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf b_up ttZ 1.0346028146 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf b_down ttZ 1.0348971367 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 b_up ttZ 1.03168190753 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 b_down ttZ 1.03214618479 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_up ttZ 1.01221454218 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_down ttZ 1.01307389759 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf b_up ttZ 1.20726191964 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf b_down ttZ 1.13302124275 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 trigger_err_up ttZ 1.00163803545 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 trigger_err_down ttZ 1.00187632147 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 trigger_err_up ttZ 1.00141984132 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 trigger_err_down ttZ 1.00163565297 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_up ttZ 1.00197859728 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_down ttZ 1.00259865744 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf trigger_err_up ttZ 1.00200150293 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf trigger_err_down ttZ 1.00270727382 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 trigger_err_up ttZ 1.00145563279 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 trigger_err_down ttZ 1.00168391792 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_up ttZ 1.00177705468 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_down ttZ 1.00192248305 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_up ttZ 1.00222726904 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_down ttZ 1.0024214269 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 trigger_err_up ttZ 1.00156680781 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 trigger_err_down ttZ 1.00180219417 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_up ttZ 1.00126099142 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_down ttZ 1.00200786738 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_up ttZ 1.00154758642 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_down ttZ 1.00207318902 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 trigger_err_up ttZ 1.00134762169 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 trigger_err_down ttZ 1.00213214784 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_up ttZ 1.00213264744 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_down ttZ 1.0028504216 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf trigger_err_up ttZ 1.00152554745 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf trigger_err_down ttZ 1.0023123732 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_up ttZ 1.00120799231 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_down ttZ 1.00197629394 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf trigger_err_up ttZ 1.00108937589 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf trigger_err_down ttZ 1.00185065699 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_up ttZ 1.00211932562 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_down ttZ 1.00284172347 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_up ttZ 1.00128944009 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_down ttZ 1.0014103176 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 trigger_err_up ttZ 1.00166096068 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 trigger_err_down ttZ 1.00183207067 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 trigger_err_up ttZ 1.00164032795 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 trigger_err_down ttZ 1.00180847457 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 trigger_err_up ttZ 1.00185673742 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 trigger_err_down ttZ 1.00257154769 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf trigger_err_up ttZ 1.00181987357 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf trigger_err_down ttZ 1.00257605085 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_up ttZ 1.00128208115 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_down ttZ 1.00140423874 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf trigger_err_up ttZ 1.00156670564 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf trigger_err_down ttZ 1.00215939165 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 trigger_err_up ttZ 1.00198444889 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 trigger_err_down ttZ 1.00265142472 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 trigger_err_up ttZ 1.00171123792 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 trigger_err_down ttZ 1.00217879177 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf trigger_err_up ttZ 1.00178209757 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf trigger_err_down ttZ 1.00251437671 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_up ttZ 1.00178510536 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_down ttZ 1.00193126436 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 trigger_err_up ttZ 1.00169529353 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 trigger_err_down ttZ 1.00236484903 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf trigger_err_up ttZ 1.00079770711 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf trigger_err_down ttZ 1.00153865734 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf trigger_err_up ttZ 1.0027782747 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf trigger_err_down ttZ 1.00341030152 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf trigger_err_up ttZ 1.00148127343 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf trigger_err_down ttZ 1.00178270444 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_up ttZ 1.00153591944 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_down ttZ 1.00227802638 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_up ttZ 1.00127737577 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_down ttZ 1.00140387098 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 trigger_err_up ttZ 1.00107310972 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 trigger_err_down ttZ 1.001858474 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 trigger_err_up ttZ 1.00085015059 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 trigger_err_down ttZ 1.00163358318 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_up ttZ 1.00203009157 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_down ttZ 1.00273049107 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf trigger_err_up ttZ 1.0007750569 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf trigger_err_down ttZ 1.00156149194 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_up ttZ 1.00143734684 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_down ttZ 1.00165798047 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 trigger_err_up ttZ 1.00162352411 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 trigger_err_down ttZ 1.00197892021 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_up ttZ 1.00140079583 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_down ttZ 1.00215055675 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf trigger_err_up ttZ 1.00093986261 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf trigger_err_down ttZ 1.00169559622 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 trigger_err_up ttZ 1.00166194949 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 trigger_err_down ttZ 1.00241739846 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf trigger_err_up ttZ 1.00166186727 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf trigger_err_down ttZ 1.00193223829 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 trigger_err_up ttZ 1.00134028521 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 trigger_err_down ttZ 1.00162534452 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 trigger_err_up ttZ 1.00160087272 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 trigger_err_down ttZ 1.00182304222 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf trigger_err_up ttZ 1.00184593699 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf trigger_err_down ttZ 1.00235123535 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_up ttZ 1.00115117884 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_down ttZ 1.00187696948 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_up ttZ 1.00164288992 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_down ttZ 1.00185898453 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf trigger_err_up ttZ 1.00210354733 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf trigger_err_down ttZ 1.00282590946 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 trigger_err_up ttZ 1.00097238156 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 trigger_err_down ttZ 1.00121855773 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 trigger_err_up ttZ 1.00211836266 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 trigger_err_down ttZ 1.00287560004 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_up ttZ 1.00165110843 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_down ttZ 1.00180005259 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 trigger_err_up ttZ 1.00120490022 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 trigger_err_down ttZ 1.00175201361 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 trigger_err_up ttZ 1.00174026115 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 trigger_err_down ttZ 1.00188150663 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf trigger_err_up ttZ 1.00183308302 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf trigger_err_down ttZ 1.00241294857 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_up ttZ 1.00154421932 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_down ttZ 1.00227501744 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 trigger_err_up ttZ 1.00167464101 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 trigger_err_down ttZ 1.00191329804 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf trigger_err_up ttZ 1.00164949117 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf trigger_err_down ttZ 1.00229452765 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 trigger_err_up ttZ 1.00163643868 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 trigger_err_down ttZ 1.00176915218 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 trigger_err_up ttZ 1.0014219054 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 trigger_err_down ttZ 1.00183948455 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf trigger_err_up ttZ 1.0012137851 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf trigger_err_down ttZ 1.00195059835 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 trigger_err_up ttZ 1.00317422869 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 trigger_err_down ttZ 1.00384395828 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_up ttZ 1.0017997112 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_down ttZ 1.00195378484 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 trigger_err_up ttZ 1.00105606917 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 trigger_err_down ttZ 1.0012375098 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_up ttZ 1.00132248451 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_down ttZ 1.00154966755 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_up ttZ 1.00180557137 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_down ttZ 1.00196798494 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 trigger_err_up ttZ 1.00114553381 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 trigger_err_down ttZ 1.00158369549 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 trigger_err_up ttZ 1.00158529343 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 trigger_err_down ttZ 1.00171173843 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 trigger_err_up ttZ 1.00178711426 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 trigger_err_down ttZ 1.00254764363 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 trigger_err_up ttZ 1.0014465052 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 trigger_err_down ttZ 1.00187318616 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 trigger_err_up ttZ 1.0019694894 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 trigger_err_down ttZ 1.0025675106 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_up ttZ 1.00161683496 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_down ttZ 1.00234409315 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_up ttZ 1.0013719819 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_down ttZ 1.00211029906 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_up ttZ 1.0015852744 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_down ttZ 1.00232599747 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf trigger_err_up ttZ 1.00218082326 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf trigger_err_down ttZ 1.00283895562 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf trigger_err_up ttZ 1.00188444061 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf trigger_err_down ttZ 1.00256327244 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 trigger_err_up ttZ 1.0006996343 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 trigger_err_down ttZ 1.00082368294 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_up ttZ 1.00145814783 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_down ttZ 1.00172860166 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_up ttZ 1.00167334976 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_down ttZ 1.00182020728 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_up ttZ 1.00159821297 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_down ttZ 1.00206689906 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_up ttZ 1.00195536052 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_down ttZ 1.00266236871 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf trigger_err_up ttZ 1.0018672125 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf trigger_err_down ttZ 1.00258050805 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf trigger_err_up ttZ 1.00123992048 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf trigger_err_down ttZ 1.00168357575 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_up ttZ 1.00152429997 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_down ttZ 1.00175857126 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_up ttZ 1.00221084211 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_down ttZ 1.00239660467 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 trigger_err_up ttZ 1.00118696749 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 trigger_err_down ttZ 1.00144221839 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf trigger_err_up ttZ 1.00163824207 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf trigger_err_down ttZ 1.00189500825 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf trigger_err_up ttZ 1.00148023663 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf trigger_err_down ttZ 1.00200085794 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf trigger_err_up ttZ 1.00325817425 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf trigger_err_down ttZ 1.00391721325 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 trigger_err_up ttZ 1.00174329016 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 trigger_err_down ttZ 1.00204646813 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf trigger_err_up ttZ 1.0013203302 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf trigger_err_down ttZ 1.00211687543 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 trigger_err_up ttZ 1.00176738798 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 trigger_err_down ttZ 1.00249495509 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 trigger_err_up ttZ 1.00143419312 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 trigger_err_down ttZ 1.00165560035 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 trigger_err_up ttZ 1.00129359123 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 trigger_err_down ttZ 1.00142973768 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf trigger_err_up ttZ 1.00363794191 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf trigger_err_down ttZ 1.00431823176 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 trigger_err_up ttZ 1.00134146832 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 trigger_err_down ttZ 1.0015609894 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf trigger_err_up ttZ 1.00171079835 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf trigger_err_down ttZ 1.00223415652 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf trigger_err_up ttZ 1.00136307178 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf trigger_err_down ttZ 1.00207791074 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf trigger_err_up ttZ 1.00157337484 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf trigger_err_down ttZ 1.00223276155 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf trigger_err_up ttZ 1.00168832414 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf trigger_err_down ttZ 1.00241926674 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 trigger_err_up ttZ 1.00132126125 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 trigger_err_down ttZ 1.00158143451 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 trigger_err_up ttZ 1.00171905479 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 trigger_err_down ttZ 1.00185834081 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf trigger_err_up ttZ 1.0029123073 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf trigger_err_down ttZ 1.00356016862 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 trigger_err_up ttZ 1.00115473667 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 trigger_err_down ttZ 1.00150471615 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf trigger_err_up ttZ 1.00157063728 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf trigger_err_down ttZ 1.00216694325 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf trigger_err_up ttZ 1.00256670299 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf trigger_err_down ttZ 1.00324511279 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_up ttZ 1.00164003651 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_down ttZ 1.00235972143 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 trigger_err_up ttZ 1.00111949852 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 trigger_err_down ttZ 1.00137204908 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 trigger_err_up ttZ 1.00060667276 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 trigger_err_down ttZ 1.00123961223 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 trigger_err_up ttZ 1.00232049502 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 trigger_err_down ttZ 1.00299265627 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 trigger_err_up ttZ 1.00180729364 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 trigger_err_down ttZ 1.00196189449 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_up ttZ 1.00221683166 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_down ttZ 1.00267150571 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 trigger_err_up ttZ 1.00178162675 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 trigger_err_down ttZ 1.0019331476 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_up ttZ 1.00217972278 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_down ttZ 1.0028578892 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_up ttZ 1.00193648459 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_down ttZ 1.0023321689 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_up ttZ 1.00160829145 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_down ttZ 1.00233292375 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 trigger_err_up ttZ 1.00148218751 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 trigger_err_down ttZ 1.0017856497 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 trigger_err_up ttZ 1.00186939369 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 trigger_err_down ttZ 1.0025748779 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf trigger_err_up ttZ 1.00207164242 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf trigger_err_down ttZ 1.00272048984 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_up ttZ 1.0015980418 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_down ttZ 1.00181926374 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_up ttZ 1.00153532511 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_down ttZ 1.00226509132 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf trigger_err_up ttZ 1.00148066318 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf trigger_err_down ttZ 1.0022025007 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 trigger_err_up ttZ 1.00156877485 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 trigger_err_down ttZ 1.00168710093 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf trigger_err_up ttZ 1.0019624348 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf trigger_err_down ttZ 1.00232390447 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_up ttZ 1.00189898073 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_down ttZ 1.00260252468 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 trigger_err_up ttZ 1.00167609318 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 trigger_err_down ttZ 1.00179366921 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf trigger_err_up ttZ 1.00159340738 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf trigger_err_down ttZ 1.00232006668 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_up ttZ 1.00130322338 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_down ttZ 1.00172156003 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_up ttZ 1.00172770858 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_down ttZ 1.00187267817 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf trigger_err_up ttZ 1.00152017639 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf trigger_err_down ttZ 1.00225176676 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 trigger_err_up ttZ 1.00162233513 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 trigger_err_down ttZ 1.00226855611 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 trigger_err_up ttZ 1.00173024386 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 trigger_err_down ttZ 1.00187349142 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_up ttZ 1.00133965098 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_down ttZ 1.00160058907 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf trigger_err_up ttZ 1.00116203836 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf trigger_err_down ttZ 1.00196780313 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf trigger_err_up ttZ 1.00163923611 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf trigger_err_down ttZ 1.00237757371 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_up ttZ 1.00175432231 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_down ttZ 1.00204440212 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 trigger_err_up ttZ 1.00166525693 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 trigger_err_down ttZ 1.0017998355 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 trigger_err_up ttZ 1.00148522378 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 trigger_err_down ttZ 1.00170674903 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf trigger_err_up ttZ 1.00221832493 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf trigger_err_down ttZ 1.002914329 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_up ttZ 1.00115340858 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_down ttZ 1.00124274208 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_up ttZ 1.00176442091 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_down ttZ 1.00205882449 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_up ttZ 1.0014785624 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_down ttZ 1.0017286918 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_up ttZ 1.00130961458 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_down ttZ 1.00142792727 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 trigger_err_up ttZ 1.00025046221 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 trigger_err_down ttZ 1.00107626003 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 trigger_err_up ttZ 1.00154022713 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 trigger_err_down ttZ 1.00177181362 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 trigger_err_up ttZ 1.00140007584 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 trigger_err_down ttZ 1.00161371628 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_up ttZ 1.00157352006 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_down ttZ 1.00178906557 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_up ttZ 1.00179242557 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_down ttZ 1.00197766495 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 trigger_err_up ttZ 1.00151444531 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 trigger_err_down ttZ 1.00174074174 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_up ttZ 1.00167864678 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_down ttZ 1.00198517223 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_up ttZ 1.0013249062 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_down ttZ 1.00158497754 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_up ttZ 1.00150246364 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_down ttZ 1.00224390761 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_up ttZ 1.00125630155 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_down ttZ 1.00138266353 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 trigger_err_up ttZ 1.00159048394 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 trigger_err_down ttZ 1.00236401602 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 trigger_err_up ttZ 1.00194580611 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 trigger_err_down ttZ 1.00211224687 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 trigger_err_up ttZ 1.00147527462 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 trigger_err_down ttZ 1.0017725654 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_up ttZ 1.0016047366 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_down ttZ 1.00179988926 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_up ttZ 1.00126245452 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_down ttZ 1.00198414981 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 trigger_err_up ttZ 1.00154207696 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 trigger_err_down ttZ 1.00176867387 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_up ttZ 1.00177777368 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_down ttZ 1.00247481932 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_up ttZ 1.00178425307 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_down ttZ 1.00249434137 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 trigger_err_up ttZ 1.00117564893 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 trigger_err_down ttZ 1.00143012132 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_up ttZ 1.00155536643 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_down ttZ 1.00184510638 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_up ttZ 1.0018190714 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_down ttZ 1.00209769315 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_up ttZ 1.00211717419 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_down ttZ 1.00282355504 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 trigger_err_up ttZ 1.00145017253 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 trigger_err_down ttZ 1.00167274349 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 trigger_err_up ttZ 1.00170918413 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 trigger_err_down ttZ 1.00184394673 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_up ttZ 1.0014791849 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_down ttZ 1.00201375685 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 trigger_err_up ttZ 1.00170643665 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 trigger_err_down ttZ 1.00184651129 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 trigger_err_up ttZ 1.00194119097 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 trigger_err_down ttZ 1.00209358061 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 trigger_err_up ttZ 1.0012304028 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 trigger_err_down ttZ 1.00123712151 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 trigger_err_up ttZ 1.00166065244 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 trigger_err_down ttZ 1.0018685591 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 trigger_err_up ttZ 1.00145641785 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 trigger_err_down ttZ 1.00170709826 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf trigger_err_up ttZ 1.00036871246 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf trigger_err_down ttZ 1.00117611783 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_up ttZ 1.00129178151 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_down ttZ 1.00203639328 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 trigger_err_up ttZ 1.00192807163 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 trigger_err_down ttZ 1.00259321604 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf trigger_err_up ttZ 1.00194632609 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf trigger_err_down ttZ 1.0026672027 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 trigger_err_up ttZ 1.00131332121 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 trigger_err_down ttZ 1.00157352875 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 trigger_err_up ttZ 1.00181324216 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 trigger_err_down ttZ 1.00196196627 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf trigger_err_up ttZ 1.00177838568 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf trigger_err_down ttZ 1.00229780793 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 trigger_err_up ttZ 1.00176482008 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 trigger_err_down ttZ 1.00227122927 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_up ttZ 1.00131044771 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_down ttZ 1.0014307986 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf trigger_err_up ttZ 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf trigger_err_down ttZ 1.00086441804 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PU_Weight_up ttZ 1.01023446527 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PU_Weight_down ttZ 1.00954931848 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PU_Weight_up ttZ 1.00027243244 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PU_Weight_down ttZ 1.00049353575 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_up ttZ 1.0472708731 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_down ttZ 1.0263423752 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PU_Weight_up ttZ 1.0065269484 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PU_Weight_down ttZ 1.00610579115 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PU_Weight_up ttZ 1.05329411169 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PU_Weight_down ttZ 1.05576305428 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_up ttZ 1.00409348765 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_down ttZ 1.00365171291 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_up ttZ 1.00118326799 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_down ttZ 1.00029191666 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_up ttZ 1.00494851191 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_down ttZ 1.00378221816 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_up ttZ 0.996929275202 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_down ttZ 0.994559766333 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_up ttZ 0.999771576779 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_down ttZ 0.998110447211 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PU_Weight_up ttZ 1.05113018567 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PU_Weight_down ttZ 1.05232170672 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_up ttZ 1.0010506743 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_down ttZ 1.0027251626 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PU_Weight_up ttZ 1.02327169257 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PU_Weight_down ttZ 1.01190325624 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_up ttZ 1.02757287449 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_down ttZ 1.0230996517 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PU_Weight_up ttZ 0.997135116853 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PU_Weight_down ttZ 0.997086535209 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_up ttZ 1.01123174458 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_down ttZ 1.00887028157 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_up ttZ 1.00121636995 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_down ttZ 1.00069200777 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PU_Weight_up ttZ 1.01222143145 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PU_Weight_down ttZ 1.01362125043 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PU_Weight_up ttZ 1.00402634549 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PU_Weight_down ttZ 1.00509934411 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PU_Weight_up ttZ 1.00093310338 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PU_Weight_down ttZ 1.00143497818 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PU_Weight_up ttZ 1.01932585282 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PU_Weight_down ttZ 1.02507661816 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_up ttZ 1.00757771327 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_down ttZ 1.00679981891 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PU_Weight_up ttZ 1.00073741568 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PU_Weight_down ttZ 1.00281655569 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PU_Weight_up ttZ 1.05600206532 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PU_Weight_down ttZ 1.06567886024 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_up ttZ 1.00629745163 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_down ttZ 1.00480489349 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_up ttZ 1.01026382878 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_down ttZ 1.01081428261 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_up ttZ 1.00142559307 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_down ttZ 1.00125817873 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PU_Weight_up ttZ 1.06166145873 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PU_Weight_down ttZ 1.07078396201 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PU_Weight_up ttZ 1.00687539323 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PU_Weight_down ttZ 1.00839559249 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PU_Weight_up ttZ 1.17375301361 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PU_Weight_down ttZ 1.16929082878 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PU_Weight_up ttZ 1.00412964395 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PU_Weight_down ttZ 1.00243991006 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_up ttZ 1.00242377304 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_down ttZ 1.00235699024 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_up ttZ 1.00243853406 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_down ttZ 1.00304842169 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PU_Weight_up ttZ 1.01441130753 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PU_Weight_down ttZ 1.01563517826 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PU_Weight_up ttZ 1.04277814545 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PU_Weight_down ttZ 1.0397517399 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_up ttZ 1.0328213761 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_down ttZ 1.02285276299 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PU_Weight_up ttZ 1.00437450048 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PU_Weight_down ttZ 1.00813687273 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_up ttZ 1.01936911695 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_down ttZ 1.02084553664 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PU_Weight_up ttZ 1.01192089256 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PU_Weight_down ttZ 1.01137667839 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_up ttZ 1.00788030638 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_down ttZ 1.00983812253 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PU_Weight_up ttZ 1.01374908811 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PU_Weight_down ttZ 1.01625494663 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PU_Weight_up ttZ 1.00494904161 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PU_Weight_down ttZ 1.00155716943 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PU_Weight_up ttZ 1.00617988875 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PU_Weight_down ttZ 1.00153120099 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PU_Weight_up ttZ 1.00326884891 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PU_Weight_down ttZ 1.00202601926 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PU_Weight_up ttZ 1.00103373753 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PU_Weight_down ttZ 1.001243152 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PU_Weight_up ttZ 1.04449466404 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PU_Weight_down ttZ 1.04946311789 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_up ttZ 1.01194121543 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_down ttZ 1.01320308035 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_up ttZ 1.01260508299 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_down ttZ 1.01423524747 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PU_Weight_up ttZ 1.00152847457 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PU_Weight_down ttZ 1.00202851312 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PU_Weight_up ttZ 1.03650514663 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PU_Weight_down ttZ 1.03487390707 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PU_Weight_up ttZ 1.04192448136 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PU_Weight_down ttZ 1.04192685887 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_up ttZ 1.07297907367 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_down ttZ 1.09162497027 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PU_Weight_up ttZ 1.00036802709 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PU_Weight_down ttZ 1.00035599325 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PU_Weight_up ttZ 1.00577032746 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PU_Weight_down ttZ 1.00261730422 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PU_Weight_up ttZ 1.01173944783 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PU_Weight_down ttZ 1.02447404075 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_up ttZ 1.00900774781 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_down ttZ 1.00986783324 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PU_Weight_up ttZ 1.00513427489 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PU_Weight_down ttZ 1.00653341227 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PU_Weight_up ttZ 1.00558917552 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PU_Weight_down ttZ 1.00479608292 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PU_Weight_up ttZ 1.02126964024 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PU_Weight_down ttZ 1.02555628623 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PU_Weight_up ttZ 1.00266432662 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PU_Weight_down ttZ 1.00280838868 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PU_Weight_up ttZ 1.01219774566 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PU_Weight_down ttZ 1.01029671185 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PU_Weight_up ttZ 1.12191974334 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PU_Weight_down ttZ 1.08933409327 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_up ttZ 1.0038214945 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_down ttZ 1.00222381177 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PU_Weight_up ttZ 1.24800274148 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PU_Weight_down ttZ 1.26302583037 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_up ttZ 1.02194528334 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_down ttZ 1.02196876315 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_up ttZ 1.00232827707 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_down ttZ 1.00186562006 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PU_Weight_up ttZ 1.07268015231 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PU_Weight_down ttZ 1.06184270885 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PU_Weight_up ttZ 1.00274626497 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PU_Weight_down ttZ 1.00138650813 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PU_Weight_up ttZ 1.01014357449 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PU_Weight_down ttZ 1.00807659209 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PU_Weight_up ttZ 1.00370593387 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PU_Weight_down ttZ 1.00257241112 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PU_Weight_up ttZ 1.03663467573 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PU_Weight_down ttZ 1.0407257589 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_up ttZ 0.999993182246 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_down ttZ 0.996877562203 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_up ttZ 1.00658554597 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_down ttZ 1.00632810427 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_up ttZ 1.01747254638 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_down ttZ 1.01624273111 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PU_Weight_up ttZ 1.02893457719 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PU_Weight_down ttZ 1.03091028856 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PU_Weight_up ttZ 1.0217197304 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PU_Weight_down ttZ 1.0190963869 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PU_Weight_up ttZ 1.03068900235 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PU_Weight_down ttZ 1.01391998965 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_up ttZ 1.00028612353 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_down ttZ 1.00158895953 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_up ttZ 1.00350870172 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_down ttZ 1.01452099709 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_up ttZ 1.01052884732 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_down ttZ 1.01286821274 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_up ttZ 1.01100263349 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_down ttZ 1.01088850632 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PU_Weight_up ttZ 1.01717453104 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PU_Weight_down ttZ 1.01691550023 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PU_Weight_up ttZ 1.01210902959 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PU_Weight_down ttZ 1.01314791281 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_up ttZ 1.00952722943 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_down ttZ 1.01226265996 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_up ttZ 1.0007763483 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_down ttZ 1.00020749731 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PU_Weight_up ttZ 1.00904034028 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PU_Weight_down ttZ 1.00788654166 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PU_Weight_up ttZ 0.999887486851 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PU_Weight_down ttZ 0.999026292014 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PU_Weight_up ttZ 1.00464932766 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PU_Weight_down ttZ 1.00568186688 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PU_Weight_up ttZ 1.05731805704 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PU_Weight_down ttZ 1.05432845777 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PU_Weight_up ttZ 1.01898513243 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PU_Weight_down ttZ 1.01891117182 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PU_Weight_up ttZ 1.04660950989 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PU_Weight_down ttZ 1.05151322818 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_up ttZ 1.00626440462 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_down ttZ 1.00897004754 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PU_Weight_up ttZ 1.01127063889 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PU_Weight_down ttZ 1.01107683175 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PU_Weight_up ttZ 1.0219262764 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PU_Weight_down ttZ 1.02280962897 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PU_Weight_up ttZ 1.01835208046 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PU_Weight_down ttZ 1.02352784711 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PU_Weight_up ttZ 1.01099017012 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PU_Weight_down ttZ 1.00803591654 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PU_Weight_up ttZ 1.00562039393 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PU_Weight_down ttZ 1.00619755528 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PU_Weight_up ttZ 1.01866023135 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PU_Weight_down ttZ 1.03325448437 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PU_Weight_up ttZ 1.04614480388 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PU_Weight_down ttZ 1.06045299053 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PU_Weight_up ttZ 1.01039095461 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PU_Weight_down ttZ 1.00827810067 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PU_Weight_up ttZ 1.00581151611 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PU_Weight_down ttZ 1.00752622204 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PU_Weight_up ttZ 1.01729023691 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PU_Weight_down ttZ 1.01746633424 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PU_Weight_up ttZ 1.04890447369 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PU_Weight_down ttZ 1.04339563161 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PU_Weight_up ttZ 1.01050311064 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PU_Weight_down ttZ 1.00951130028 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PU_Weight_up ttZ 1.04170294025 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PU_Weight_down ttZ 1.04374061942 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PU_Weight_up ttZ 1.01446380742 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PU_Weight_down ttZ 1.01609547958 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_up ttZ 1.00762217842 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_down ttZ 1.00970838516 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PU_Weight_up ttZ 1.00313622479 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PU_Weight_down ttZ 1.00649366942 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PU_Weight_up ttZ 1.01749903817 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PU_Weight_down ttZ 1.00951550277 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PU_Weight_up ttZ 1.02860482866 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PU_Weight_down ttZ 1.03187911501 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PU_Weight_up ttZ 1.01695216076 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PU_Weight_down ttZ 1.0147459561 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_up ttZ 1.01858453446 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_down ttZ 1.00525403632 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PU_Weight_up ttZ 1.00049016022 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PU_Weight_down ttZ 1.00048759555 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_up ttZ 1.00087887628 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_down ttZ 1.00137071819 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_up ttZ 1.05133251568 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_down ttZ 1.04905308147 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_up ttZ 1.01992765339 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_down ttZ 1.02592462181 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PU_Weight_up ttZ 1.01287116624 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PU_Weight_down ttZ 1.01255265116 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PU_Weight_up ttZ 1.0119284105 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PU_Weight_down ttZ 1.01252000636 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PU_Weight_up ttZ 1.00956835583 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PU_Weight_down ttZ 1.01051729905 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_up ttZ 1.00218785774 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_down ttZ 1.00237139003 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_up ttZ 1.0044075626 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_down ttZ 1.00709828382 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PU_Weight_up ttZ 1.012035652 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PU_Weight_down ttZ 1.01430729205 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PU_Weight_up ttZ 1.02157385366 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PU_Weight_down ttZ 1.0192032905 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PU_Weight_up ttZ 1.01430090968 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PU_Weight_down ttZ 1.01739672466 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_up ttZ 1.00203744009 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_down ttZ 1.00356688345 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PU_Weight_up ttZ 1.00419955673 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PU_Weight_down ttZ 1.00352281605 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_up ttZ 1.00476734848 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_down ttZ 1.00140720751 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_up ttZ 1.02218417998 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_down ttZ 1.01927554709 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_up ttZ 1.00020453394 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_down ttZ 1.00101382756 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PU_Weight_up ttZ 1.00752298788 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PU_Weight_down ttZ 1.00559653478 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PU_Weight_up ttZ 1.0858715933 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PU_Weight_down ttZ 1.07812219817 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_up ttZ 1.00330684161 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_down ttZ 1.00109204394 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_up ttZ 1.00253174445 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_down ttZ 1.00180366148 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PU_Weight_up ttZ 1.02265764877 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PU_Weight_down ttZ 1.01829708573 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PU_Weight_up ttZ 1.00381408962 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PU_Weight_down ttZ 1.00266774656 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_up ttZ 1.10891273863 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_down ttZ 1.1291829269 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PU_Weight_up ttZ 1.00750188513 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PU_Weight_down ttZ 1.00743153939 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PU_Weight_up ttZ 1.00087243045 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PU_Weight_down ttZ 1.00069067411 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PU_Weight_up ttZ 0.998413332911 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PU_Weight_down ttZ 0.997078187081 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PU_Weight_up ttZ 1.01992874688 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PU_Weight_down ttZ 1.0254619097 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_up ttZ 1.01333924106 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_down ttZ 1.00807798789 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_up ttZ 1.00294579567 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_down ttZ 1.00264190845 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_up ttZ 1.00162219695 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_down ttZ 1.00162541547 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PU_Weight_up ttZ 1.04389719202 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PU_Weight_down ttZ 1.04233902607 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PU_Weight_up ttZ 1.00172665479 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PU_Weight_down ttZ 1.00388687724 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PU_Weight_up ttZ 1.00184992618 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PU_Weight_down ttZ 1.00176041776 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_up ttZ 0.999957622416 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_down ttZ 0.999601827281 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_up ttZ 1.09168429691 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_down ttZ 1.13659178667 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_up ttZ 1.00120205914 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_down ttZ 1.00246948492 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_up ttZ 1.02520222249 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_down ttZ 1.02806144265 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_up ttZ 1.01471704584 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_down ttZ 1.00972572831 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_up ttZ 1.00059526333 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_down ttZ 1.00231919875 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_up ttZ 1.01116703967 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_down ttZ 1.00446114247 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_up ttZ 1.0106843067 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_down ttZ 1.01434929833 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PU_Weight_up ttZ 1.03163724277 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PU_Weight_down ttZ 1.03172011784 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PU_Weight_up ttZ 1.03743926955 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PU_Weight_down ttZ 1.03164593409 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_up ttZ 1.00148305042 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_down ttZ 1.00072776495 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_up ttZ 1.02838820492 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_down ttZ 1.02992214233 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PU_Weight_up ttZ 1.04371687459 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PU_Weight_down ttZ 1.03539977758 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_up ttZ 1.08573281713 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_down ttZ 1.08473949094 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_up ttZ 1.01723105316 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_down ttZ 1.01035834111 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PU_Weight_up ttZ 1.02228648582 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PU_Weight_down ttZ 1.02071361376 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_up ttZ 1.05178534279 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_down ttZ 1.0727678487 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_up ttZ 1.00725378296 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_down ttZ 1.00088703307 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_up ttZ 0.999711240746 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_down ttZ 0.993025292844 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PU_Weight_up ttZ 1.01762180935 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PU_Weight_down ttZ 1.01491686943 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PU_Weight_up ttZ 1.02975045798 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PU_Weight_down ttZ 1.03799477792 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_up ttZ 1.01230032666 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_down ttZ 1.01252919438 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PU_Weight_up ttZ 1.00010524062 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PU_Weight_down ttZ 1.00073785368 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PU_Weight_up ttZ 1.01128038675 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PU_Weight_down ttZ 1.01458983185 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PU_Weight_up ttZ 1.00761179476 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PU_Weight_down ttZ 1.00785034032 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PU_Weight_up ttZ 1.00183198443 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PU_Weight_down ttZ 1.00237036353 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PU_Weight_up ttZ 1.05166245133 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PU_Weight_down ttZ 1.05305344072 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PU_Weight_up ttZ 1.15144820467 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PU_Weight_down ttZ 1.12242736181 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_up ttZ 1.01075924033 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_down ttZ 1.01030643167 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PU_Weight_up ttZ 0.999693359952 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PU_Weight_down ttZ 0.987255634588 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PU_Weight_up ttZ 1.02488757199 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PU_Weight_down ttZ 1.02692074577 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PU_Weight_up ttZ 1.02193609285 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PU_Weight_down ttZ 1.03105011829 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PU_Weight_up ttZ 1.002384437 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PU_Weight_down ttZ 1.00268091498 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PU_Weight_up ttZ 1.00259419123 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PU_Weight_down ttZ 1.00176979735 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_up ttZ 1.00590318981 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_down ttZ 1.00624933247 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_up ttZ 1.00066640057 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_down ttZ 1.00027548372 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PU_Weight_up ttZ 1.35524794683 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PU_Weight_down ttZ 1.18321510285 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 Prefire_Weight_up ttZ 1.00269299805 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 Prefire_Weight_down ttZ 1.00281712131 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_up ttZ 1.00479309995 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_down ttZ 1.00487617906 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 Prefire_Weight_up ttZ 1.00193796316 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 Prefire_Weight_down ttZ 1.00270184793 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_up ttZ 1.00501269201 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_down ttZ 1.00503069776 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 Prefire_Weight_up ttZ 1.00329747624 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 Prefire_Weight_down ttZ 1.00372938776 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_up ttZ 1.00342487071 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_down ttZ 1.00343584995 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_up ttZ 1.0047958351 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_down ttZ 1.00492901895 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_up ttZ 1.01385532527 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_down ttZ 1.01374751594 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_up ttZ 1.00698434072 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_down ttZ 1.00667328913 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_up ttZ 1.00505376827 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_down ttZ 1.00498606255 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 Prefire_Weight_up ttZ 1.0063368363 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 Prefire_Weight_down ttZ 1.00650047283 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_up ttZ 1.00082534805 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_down ttZ 1.00101454067 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf Prefire_Weight_up ttZ 1.00064210819 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf Prefire_Weight_down ttZ 1.00099842959 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_up ttZ 1.00015448314 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_down ttZ 1.00065711902 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_up ttZ 1.00395569287 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_down ttZ 1.00435961212 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_up ttZ 1.00204585113 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_down ttZ 1.00189458368 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 Prefire_Weight_up ttZ 1.00478745304 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 Prefire_Weight_down ttZ 1.0048443742 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 Prefire_Weight_up ttZ 1.00098467829 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 Prefire_Weight_down ttZ 1.00105531091 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 Prefire_Weight_up ttZ 1.002642966 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 Prefire_Weight_down ttZ 1.00272391848 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_up ttZ 1.00499756663 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_down ttZ 1.00504192299 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf Prefire_Weight_up ttZ 1.01703871009 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf Prefire_Weight_down ttZ 1.0169002866 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 Prefire_Weight_up ttZ 1.00524926349 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 Prefire_Weight_down ttZ 1.00533156214 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf Prefire_Weight_up ttZ 1.00323649313 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf Prefire_Weight_down ttZ 1.00330443029 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_up ttZ 1.00528331927 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_down ttZ 1.00965909571 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_up ttZ 1.0042166769 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_down ttZ 1.00436250154 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_up ttZ 1.00433131976 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_down ttZ 1.00439976625 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_up ttZ 1.0034483925 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_down ttZ 1.00353775633 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 Prefire_Weight_up ttZ 1.00341884478 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 Prefire_Weight_down ttZ 1.00339414043 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_up ttZ 1.00135746397 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_down ttZ 1.00145639099 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf Prefire_Weight_up ttZ 1.00226558878 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf Prefire_Weight_down ttZ 1.00317964398 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf Prefire_Weight_up ttZ 1.00275330448 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf Prefire_Weight_down ttZ 1.0026616632 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_up ttZ 1.00285871313 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_down ttZ 1.00287046827 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 Prefire_Weight_up ttZ 1.00384251798 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 Prefire_Weight_down ttZ 1.00395094245 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 Prefire_Weight_up ttZ 1.00313637639 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 Prefire_Weight_down ttZ 1.00310892088 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_up ttZ 1.00032581426 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_down ttZ 1.00038312455 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 Prefire_Weight_up ttZ 1.00419858635 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 Prefire_Weight_down ttZ 1.00488069468 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf Prefire_Weight_up ttZ 1.0061095881 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf Prefire_Weight_down ttZ 1.00634718583 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_up ttZ 1.0058622645 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_down ttZ 1.00589855439 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_up ttZ 1.00680823723 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_down ttZ 1.00671527379 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf Prefire_Weight_up ttZ 1.00243859686 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf Prefire_Weight_down ttZ 1.00225067478 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf Prefire_Weight_up ttZ 1.00284751486 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf Prefire_Weight_down ttZ 1.00284543217 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 Prefire_Weight_up ttZ 1.00514254056 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 Prefire_Weight_down ttZ 1.00581777925 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf Prefire_Weight_up ttZ 1.00060166271 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf Prefire_Weight_down ttZ 1.00065916726 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 Prefire_Weight_up ttZ 1.00300780983 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 Prefire_Weight_down ttZ 1.0030685839 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 Prefire_Weight_up ttZ 1.00336292269 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 Prefire_Weight_down ttZ 1.00340988441 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf Prefire_Weight_up ttZ 1.00489088703 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf Prefire_Weight_down ttZ 1.0051198275 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_up ttZ 1.00515236036 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_down ttZ 1.00546356944 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_up ttZ 1.00439229842 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_down ttZ 1.00425386467 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf Prefire_Weight_up ttZ 1.00095687561 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf Prefire_Weight_down ttZ 1.00094481203 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 Prefire_Weight_up ttZ 1.00328712539 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 Prefire_Weight_down ttZ 1.00374895647 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 Prefire_Weight_up ttZ 1.00335451009 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 Prefire_Weight_down ttZ 1.00335451009 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_up ttZ 1.00064342581 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_down ttZ 1.00074747603 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 Prefire_Weight_up ttZ 1.01179288034 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 Prefire_Weight_down ttZ 1.01157456561 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 Prefire_Weight_up ttZ 1.00329641928 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 Prefire_Weight_down ttZ 1.00330794012 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf Prefire_Weight_up ttZ 1.00673145553 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf Prefire_Weight_down ttZ 1.00692605723 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_up ttZ 1.00377055959 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_down ttZ 1.00383204654 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 Prefire_Weight_up ttZ 1.00308515196 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 Prefire_Weight_down ttZ 1.00312049463 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf Prefire_Weight_up ttZ 1.00090681521 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf Prefire_Weight_down ttZ 1.00094970358 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 Prefire_Weight_up ttZ 1.00283465198 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 Prefire_Weight_down ttZ 1.0028538819 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_up ttZ 1.00424006255 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_down ttZ 1.00430077311 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf Prefire_Weight_up ttZ 1.0021365399 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf Prefire_Weight_down ttZ 1.00231513119 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 Prefire_Weight_up ttZ 1.02019144367 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 Prefire_Weight_down ttZ 1.02077777975 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_up ttZ 1.00536251185 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_down ttZ 1.00544455958 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_up ttZ 1.02216398845 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_down ttZ 1.02213097951 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_up ttZ 1.00774135728 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_down ttZ 1.00758751465 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_up ttZ 1.00263392087 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_down ttZ 1.00283196064 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 Prefire_Weight_up ttZ 1.00559139656 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 Prefire_Weight_down ttZ 1.00521103398 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 Prefire_Weight_up ttZ 1.00446196018 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 Prefire_Weight_down ttZ 1.00427409904 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_up ttZ 1.00111975065 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_down ttZ 1.0011174331 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_up ttZ 1.00524342557 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_down ttZ 1.0052748623 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 Prefire_Weight_up ttZ 1.0003581571 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 Prefire_Weight_down ttZ 1.00022281792 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_up ttZ 1.00363451648 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_down ttZ 1.0037609718 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_up ttZ 1.00281312969 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_down ttZ 1.00278651479 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 Prefire_Weight_up ttZ 1.00728174097 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 Prefire_Weight_down ttZ 1.00743434817 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf Prefire_Weight_up ttZ 1.00391560824 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf Prefire_Weight_down ttZ 1.0038415971 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_up ttZ 1.00676781323 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_down ttZ 1.00685315457 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 Prefire_Weight_up ttZ 1.02083804423 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 Prefire_Weight_down ttZ 1.02047275053 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_up ttZ 1.00381163289 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_down ttZ 1.00382288737 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_up ttZ 1.00245674289 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_down ttZ 1.00293173521 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_up ttZ 1.00278091474 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_down ttZ 1.00277036766 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_up ttZ 1.00776707279 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_down ttZ 1.00767525983 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf Prefire_Weight_up ttZ 1.00533242224 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf Prefire_Weight_down ttZ 1.00525517418 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf Prefire_Weight_up ttZ 1.00337401805 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf Prefire_Weight_down ttZ 1.00331463513 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_up ttZ 1.00755235319 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_down ttZ 1.00750306402 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_up ttZ 1.00415337242 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_down ttZ 1.00425733521 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 Prefire_Weight_up ttZ 1.00452220211 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 Prefire_Weight_down ttZ 1.0043798449 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf Prefire_Weight_up ttZ 1.00283961256 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf Prefire_Weight_down ttZ 1.00287514858 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf Prefire_Weight_up ttZ 1.00412613489 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf Prefire_Weight_down ttZ 1.00418488281 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf Prefire_Weight_up ttZ 1.00020623345 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf Prefire_Weight_down ttZ 1.00020675733 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_up ttZ 1.00446314315 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_down ttZ 1.00450776179 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf Prefire_Weight_up ttZ 1.01417703484 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf Prefire_Weight_down ttZ 1.01402179589 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_up ttZ 1.00513927186 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_down ttZ 1.00510078926 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 Prefire_Weight_up ttZ 1.00537473628 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 Prefire_Weight_down ttZ 1.00541183969 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 Prefire_Weight_up ttZ 1.00724285139 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 Prefire_Weight_down ttZ 1.00717567781 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf Prefire_Weight_up ttZ 1.00474653244 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf Prefire_Weight_down ttZ 1.00474653244 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 Prefire_Weight_up ttZ 1.00426371073 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 Prefire_Weight_down ttZ 1.00435885506 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf Prefire_Weight_up ttZ 1.00435255469 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf Prefire_Weight_down ttZ 1.00436580168 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf Prefire_Weight_up ttZ 1.00704943186 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf Prefire_Weight_down ttZ 1.00704242069 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf Prefire_Weight_up ttZ 1.02765579416 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf Prefire_Weight_down ttZ 1.02846227245 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf Prefire_Weight_up ttZ 1.00422570788 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf Prefire_Weight_down ttZ 1.00400560693 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 Prefire_Weight_up ttZ 1.00499535112 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 Prefire_Weight_down ttZ 1.00521565319 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 Prefire_Weight_up ttZ 1.00290563903 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 Prefire_Weight_down ttZ 1.00292175641 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf Prefire_Weight_up ttZ 1.00580081378 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf Prefire_Weight_down ttZ 1.00588763438 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 Prefire_Weight_up ttZ 1.00244054098 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 Prefire_Weight_down ttZ 1.00241650726 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf Prefire_Weight_up ttZ 1.00077951749 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf Prefire_Weight_down ttZ 1.00089855581 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf Prefire_Weight_up ttZ 1.00959303394 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf Prefire_Weight_down ttZ 1.00967108458 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_up ttZ 1.00504314811 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_down ttZ 1.00504859737 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 Prefire_Weight_up ttZ 1.00191222485 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 Prefire_Weight_down ttZ 1.00229857138 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_up ttZ 1.0045602544 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_down ttZ 1.00476288333 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 Prefire_Weight_up ttZ 1.00494686641 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 Prefire_Weight_down ttZ 1.00491370908 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_up ttZ 1.00289691271 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_down ttZ 1.00310469454 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 Prefire_Weight_up ttZ 1.01345393702 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 Prefire_Weight_down ttZ 1.0134226268 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 Prefire_Weight_up ttZ 1.00428731186 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 Prefire_Weight_down ttZ 1.00436414945 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_up ttZ 1.00682173768 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_down ttZ 1.00692015173 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_up ttZ 1.00440797895 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_down ttZ 1.00454368195 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_up ttZ 1.00462423548 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_down ttZ 1.00467949731 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 Prefire_Weight_up ttZ 1.00425233837 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 Prefire_Weight_down ttZ 1.00433272502 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_up ttZ 1.0052284438 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_down ttZ 1.00530713179 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf Prefire_Weight_up ttZ 1.00151008621 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf Prefire_Weight_down ttZ 1.00151473486 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_up ttZ 1.00334738848 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_down ttZ 1.0035264417 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_up ttZ 1.00644897695 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_down ttZ 1.00642854028 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf Prefire_Weight_up ttZ 1.0032465143 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf Prefire_Weight_down ttZ 1.00323560754 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 Prefire_Weight_up ttZ 1.00389555512 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 Prefire_Weight_down ttZ 1.00382157325 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf Prefire_Weight_up ttZ 1.00361489606 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf Prefire_Weight_down ttZ 1.0036465911 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_up ttZ 1.00556649219 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_down ttZ 1.0055844706 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 Prefire_Weight_up ttZ 1.00222562762 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 Prefire_Weight_down ttZ 1.00219008341 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_up ttZ 1.00420406756 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_down ttZ 1.00425228525 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_up ttZ 1.00675182694 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_down ttZ 1.00684314023 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_up ttZ 1.00504535321 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_down ttZ 1.00515392618 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_up ttZ 1.0031436026 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_down ttZ 1.00317524249 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_up ttZ 1.00920114556 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_down ttZ 1.00911568364 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_up ttZ 1.00602776767 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_down ttZ 1.00597684385 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_up ttZ 1.00542768109 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_down ttZ 1.00552882549 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_up ttZ 1.0 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_down ttZ 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf Prefire_Weight_up ttZ 1.00503081163 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf Prefire_Weight_down ttZ 1.00508740335 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 Prefire_Weight_up ttZ 1.00138813526 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 Prefire_Weight_down ttZ 1.00227183886 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 Prefire_Weight_up ttZ 1.00289865867 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 Prefire_Weight_down ttZ 1.00290148003 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 Prefire_Weight_up ttZ 1.0055984061 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 Prefire_Weight_down ttZ 1.00562170819 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf Prefire_Weight_up ttZ 1.00133923498 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf Prefire_Weight_down ttZ 1.00150650433 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 Prefire_Weight_up ttZ 1.00664514437 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 Prefire_Weight_down ttZ 1.00631820856 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_up ttZ 1.00127248473 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_down ttZ 1.00127785475 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_up ttZ 1.00378326266 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_down ttZ 1.0038399083 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_up ttZ 1.00411603269 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_down ttZ 1.00425462203 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 Prefire_Weight_up ttZ 1.0 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 Prefire_Weight_down ttZ 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 Prefire_Weight_up ttZ 1.00349643036 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 Prefire_Weight_down ttZ 1.00362879614 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_up ttZ 1.00312484411 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_down ttZ 1.00321204429 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_up ttZ 1.00477933386 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_down ttZ 1.00479673894 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_up ttZ 1.00152183259 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_down ttZ 1.00140520719 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_up ttZ 1.00753409604 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_down ttZ 1.0074327304 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_up ttZ 1.00529638959 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_down ttZ 1.00537490782 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_up ttZ 1.00495171227 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_down ttZ 1.00495420558 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_up ttZ 1.00347080569 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_down ttZ 1.00347845063 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 Prefire_Weight_up ttZ 1.00808493644 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 Prefire_Weight_down ttZ 1.00832901788 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_up ttZ 1.00047464094 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_down ttZ 1.00063492528 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 Prefire_Weight_up ttZ 1.00167288345 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 Prefire_Weight_down ttZ 1.00173742555 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 Prefire_Weight_up ttZ 1.0039319858 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 Prefire_Weight_down ttZ 1.004965159 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_up ttZ 1.00190722714 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_down ttZ 1.00203393132 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_up ttZ 1.00685728732 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_down ttZ 1.00713436535 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_up ttZ 1.01428477356 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_down ttZ 1.0144350128 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 Prefire_Weight_up ttZ 1.00842447259 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 Prefire_Weight_down ttZ 1.00810866898 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_up ttZ 1.00084463408 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_down ttZ 1.00101336665 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 Prefire_Weight_up ttZ 1.00634865601 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 Prefire_Weight_down ttZ 1.00602411518 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 Prefire_Weight_up ttZ 1.02126070922 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 Prefire_Weight_down ttZ 1.02098042553 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_up ttZ 1.00540632651 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_down ttZ 1.00515310191 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_up ttZ 1.00282014321 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_down ttZ 1.0028265732 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 Prefire_Weight_up ttZ 1.00368238516 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 Prefire_Weight_down ttZ 1.00365291181 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_up ttZ 1.00839200342 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_down ttZ 1.00817597524 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 Prefire_Weight_up ttZ 1.01068437934 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 Prefire_Weight_down ttZ 1.01007765002 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 Prefire_Weight_up ttZ 1.00334868267 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 Prefire_Weight_down ttZ 1.00341090388 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 Prefire_Weight_up ttZ 1.01293342278 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 Prefire_Weight_down ttZ 1.01453809166 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 Prefire_Weight_up ttZ 1.00951783594 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 Prefire_Weight_down ttZ 1.0106316974 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 Prefire_Weight_up ttZ 1.00268636865 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 Prefire_Weight_down ttZ 1.00275951799 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 Prefire_Weight_up ttZ 1.009517139 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 Prefire_Weight_down ttZ 1.00961975026 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf Prefire_Weight_up ttZ 1.00215010535 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf Prefire_Weight_down ttZ 1.00213878732 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_up ttZ 1.00099592991 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_down ttZ 1.00108188259 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 Prefire_Weight_up ttZ 1.01147906195 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 Prefire_Weight_down ttZ 1.01102757374 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_up ttZ 1.00556467411 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_down ttZ 1.0056445903 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 Prefire_Weight_up ttZ 1.0019467671 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 Prefire_Weight_down ttZ 1.00181187389 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_up ttZ 1.00437800541 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_down ttZ 1.00446906947 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf Prefire_Weight_up ttZ 1.00672998786 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf Prefire_Weight_down ttZ 1.00682222653 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_up ttZ 1.00448569255 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_down ttZ 1.00454599903 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_up ttZ 1.0045905906 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_down ttZ 1.0046667711 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf Prefire_Weight_up ttZ 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf Prefire_Weight_down ttZ 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PDF_Weight_up ttZ 1.03158213401 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PDF_Weight_down ttZ 1.03158196375 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PDF_Weight_up ttZ 1.01951891553 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PDF_Weight_down ttZ 1.01951926831 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PDF_Weight_up ttZ 1.02132548315 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PDF_Weight_down ttZ 1.02132539143 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PDF_Weight_up ttZ 1.02258262219 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PDF_Weight_down ttZ 1.02258248578 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PDF_Weight_up ttZ 1.06278257546 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PDF_Weight_down ttZ 1.06278235627 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PDF_Weight_up ttZ 1.01367603565 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PDF_Weight_down ttZ 1.01367631478 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PDF_Weight_up ttZ 1.01587972261 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PDF_Weight_down ttZ 1.01587957947 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PDF_Weight_up ttZ 1.02443778782 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PDF_Weight_down ttZ 1.02443770843 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PDF_Weight_up ttZ 1.02543146084 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PDF_Weight_down ttZ 1.02543146084 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PDF_Weight_up ttZ 1.02078899596 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PDF_Weight_down ttZ 1.02078899596 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PDF_Weight_up ttZ 1.03159012447 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PDF_Weight_down ttZ 1.03159023779 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PDF_Weight_up ttZ 1.07506983873 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PDF_Weight_down ttZ 1.07506996596 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PDF_Weight_up ttZ 1.04065455579 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PDF_Weight_down ttZ 1.04065462335 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PDF_Weight_up ttZ 1.04309174447 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PDF_Weight_down ttZ 1.04309174447 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PDF_Weight_up ttZ 1.11689629084 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PDF_Weight_down ttZ 1.11689612216 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_up ttZ 1.04005740742 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_down ttZ 1.04005752907 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PDF_Weight_up ttZ 1.01635731777 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PDF_Weight_down ttZ 1.01635731777 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PDF_Weight_up ttZ 1.03088396017 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PDF_Weight_down ttZ 1.03088366172 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PDF_Weight_up ttZ 1.01146763721 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PDF_Weight_down ttZ 1.0114673535 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PDF_Weight_up ttZ 1.03218197422 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PDF_Weight_down ttZ 1.03218191192 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PDF_Weight_up ttZ 1.02764995326 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PDF_Weight_down ttZ 1.02764979351 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PDF_Weight_up ttZ 1.00018624731 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PDF_Weight_down ttZ 1.00018617562 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PDF_Weight_up ttZ 1.02320579826 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PDF_Weight_down ttZ 1.02320579826 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PDF_Weight_up ttZ 1.09383933847 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PDF_Weight_down ttZ 1.09383933847 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PDF_Weight_up ttZ 1.02622739175 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PDF_Weight_down ttZ 1.02622739175 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_up ttZ 1.03288961671 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_down ttZ 1.03288935472 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PDF_Weight_up ttZ 1.01419262179 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PDF_Weight_down ttZ 1.01419262179 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PDF_Weight_up ttZ 1.01435542551 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PDF_Weight_down ttZ 1.01435542551 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PDF_Weight_up ttZ 1.01211230339 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PDF_Weight_down ttZ 1.01211264905 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PDF_Weight_up ttZ 1.11397447946 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PDF_Weight_down ttZ 1.11397424345 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PDF_Weight_up ttZ 1.01411744909 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PDF_Weight_down ttZ 1.01411760548 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PDF_Weight_up ttZ 1.03689528762 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PDF_Weight_down ttZ 1.03689520244 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PDF_Weight_up ttZ 1.01486725344 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PDF_Weight_down ttZ 1.01486736638 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PDF_Weight_up ttZ 1.01203098349 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PDF_Weight_down ttZ 1.01203098349 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PDF_Weight_up ttZ 1.08850551475 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PDF_Weight_down ttZ 1.08850570674 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PDF_Weight_up ttZ 1.27299309059 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PDF_Weight_down ttZ 1.12329431953 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PDF_Weight_up ttZ 1.02382243145 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PDF_Weight_down ttZ 1.02382243145 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PDF_Weight_up ttZ 1.0267069106 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PDF_Weight_down ttZ 1.02670679928 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PDF_Weight_up ttZ 1.04003955172 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PDF_Weight_down ttZ 1.04003977412 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PDF_Weight_up ttZ 1.03950860999 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PDF_Weight_down ttZ 1.03950860999 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PDF_Weight_up ttZ 1.03712675062 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PDF_Weight_down ttZ 1.03712684529 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PDF_Weight_up ttZ 1.0521255009 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PDF_Weight_down ttZ 1.05212530969 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PDF_Weight_up ttZ 1.02279728038 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PDF_Weight_down ttZ 1.02279742271 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PDF_Weight_up ttZ 1.01382407427 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PDF_Weight_down ttZ 1.01382436367 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PDF_Weight_up ttZ 1.0157871375 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PDF_Weight_down ttZ 1.01578736941 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PDF_Weight_up ttZ 1.00173975262 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PDF_Weight_down ttZ 1.00173961336 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PDF_Weight_up ttZ 1.03312133421 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PDF_Weight_down ttZ 1.03312155252 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PDF_Weight_up ttZ 1.03532974468 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PDF_Weight_down ttZ 1.03532938789 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PDF_Weight_up ttZ 1.03114715364 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PDF_Weight_down ttZ 1.03114683784 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PDF_Weight_up ttZ 1.00905979903 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PDF_Weight_down ttZ 1.00905979903 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PDF_Weight_up ttZ 1.03992356776 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PDF_Weight_down ttZ 1.03992348851 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PDF_Weight_up ttZ 1.02958680961 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PDF_Weight_down ttZ 1.02958713375 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PDF_Weight_up ttZ 1.0237029722 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PDF_Weight_down ttZ 1.02370278269 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PDF_Weight_up ttZ 1.00332998333 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PDF_Weight_down ttZ 1.00332998333 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PDF_Weight_up ttZ 1.01181104775 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PDF_Weight_down ttZ 1.01181111028 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PDF_Weight_up ttZ 1.02512419313 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PDF_Weight_down ttZ 1.02512401014 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PDF_Weight_up ttZ 1.02606540763 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PDF_Weight_down ttZ 1.02606550162 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PDF_Weight_up ttZ 1.04268955233 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PDF_Weight_down ttZ 1.0426893242 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PDF_Weight_up ttZ 1.01995232335 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PDF_Weight_down ttZ 1.01995218793 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PDF_Weight_up ttZ 1.01906530923 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PDF_Weight_down ttZ 1.01906530923 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PDF_Weight_up ttZ 1.01833570396 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PDF_Weight_down ttZ 1.01833570396 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PDF_Weight_up ttZ 1.13240835749 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PDF_Weight_down ttZ 1.13240835749 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PDF_Weight_up ttZ 1.02584634428 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PDF_Weight_down ttZ 1.02584671893 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PDF_Weight_up ttZ 1.02621583682 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PDF_Weight_down ttZ 1.02621583682 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PDF_Weight_up ttZ 1.03690228582 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PDF_Weight_down ttZ 1.03690237647 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_up ttZ 1.02580441264 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_down ttZ 1.02580457384 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PDF_Weight_up ttZ 1.02338207243 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PDF_Weight_down ttZ 1.02338196128 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PDF_Weight_up ttZ 1.02795466697 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PDF_Weight_down ttZ 1.02795466697 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PDF_Weight_up ttZ 1.04148268743 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PDF_Weight_down ttZ 1.04148259473 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PDF_Weight_up ttZ 1.02495467294 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PDF_Weight_down ttZ 1.02495474218 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PDF_Weight_up ttZ 1.02210692844 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PDF_Weight_down ttZ 1.02210674112 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PDF_Weight_up ttZ 1.01072582086 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PDF_Weight_down ttZ 1.01072600765 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_up ttZ 1.0452982389 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_down ttZ 1.04529840319 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PDF_Weight_up ttZ 1.0408622453 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PDF_Weight_down ttZ 1.04086232673 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PDF_Weight_up ttZ 1.10819155463 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PDF_Weight_down ttZ 1.10819163677 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PDF_Weight_up ttZ 1.00949953012 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PDF_Weight_down ttZ 1.00949945792 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PDF_Weight_up ttZ 1.01423211965 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PDF_Weight_down ttZ 1.01423235593 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PDF_Weight_up ttZ 1.02049120614 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PDF_Weight_down ttZ 1.0204906867 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_up ttZ 1.01456835865 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_down ttZ 1.01456826686 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PDF_Weight_up ttZ 1.05107338014 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PDF_Weight_down ttZ 1.05107327027 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_up ttZ 1.0102132078 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_down ttZ 1.01021348414 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PDF_Weight_up ttZ 1.04109241443 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PDF_Weight_down ttZ 1.04109251051 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PDF_Weight_up ttZ 1.02152573671 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PDF_Weight_down ttZ 1.02152560955 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PDF_Weight_up ttZ 1.03681711604 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PDF_Weight_down ttZ 1.03681693874 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PDF_Weight_up ttZ 1.01321034103 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PDF_Weight_down ttZ 1.01320937742 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PDF_Weight_up ttZ 1.0203787156 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PDF_Weight_down ttZ 1.0203787156 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PDF_Weight_up ttZ 1.00862987455 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PDF_Weight_down ttZ 1.00862966365 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PDF_Weight_up ttZ 1.02676518383 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PDF_Weight_down ttZ 1.02676544757 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PDF_Weight_up ttZ 1.07170951992 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PDF_Weight_down ttZ 1.0717094326 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PDF_Weight_up ttZ 1.02434192714 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PDF_Weight_down ttZ 1.02434199444 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PDF_Weight_up ttZ 1.18444763541 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PDF_Weight_down ttZ 1.18444795505 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_up ttZ 1.02375579963 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_down ttZ 1.02375544819 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PDF_Weight_up ttZ 1.01644772626 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PDF_Weight_down ttZ 1.01644732186 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PDF_Weight_up ttZ 1.01849982402 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PDF_Weight_down ttZ 1.01850002394 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PDF_Weight_up ttZ 1.10477951072 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PDF_Weight_down ttZ 1.1047798219 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PDF_Weight_up ttZ 1.02330580298 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PDF_Weight_down ttZ 1.02330602528 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PDF_Weight_up ttZ 1.02903078775 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PDF_Weight_down ttZ 1.02903038015 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PDF_Weight_up ttZ 1.0135437793 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PDF_Weight_down ttZ 1.01354367914 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PDF_Weight_up ttZ 1.25117572764 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PDF_Weight_down ttZ 1.03520786968 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PDF_Weight_up ttZ 1.01093060528 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PDF_Weight_down ttZ 1.01093072052 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PDF_Weight_up ttZ 1.01810733629 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PDF_Weight_down ttZ 1.01810715255 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PDF_Weight_up ttZ 1.02050038171 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PDF_Weight_down ttZ 1.02050031538 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PDF_Weight_up ttZ 1.04792631985 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PDF_Weight_down ttZ 1.04792639469 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PDF_Weight_up ttZ 1.02358313969 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PDF_Weight_down ttZ 1.02358313969 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PDF_Weight_up ttZ 1.03346838546 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PDF_Weight_down ttZ 1.03346858211 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PDF_Weight_up ttZ 1.03573299942 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PDF_Weight_down ttZ 1.03573280233 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_up ttZ 1.04004576232 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_down ttZ 1.04004595353 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PDF_Weight_up ttZ 1.00398497859 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PDF_Weight_down ttZ 1.00398497859 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PDF_Weight_up ttZ 1.02296372832 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PDF_Weight_down ttZ 1.02296372832 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PDF_Weight_up ttZ 1.02038730248 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PDF_Weight_down ttZ 1.02038750972 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_up ttZ 1.04439784096 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_down ttZ 1.0443979484 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PDF_Weight_up ttZ 1.03456435085 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PDF_Weight_down ttZ 1.03456480136 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PDF_Weight_up ttZ 1.02256573333 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PDF_Weight_down ttZ 1.02256583591 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PDF_Weight_up ttZ 1.0178098604 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PDF_Weight_down ttZ 1.01781020291 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PDF_Weight_up ttZ 1.03991611771 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PDF_Weight_down ttZ 1.0399163267 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PDF_Weight_up ttZ 1.04330943602 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PDF_Weight_down ttZ 1.04330923723 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PDF_Weight_up ttZ 1.01359360068 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PDF_Weight_down ttZ 1.01359360068 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PDF_Weight_up ttZ 1.02545109389 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PDF_Weight_down ttZ 1.025451258 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PDF_Weight_up ttZ 1.04726947942 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PDF_Weight_down ttZ 1.04726927281 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PDF_Weight_up ttZ 1.02823032384 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PDF_Weight_down ttZ 1.02823043308 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PDF_Weight_up ttZ 1.03137970548 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PDF_Weight_down ttZ 1.03137962502 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PDF_Weight_up ttZ 1.03502386777 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PDF_Weight_down ttZ 1.03502377293 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PDF_Weight_up ttZ 1.01621291869 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PDF_Weight_down ttZ 1.01621291869 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PDF_Weight_up ttZ 1.04186549714 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PDF_Weight_down ttZ 1.04186549714 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PDF_Weight_up ttZ 1.01317340667 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PDF_Weight_down ttZ 1.01317340667 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PDF_Weight_up ttZ 1.02867647033 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PDF_Weight_down ttZ 1.02867655788 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_up ttZ 1.01069765613 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_down ttZ 1.01069742206 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PDF_Weight_up ttZ 1.02707743635 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PDF_Weight_down ttZ 1.02707751752 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PDF_Weight_up ttZ 1.01070046978 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PDF_Weight_down ttZ 1.01070067541 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PDF_Weight_up ttZ 1.02555582819 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PDF_Weight_down ttZ 1.02555568205 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PDF_Weight_up ttZ 1.03802656899 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PDF_Weight_down ttZ 1.03802673856 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_up ttZ 1.02134991092 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_down ttZ 1.02134952219 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PDF_Weight_up ttZ 1.01425340422 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PDF_Weight_down ttZ 1.01425322339 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PDF_Weight_up ttZ 1.02905095893 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PDF_Weight_down ttZ 1.02905095893 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PDF_Weight_up ttZ 1.02632781532 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PDF_Weight_down ttZ 1.02632773516 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PDF_Weight_up ttZ 1.02287818848 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PDF_Weight_down ttZ 1.02287825169 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PDF_Weight_up ttZ 1.0137842872 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PDF_Weight_down ttZ 1.01378409911 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PDF_Weight_up ttZ 1.02594424233 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PDF_Weight_down ttZ 1.02594465659 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PDF_Weight_up ttZ 1.04307008393 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PDF_Weight_down ttZ 1.04307023824 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PDF_Weight_up ttZ 1.01566320993 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PDF_Weight_down ttZ 1.01566320993 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PDF_Weight_up ttZ 1.03701556475 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PDF_Weight_down ttZ 1.03701577534 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PDF_Weight_up ttZ 1.02154878079 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PDF_Weight_down ttZ 1.02154833651 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PDF_Weight_up ttZ 1.01667230444 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PDF_Weight_down ttZ 1.01667275503 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PDF_Weight_up ttZ 1.01800064642 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PDF_Weight_down ttZ 1.01800064642 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PDF_Weight_up ttZ 1.02404959705 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PDF_Weight_down ttZ 1.02404948979 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PDF_Weight_up ttZ 1.01899681578 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PDF_Weight_down ttZ 1.01899675167 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PDF_Weight_up ttZ 1.02527829208 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PDF_Weight_down ttZ 1.02527867045 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PDF_Weight_up ttZ 1.02537374851 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PDF_Weight_down ttZ 1.02537365653 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PDF_Weight_up ttZ 1.0240620244 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PDF_Weight_down ttZ 1.02406184678 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PDF_Weight_up ttZ 1.01865927987 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PDF_Weight_down ttZ 1.01865909727 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PDF_Weight_up ttZ 1.02423419923 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PDF_Weight_down ttZ 1.02423391154 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PDF_Weight_up ttZ 1.02388258104 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PDF_Weight_down ttZ 1.02388269687 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PDF_Weight_up ttZ 1.0081781223 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PDF_Weight_down ttZ 1.00817791321 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_up ttZ 1.01234344695 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_down ttZ 1.01234325282 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PDF_Weight_up ttZ 1.02008514911 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PDF_Weight_down ttZ 1.02008521189 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PDF_Weight_up ttZ 1.03008863477 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PDF_Weight_down ttZ 1.03008856977 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PDF_Weight_up ttZ 1.04864217189 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PDF_Weight_down ttZ 1.04864225029 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PDF_Weight_up ttZ 1.01368809619 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PDF_Weight_down ttZ 1.01368809619 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PDF_Weight_up ttZ 1.04985024929 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PDF_Weight_down ttZ 1.04985018237 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PDF_Weight_up ttZ 1.00436349484 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PDF_Weight_down ttZ 1.00436394676 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PDF_Weight_up ttZ 1.01685907748 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PDF_Weight_down ttZ 1.01685901273 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PDF_Weight_up ttZ 1.01627729497 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PDF_Weight_down ttZ 1.0162774636 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PDF_Weight_up ttZ 1.09551640662 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PDF_Weight_down ttZ 1.09551640662 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PDF_Weight_up ttZ 1.03537515897 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PDF_Weight_down ttZ 1.03537525234 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PDF_Weight_up ttZ 1.05435267996 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PDF_Weight_down ttZ 1.05435261435 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PDF_Weight_up ttZ 1.1147361695 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PDF_Weight_down ttZ 1.11473627439 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PDF_Weight_up ttZ 1.03442294577 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PDF_Weight_down ttZ 1.03442294577 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PDF_Weight_up ttZ 1.02544618329 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PDF_Weight_down ttZ 1.02544634747 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PDF_Weight_up ttZ 1.01302491144 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PDF_Weight_down ttZ 1.0130248499 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PDF_Weight_up ttZ 1.02871978431 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PDF_Weight_down ttZ 1.02871936268 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PDF_Weight_up ttZ 1.00887780044 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PDF_Weight_down ttZ 1.00887792602 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PDF_Weight_up ttZ 1.01994944893 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PDF_Weight_down ttZ 1.01994985532 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PDF_Weight_up ttZ 1.06504527639 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PDF_Weight_down ttZ 1.06504538672 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PDF_Weight_up ttZ 1.00978100265 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PDF_Weight_down ttZ 1.00978084324 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PDF_Weight_up ttZ 1.01763898382 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PDF_Weight_down ttZ 1.01763919143 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PDF_Weight_up ttZ 1.02198427313 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PDF_Weight_down ttZ 1.02198416981 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PDF_Weight_up ttZ 1.03028191454 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PDF_Weight_down ttZ 1.03028191454 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PDF_Weight_up ttZ 1.01755831793 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PDF_Weight_down ttZ 1.01755831793 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PDF_Weight_up ttZ 1.01626560824 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PDF_Weight_down ttZ 1.01626616266 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PDF_Weight_up ttZ 1.03029241721 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PDF_Weight_down ttZ 1.03029267486 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PDF_Weight_up ttZ 1.03665689686 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PDF_Weight_down ttZ 1.03665695587 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PDF_Weight_up ttZ 1.01468933555 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PDF_Weight_down ttZ 1.01468942497 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PDF_Weight_up ttZ 1.00742739077 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PDF_Weight_down ttZ 1.00742641544 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 JES_up ttZ 1.01431350642 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 JES_down ttZ 1.00717028928 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 JES_up ttZ 1.05307908187 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 JES_down ttZ 1.05881506794 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_up ttZ 1.23504792808 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_down ttZ 1.03063464074 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf JES_up ttZ 1.06637690593 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf JES_down ttZ 1.00397640646 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 JES_up ttZ 1.13780487244 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 JES_down ttZ 1.19938552613 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_up ttZ 1.05800489209 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_down ttZ 1.0498460162 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_up ttZ 1.06058863109 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_down ttZ 1.08707353795 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 JES_up ttZ 1.15025937751 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 JES_down ttZ 1.00521279562 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_up ttZ 1.01154600036 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_down ttZ 1.02181128981 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_up ttZ 1.17217161536 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_down ttZ 1.05588939427 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 JES_up ttZ 0.82913988261 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 JES_down ttZ 0.660677539129 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_up ttZ 1.15977762297 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_down ttZ 1.15370577392 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf JES_up ttZ 1.05734159913 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf JES_down ttZ 1.01500914383 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 JES_up ttZ 0.91089696489 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 JES_down ttZ 0.852943212328 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf JES_up ttZ 1.01314664825 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf JES_down ttZ 1.0814705731 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_up ttZ 1.00932870647 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_down ttZ 1.0001179363 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_up ttZ 1.04458509513 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_down ttZ 1.04656678283 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 JES_up ttZ 0.99698796679 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 JES_down ttZ 0.958278012745 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 JES_up ttZ 1.0798004181 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 JES_down ttZ 1.08703299239 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 JES_up ttZ 1.06089480739 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 JES_down ttZ 1.10015629388 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf JES_up ttZ 1.3405822621 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf JES_down ttZ 1.3265522861 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_up ttZ 1.05869005344 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_down ttZ 1.04469340345 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf JES_up ttZ 1.06118101075 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf JES_down ttZ 1.07786290447 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 JES_up ttZ 1.32874024979 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 JES_down ttZ 1.3345877063 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 JES_up ttZ 1.02240083867 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 JES_down ttZ 1.09304138515 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf JES_up ttZ 1.12217546902 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf JES_down ttZ 1.04692402807 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_up ttZ 1.05230972361 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_down ttZ 1.04973417117 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 JES_up ttZ 1.24754932028 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 JES_down ttZ 1.09835071408 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf JES_up ttZ 1.01715585305 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf JES_down ttZ 1.1225433383 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf JES_up ttZ 0.90359199546 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf JES_down ttZ 0.859937933299 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf JES_up ttZ 1.13429232443 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf JES_down ttZ 1.19693398919 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_up ttZ 1.03487945192 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_down ttZ 1.04728086635 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_up ttZ 1.11405610289 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_down ttZ 1.07702925992 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 JES_up ttZ 0.821714784966 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 JES_down ttZ 0.718720678911 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 JES_up ttZ 1.2790450359 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 JES_down ttZ 1.2748962319 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_up ttZ 0.988160504739 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_down ttZ 0.831437389734 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf JES_up ttZ 0.841884757596 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf JES_down ttZ 0.818803959751 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_up ttZ 1.06004206956 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_down ttZ 1.01144734548 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 JES_up ttZ 1.0919227118 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 JES_down ttZ 1.01139102322 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_up ttZ 1.01081724476 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_down ttZ 1.12722217862 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf JES_up ttZ 0.96051346338 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf JES_down ttZ 0.713883024214 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 JES_up ttZ 1.04104845074 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 JES_down ttZ 1.31039755717 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf JES_up ttZ 1.05016745353 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf JES_down ttZ 1.01403794247 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 JES_up ttZ 1.07694705819 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 JES_down ttZ 1.09325621297 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 JES_up ttZ 1.05631764951 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 JES_down ttZ 1.05557652406 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf JES_up ttZ 0.937031900989 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf JES_down ttZ 0.828652401243 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_up ttZ 1.06660583663 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_down ttZ 1.16711790709 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 JES_up ttZ 1.07866747761 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 JES_down ttZ 1.05605098215 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf JES_up ttZ 1.02580987204 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf JES_down ttZ 1.11888816234 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 JES_up ttZ 1.10160255244 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 JES_down ttZ 1.03011631609 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 JES_up ttZ 1.28863131106 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 JES_down ttZ 1.41770711849 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_up ttZ 0.998448160665 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_down ttZ 0.784875279524 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 JES_up ttZ 1.09366583121 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 JES_down ttZ 1.15846124501 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 JES_up ttZ 1.21270994329 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 JES_down ttZ 1.0994054863 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf JES_up ttZ 1.72257476063 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf JES_down ttZ 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 JES_up ttZ 1.03425720232 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 JES_down ttZ 1.04029125054 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 JES_up ttZ 1.01175350593 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 JES_down ttZ 1.00148411018 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf JES_up ttZ 1.06388131055 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf JES_down ttZ 1.04720954138 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 JES_up ttZ 1.19737896258 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 JES_down ttZ 1.1673319495 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 JES_up ttZ 1.07360804819 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 JES_down ttZ 1.09607716614 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf JES_up ttZ 1.06943625542 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf JES_down ttZ 1.05057778952 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 JES_up ttZ 0.675483351265 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 JES_down ttZ 0.484500928553 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_up ttZ 1.01202982603 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_down ttZ 1.08597009211 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 JES_up ttZ 1.95852078217 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 JES_down ttZ 1.21760616937 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_up ttZ 1.11277824823 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_down ttZ 1.00671794573 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_up ttZ 1.08054205669 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_down ttZ 1.12273395795 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 JES_up ttZ 0.95573977909 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 JES_down ttZ 0.71314487268 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 JES_up ttZ 0.972816475491 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 JES_down ttZ 0.970619085041 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 JES_up ttZ 1.05047137711 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 JES_down ttZ 1.24873862346 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 JES_up ttZ 1.10143297495 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 JES_down ttZ 1.07376518727 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 JES_up ttZ 0.728946445867 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 JES_down ttZ 0.669734479523 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_up ttZ 1.03768116429 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_down ttZ 1.06619431775 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_up ttZ 1.01113225883 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_down ttZ 1.04465750972 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_up ttZ 1.04776694715 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_down ttZ 1.04921272522 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf JES_up ttZ 0.999221856237 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf JES_down ttZ 0.947865928614 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf JES_up ttZ 1.28374549395 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf JES_down ttZ 1.09626603507 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 JES_up ttZ 1.54654340249 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 JES_down ttZ 1.47776154513 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 JES_up ttZ 0.997014186273 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 JES_down ttZ 0.99293140697 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_up ttZ 1.10691824708 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_down ttZ 1.00270851176 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_up ttZ 1.03722527728 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_down ttZ 1.02527707797 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_up ttZ 1.17118675683 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_down ttZ 1.13085143571 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf JES_up ttZ 1.01930221556 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf JES_down ttZ 1.00814198425 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf JES_up ttZ 1.09581631426 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf JES_down ttZ 1.01784463139 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf JES_up ttZ 1.11362228447 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf JES_down ttZ 1.0098074803 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_up ttZ 1.09370505831 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_down ttZ 1.10987518041 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 JES_up ttZ 0.991807826611 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 JES_down ttZ 0.884656295189 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf JES_up ttZ 1.13436189543 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf JES_down ttZ 1.04186111301 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf JES_up ttZ 1.12058726295 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf JES_down ttZ 1.0632314891 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf JES_up ttZ 1.77517375299 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf JES_down ttZ 1.31655874772 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 JES_up ttZ 1.1269006079 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 JES_down ttZ 1.02880614706 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf JES_up ttZ 1.20205622889 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf JES_down ttZ 1.17325551426 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 JES_up ttZ 1.1323947211 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 JES_down ttZ 1.09370477416 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 JES_up ttZ 1.01071408785 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 JES_down ttZ 1.04332262086 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 JES_up ttZ 1.0866603165 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 JES_down ttZ 1.10025327039 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf JES_up ttZ 1.92527279586 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf JES_down ttZ 1.51318343971 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 JES_up ttZ 1.00696665436 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 JES_down ttZ 1.00669844961 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf JES_up ttZ 1.08271474116 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf JES_down ttZ 1.05654530416 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf JES_up ttZ 1.01262331272 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf JES_down ttZ 1.11064969816 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf JES_up ttZ 1.2537789497 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf JES_down ttZ 1.20657620998 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf JES_up ttZ 0.96735603208 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf JES_down ttZ 0.950209130479 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 JES_up ttZ 0.980205151026 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 JES_down ttZ 0.94428366333 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 JES_up ttZ 0.957931244441 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 JES_down ttZ 0.923141310973 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf JES_up ttZ 1.18679991533 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf JES_down ttZ 1.0246021895 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 JES_up ttZ 1.0296441099 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 JES_down ttZ 1.00468993001 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf JES_up ttZ 1.09478249646 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf JES_down ttZ 1.02030390039 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf JES_up ttZ 1.13132344409 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf JES_down ttZ 1.0074628035 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_up ttZ 1.0508183787 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_down ttZ 1.01029250775 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 JES_up ttZ 1.22296648191 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 JES_down ttZ 1.37898460092 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 JES_up ttZ 1.48252976692 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 JES_down ttZ 1.48016256225 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 JES_up ttZ 1.35051525455 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 JES_down ttZ 1.21890640287 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 JES_up ttZ 0.977529695397 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 JES_down ttZ 0.850483463403 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_up ttZ 1.05205100008 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_down ttZ 1.025887476 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 JES_up ttZ 1.00864068968 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 JES_down ttZ 1.01269820687 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_up ttZ 1.06905355368 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_down ttZ 1.04333677516 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf JES_up ttZ 1.40322195702 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf JES_down ttZ 1.24857236683 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_up ttZ 0.968216100513 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_down ttZ 0.9420526734 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 JES_up ttZ 1.04711639839 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 JES_down ttZ 1.09980550405 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 JES_up ttZ 1.08568014734 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 JES_down ttZ 1.0776211512 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf JES_up ttZ 1.03500945534 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf JES_down ttZ 1.02706926128 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_up ttZ 1.02703168324 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_down ttZ 1.05181564226 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf JES_up ttZ 1.07863154434 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf JES_down ttZ 1.05217176653 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf JES_up ttZ 1.06254654339 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf JES_down ttZ 1.15200982101 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 JES_up ttZ 1.07357311542 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 JES_down ttZ 1.00420517878 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf JES_up ttZ 1.00731251817 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf JES_down ttZ 1.00307142907 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_up ttZ 1.14040238931 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_down ttZ 1.0654046217 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 JES_up ttZ 1.28136093338 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 JES_down ttZ 1.24678324933 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf JES_up ttZ 1.07022906445 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf JES_down ttZ 1.03513770481 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_up ttZ 1.03473638987 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_down ttZ 1.0625393814 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_up ttZ 1.06863354195 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_down ttZ 1.08258962445 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf JES_up ttZ 1.00873283024 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf JES_down ttZ 1.11152003463 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 JES_up ttZ 1.22223719125 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 JES_down ttZ 1.08326814177 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 JES_up ttZ 1.13353364019 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 JES_down ttZ 1.03097344488 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_up ttZ 1.04380866662 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_down ttZ 1.08054120332 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf JES_up ttZ 1.17163852328 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf JES_down ttZ 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf JES_up ttZ 1.09628784762 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf JES_down ttZ 1.13547216373 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_up ttZ 2.05564260549 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_down ttZ 1.56623279433 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 JES_up ttZ 1.07053214678 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 JES_down ttZ 1.01099293401 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 JES_up ttZ 1.02205983481 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 JES_down ttZ 1.03699792787 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf JES_up ttZ 1.03063876139 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf JES_down ttZ 1.02582436672 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_up ttZ 1.14791098495 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_down ttZ 1.04961848873 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_up ttZ 1.01839674926 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_down ttZ 1.02353796664 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 JES_up ttZ 1.00395564313 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 JES_down ttZ 1.02359479926 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_up ttZ 1.11106387759 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_down ttZ 1.05293874744 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 JES_up ttZ 1.40094219519 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 JES_down ttZ 1.01109713881 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 JES_up ttZ 1.04338218818 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 JES_down ttZ 1.00984666271 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 JES_up ttZ 1.06242103094 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 JES_down ttZ 1.05744747888 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_up ttZ 1.02872500227 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_down ttZ 1.01426812903 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_up ttZ 0.798203950584 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_down ttZ 0.685129103756 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 JES_up ttZ 1.08505619399 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 JES_down ttZ 1.15847570706 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_up ttZ 0.935638056509 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_down ttZ 0.881129420873 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_up ttZ 1.11584624644 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_down ttZ 1.13061737791 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 JES_up ttZ 1.00263356822 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 JES_down ttZ 1.01027781967 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_up ttZ 1.19031954317 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_down ttZ 1.2174758689 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 JES_up ttZ 1.12553486081 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 JES_down ttZ 1.11587768099 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 JES_up ttZ 1.12535525622 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 JES_down ttZ 1.14795013859 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 JES_up ttZ 1.08352934983 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 JES_down ttZ 1.34946875684 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 JES_up ttZ 1.07101400505 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 JES_down ttZ 1.04460371152 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf JES_up ttZ 0.985778631042 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf JES_down ttZ 0.973040685552 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 JES_up ttZ 0.941167251139 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 JES_down ttZ 0.770993306892 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_up ttZ 1.00165457954 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_down ttZ 1.00734726955 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 JES_up ttZ 1.30577942082 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 JES_down ttZ 1.03344077571 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 JES_up ttZ 1.12082994761 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 JES_down ttZ 1.04825422078 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_up ttZ 1.38931706856 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_down ttZ 1.47324543735 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_up ttZ 1.06536238569 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_down ttZ 1.19641087745 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf JES_up ttZ 1.03071031102 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf JES_down ttZ 1.11103708598 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 JES_up ttZ 1.25743142622 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 JES_down ttZ 1.18856050291 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 JES_up ttZ 1.14252022827 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 JES_down ttZ 1.03543054836 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_up ttZ 0.991234563229 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_down ttZ 0.948478575543 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 JES_up ttZ 1.00222894709 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 JES_down ttZ 1.05327575584 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 JES_up ttZ 1.24598391573 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 JES_down ttZ 1.39731899048 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 JES_up ttZ 1.70572319083 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 JES_down ttZ 1.21645507234 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 JES_up ttZ 1.06765159265 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 JES_down ttZ 1.04253341177 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 JES_up ttZ 1.0383691077 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 JES_down ttZ 1.11865171455 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf JES_up ttZ 0.894044424989 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf JES_down ttZ 0.80131013277 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf JES_up ttZ 1.09103768963 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf JES_down ttZ 1.0953902376 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 JES_up ttZ 1.04550577579 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 JES_down ttZ 1.00115682231 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf JES_up ttZ 0.854498822561 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf JES_down ttZ 0.811338577765 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 JES_up ttZ 1.11761324437 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 JES_down ttZ 1.03377863494 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 JES_up ttZ 1.04447682586 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 JES_down ttZ 1.05016382522 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf JES_up ttZ 1.04221027223 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf JES_down ttZ 1.02451745175 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 JES_up ttZ 1.08260630197 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 JES_down ttZ 1.02004045609 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_up ttZ 1.12226872333 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_down ttZ 1.12223108014 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf JES_up ttZ 2.61563785733 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf JES_down ttZ 1.22371651547 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 metres_up ttZ 1.0079572546 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 metres_down ttZ 1.01391142537 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 metres_up ttZ 1.00103425549 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 metres_down ttZ 1.00163159602 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 metres_up ttZ 0.996578937327 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 metres_down ttZ 0.97684937528 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf metres_up ttZ 0.990083059712 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf metres_down ttZ 0.983579573348 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 metres_up ttZ 1.10938605876 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 metres_down ttZ 1.02333144173 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_up ttZ 1.00661024517 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_down ttZ 1.00147996396 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_up ttZ 0.999201612577 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_down ttZ 0.987577332152 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 metres_up ttZ 1.05895011175 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 metres_down ttZ 1.00723037029 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf metres_up ttZ 1.01357065279 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf metres_down ttZ 1.01706792909 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_up ttZ 0.968739441872 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_down ttZ 0.964156653256 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 metres_up ttZ 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 metres_down ttZ 1.27528170359 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_up ttZ 1.01443512993 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_down ttZ 1.04955504427 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf metres_up ttZ 1.09547738014 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf metres_down ttZ 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 metres_up ttZ 1.03106952111 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 metres_down ttZ 1.07375952715 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf metres_up ttZ 1.06025658867 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf metres_down ttZ 1.04338104624 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_up ttZ 0.968938595818 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_down ttZ 0.933045209502 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 metres_up ttZ 0.980103817155 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 metres_down ttZ 0.977542524981 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 metres_up ttZ 1.01595799608 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 metres_down ttZ 1.01197272507 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 metres_up ttZ 1.01033108712 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 metres_down ttZ 1.00347121577 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 metres_up ttZ 1.01009225625 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 metres_down ttZ 1.00953381462 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf metres_up ttZ 1.17538344626 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf metres_down ttZ 1.16519881584 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 metres_up ttZ 1.02783651673 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 metres_down ttZ 1.01119197201 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf metres_up ttZ 0.995412512088 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf metres_down ttZ 0.987149914345 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 metres_up ttZ 0.930782617859 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 metres_down ttZ 0.831708988997 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 metres_up ttZ 0.989437949497 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 metres_down ttZ 0.977899274171 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf metres_up ttZ 1.00503916776 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf metres_down ttZ 1.02406375361 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_up ttZ 1.00316453092 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_down ttZ 1.00081227379 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 metres_up ttZ 1.18979884739 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 metres_down ttZ 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf metres_up ttZ 1.0488578492 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf metres_down ttZ 1.00610043035 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf metres_up ttZ 1.29533698892 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf metres_down ttZ 1.0 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf metres_up ttZ 1.01066932854 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf metres_down ttZ 1.02723208296 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_up ttZ 1.01152889362 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_down ttZ 1.01418146593 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 metres_up ttZ 1.0213889852 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 metres_down ttZ 1.0081644754 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 metres_up ttZ 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 metres_down ttZ 1.17792428748 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 metres_up ttZ 0.925378838277 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 metres_down ttZ 0.840181096667 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 metres_up ttZ 0.925546770796 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 metres_down ttZ 0.839442216774 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf metres_up ttZ 1.02815394784 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf metres_down ttZ 1.02777712591 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_up ttZ 1.0394425472 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_down ttZ 1.0225337958 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 metres_up ttZ 1.02099405712 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 metres_down ttZ 1.07450863654 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf metres_up ttZ 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf metres_down ttZ 1.05104873906 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf metres_up ttZ 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf metres_down ttZ 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 metres_up ttZ 1.07071621859 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 metres_down ttZ 1.14560279847 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf metres_up ttZ 1.02729395116 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf metres_down ttZ 1.01450452642 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 metres_up ttZ 1.00511406533 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 metres_down ttZ 1.01034562718 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 metres_up ttZ 0.998267866382 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 metres_down ttZ 0.990845248274 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf metres_up ttZ 1.0570985054 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf metres_down ttZ 1.01411340018 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 metres_up ttZ 0.983795296693 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 metres_down ttZ 0.910980888204 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 metres_up ttZ 1.02286856619 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 metres_down ttZ 1.02922712341 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf metres_up ttZ 1.0261427258 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf metres_down ttZ 1.0181608674 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 metres_up ttZ 1.08795840282 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 metres_down ttZ 1.03723479103 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 metres_up ttZ 1.28863131106 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 metres_down ttZ 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_up ttZ 1.11523059401 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_down ttZ 1.00975657192 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 metres_up ttZ 1.00246731651 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 metres_down ttZ 1.10178422072 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 metres_up ttZ 1.02822559493 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 metres_down ttZ 1.01976760931 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf metres_up ttZ 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf metres_down ttZ 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 metres_up ttZ 1.00023926844 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 metres_down ttZ 1.01523046584 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 metres_up ttZ 1.02665805534 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 metres_down ttZ 1.01266771554 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf metres_up ttZ 0.996821698229 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf metres_down ttZ 0.991474340095 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 metres_up ttZ 1.14867798397 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 metres_down ttZ 1.02286125427 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 metres_up ttZ 1.00428041453 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 metres_down ttZ 1.00298157357 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf metres_up ttZ 1.02696023314 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf metres_down ttZ 1.00666191218 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 metres_up ttZ 0.941932300631 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 metres_down ttZ 0.787257258098 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_up ttZ 1.00945272201 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_down ttZ 1.02282865522 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 metres_up ttZ 1.77532741836 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 metres_down ttZ 1.26823386058 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_up ttZ 1.00677641862 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_down ttZ 1.04317873857 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_up ttZ 0.995636838105 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_down ttZ 0.994770605546 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 metres_up ttZ 0.913768902947 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 metres_down ttZ 0.898816552197 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 metres_up ttZ 1.01543265522 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 metres_down ttZ 1.04569834111 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 metres_up ttZ 0.939362521754 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 metres_down ttZ 0.858624133384 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 metres_up ttZ 1.01133993606 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 metres_down ttZ 1.01269282351 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 metres_up ttZ 1.07929723658 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 metres_down ttZ 1.10551660275 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_up ttZ 1.00225088605 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_down ttZ 1.00167950226 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_up ttZ 1.00496014747 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_down ttZ 1.00451434782 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 metres_up ttZ 1.14447658461 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 metres_down ttZ 1.08337930958 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf metres_up ttZ 1.00242018892 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf metres_down ttZ 1.08110799523 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf metres_up ttZ 1.10008863369 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf metres_down ttZ 1.01535891301 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 metres_up ttZ 1.0875593553 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 metres_down ttZ 1.04260688641 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 metres_up ttZ 1.00803353489 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 metres_down ttZ 1.01028278614 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_up ttZ 1.11709354632 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_down ttZ 1.03664352345 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_up ttZ 1.05073224786 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_down ttZ 1.03839171896 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_up ttZ 0.993795198369 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_down ttZ 0.968976060927 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf metres_up ttZ 1.02849358207 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf metres_down ttZ 1.0 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf metres_up ttZ 1.00905748496 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf metres_down ttZ 1.00829110195 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf metres_up ttZ 1.07589030477 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf metres_down ttZ 1.0 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_up ttZ 1.00119498323 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_down ttZ 1.00406932423 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 metres_up ttZ 0.987650063744 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 metres_down ttZ 0.974288745844 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf metres_up ttZ 0.991244536733 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf metres_down ttZ 0.974847775087 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf metres_up ttZ 1.01653032006 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf metres_down ttZ 1.00238011501 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf metres_up ttZ 1.0 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf metres_down ttZ 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 metres_up ttZ 1.01964270224 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 metres_down ttZ 1.0155523906 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf metres_up ttZ 1.06213947831 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf metres_down ttZ 1.08238915838 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 metres_up ttZ 0.99569381488 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 metres_down ttZ 0.992627683151 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 metres_up ttZ 1.01719838775 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 metres_down ttZ 1.00545844641 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 metres_up ttZ 0.988294803654 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 metres_down ttZ 0.945915671366 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf metres_up ttZ 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf metres_down ttZ 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 metres_up ttZ 1.07363937499 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 metres_down ttZ 1.03428219052 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf metres_up ttZ 1.01631713793 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf metres_down ttZ 1.00981795879 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf metres_up ttZ 1.08408637482 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf metres_down ttZ 1.02575323263 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf metres_up ttZ 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf metres_down ttZ 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf metres_up ttZ 1.01273197604 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf metres_down ttZ 1.03725479486 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 metres_up ttZ 1.01357886389 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 metres_down ttZ 1.08245722376 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 metres_up ttZ 0.959688768705 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 metres_down ttZ 0.936507330093 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf metres_up ttZ 1.02058516487 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf metres_down ttZ 1.00090360788 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 metres_up ttZ 1.00384502346 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 metres_down ttZ 1.00054523021 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf metres_up ttZ 1.00704803898 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf metres_down ttZ 1.01142138643 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf metres_up ttZ 1.07395307442 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf metres_down ttZ 1.00449885038 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_up ttZ 1.0129905614 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_down ttZ 1.00368073714 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 metres_up ttZ 1.19680618449 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 metres_down ttZ 1.23229009698 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 metres_up ttZ 1.20321308109 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 metres_down ttZ 1.20213184168 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 metres_up ttZ 1.08696183322 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 metres_down ttZ 1.02878802291 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 metres_up ttZ 0.958882941692 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 metres_down ttZ 0.941119529343 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 metres_up ttZ 1.16692202897 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 metres_down ttZ 1.04940742579 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 metres_up ttZ 1.0086076567 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 metres_down ttZ 1.00329786118 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 metres_up ttZ 1.11808076163 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 metres_down ttZ 1.00246594554 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf metres_up ttZ 1.00701002126 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf metres_down ttZ 1.00393887012 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 metres_up ttZ 1.04369421471 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 metres_down ttZ 1.07970802937 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 metres_up ttZ 1.05876326249 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 metres_down ttZ 1.02822794181 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 metres_up ttZ 1.01778586593 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 metres_down ttZ 1.01369564928 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf metres_up ttZ 1.02471343175 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf metres_down ttZ 1.01829468726 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_up ttZ 1.00808995005 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_down ttZ 1.02509454371 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf metres_up ttZ 1.01551996285 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf metres_down ttZ 1.01077624113 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf metres_up ttZ 0.994216574399 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf metres_down ttZ 0.955653891284 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 metres_up ttZ 1.05026714302 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 metres_down ttZ 1.02896754991 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf metres_up ttZ 1.00452169323 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf metres_down ttZ 1.00676825382 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_up ttZ 1.04196247266 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_down ttZ 1.01495906375 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 metres_up ttZ 1.03240712369 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 metres_down ttZ 1.02628170132 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf metres_up ttZ 1.00526567596 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf metres_down ttZ 1.01980418703 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 metres_up ttZ 0.986987408749 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 metres_down ttZ 0.943059544143 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_up ttZ 1.00352944418 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_down ttZ 1.00326322106 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf metres_up ttZ 0.993171043811 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf metres_down ttZ 0.977581344124 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 metres_up ttZ 0.901142603809 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 metres_down ttZ 0.875447901422 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 metres_up ttZ 1.05570872116 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 metres_down ttZ 1.042212061 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_up ttZ 1.01184353937 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_down ttZ 1.00756473332 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf metres_up ttZ 1.17163852328 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf metres_down ttZ 1.14054858523 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf metres_up ttZ 0.974455491052 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf metres_down ttZ 0.968447069467 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 metres_up ttZ 1.26233190036 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 metres_down ttZ 1.68125658353 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 metres_up ttZ 1.0375588934 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 metres_down ttZ 1.00219256792 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 metres_up ttZ 1.00337921809 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 metres_down ttZ 1.01101039543 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf metres_up ttZ 1.0063599388 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf metres_down ttZ 1.00701551431 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 metres_up ttZ 0.979388086178 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 metres_down ttZ 0.972489761284 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_up ttZ 1.03139999539 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_down ttZ 1.01922183742 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 metres_up ttZ 1.00016071813 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 metres_down ttZ 1.00045249874 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_up ttZ 1.00804996168 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_down ttZ 1.00710262338 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 metres_up ttZ 1.23002293652 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 metres_down ttZ 1.07943320713 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 metres_up ttZ 1.01402637512 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 metres_down ttZ 1.00071363821 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 metres_up ttZ 0.998266960531 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 metres_down ttZ 0.993833921357 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_up ttZ 1.00539330434 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_down ttZ 1.00307250098 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_up ttZ 1.00764245819 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_down ttZ 1.17147510333 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 metres_up ttZ 0.981440554972 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 metres_down ttZ 0.969675094699 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 metres_up ttZ 1.19854942129 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 metres_down ttZ 1.19056709946 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_up ttZ 1.05260920982 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_down ttZ 1.02497576695 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 metres_up ttZ 0.995347934254 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 metres_down ttZ 0.977997264962 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 metres_up ttZ 1.0632870703 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 metres_down ttZ 1.13728061769 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 metres_up ttZ 1.15248450105 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 metres_down ttZ 1.04824390293 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 metres_up ttZ 1.02882281807 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 metres_down ttZ 1.09427057667 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 metres_up ttZ 0.932220041974 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 metres_down ttZ 0.472768223034 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 metres_up ttZ 0.995910262082 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 metres_down ttZ 0.960655687834 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf metres_up ttZ 1.02433022532 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf metres_down ttZ 1.05715648589 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 metres_up ttZ 1.09142435766 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 metres_down ttZ 1.04361923582 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 metres_up ttZ 1.12840553161 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 metres_down ttZ 1.03897580568 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 metres_up ttZ 1.23335533461 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 metres_down ttZ 1.1176157971 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 metres_up ttZ 0.990606444458 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 metres_down ttZ 0.984557455404 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 metres_up ttZ 1.07785929078 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 metres_down ttZ 1.14887026005 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_up ttZ 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_down ttZ 1.00621763496 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf metres_up ttZ 1.01353448282 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf metres_down ttZ 1.06303802817 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 metres_up ttZ 1.04862860836 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 metres_down ttZ 1.06160621554 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 metres_up ttZ 0.921457492035 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 metres_down ttZ 0.919208237451 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 metres_up ttZ 1.10592249413 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 metres_down ttZ 1.01683130011 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 metres_up ttZ 0.992298971491 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 metres_down ttZ 0.987705126123 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 metres_up ttZ 0.804108665495 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 metres_down ttZ 0.792363339776 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 metres_up ttZ 1.17518669063 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 metres_down ttZ 1.11027228415 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 metres_up ttZ 1.01050408181 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 metres_down ttZ 1.00132188974 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 metres_up ttZ 0.901191482206 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 metres_down ttZ 0.784974081831 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf metres_up ttZ 1.41185851325 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf metres_down ttZ 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf metres_up ttZ 1.01686156886 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf metres_down ttZ 1.00030156102 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 metres_up ttZ 0.932932717615 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 metres_down ttZ 0.864038974281 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf metres_up ttZ 0.997661024489 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf metres_down ttZ 0.977610624286 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 metres_up ttZ 1.05842284706 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 metres_down ttZ 1.05780067043 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 metres_up ttZ 1.00389025131 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 metres_down ttZ 1.0038806875 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf metres_up ttZ 1.02258980088 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf metres_down ttZ 1.01611222406 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 metres_up ttZ 1.03705956946 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 metres_down ttZ 1.01298807973 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_up ttZ 1.0004953521 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_down ttZ 1.03426173403 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf metres_up ttZ 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf metres_down ttZ 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ivfunc_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ivfunc_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_up ttZ 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_down ttZ 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ivfunc_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_down ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_up ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ivfunc_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_up ttZ 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_down ttZ 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ivfunc_up ttZ 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ivfunc_down ttZ 1.0 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_up ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ivfunc_up ttZ 1.0 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ivfunc_down ttZ 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_up ttZ 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_down ttZ 1.0 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ivfunc_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ivfunc_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ivfunc_up ttZ 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ivfunc_down ttZ 1.0 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_up ttZ 1.00483432915 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_down ttZ 1.00483432915 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ivfunc_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ivfunc_up ttZ 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ivfunc_down ttZ 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ivfunc_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ivfunc_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ivfunc_down ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_up ttZ 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_down ttZ 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ivfunc_up ttZ 1.04889464228 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ivfunc_down ttZ 1.04889454457 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ivfunc_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_up ttZ 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_down ttZ 1.0 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ivfunc_up ttZ 1.00478924955 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ivfunc_down ttZ 1.00478932857 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ivfunc_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_up ttZ 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_down ttZ 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ivfunc_up ttZ 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ivfunc_down ttZ 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ivfunc_up ttZ 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ivfunc_down ttZ 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ivfunc_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ivfunc_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_up ttZ 1.05106677798 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_down ttZ 1.05106688714 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ivfunc_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ivfunc_up ttZ 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ivfunc_down ttZ 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ivfunc_up ttZ 1.03723404761 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ivfunc_down ttZ 1.03723404761 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ivfunc_up ttZ 1.00596565845 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ivfunc_down ttZ 1.0059657532 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ivfunc_down ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ivfunc_up ttZ 1.05713786167 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ivfunc_down ttZ 1.05713786167 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ivfunc_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ivfunc_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ivfunc_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ivfunc_up ttZ 1.00549252343 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ivfunc_down ttZ 1.00549229895 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ivfunc_down ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ivfunc_up ttZ 1.00548480167 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ivfunc_down ttZ 1.00548491282 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ivfunc_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ivfunc_up ttZ 1.04227353045 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ivfunc_down ttZ 1.04227343775 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ivfunc_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ivfunc_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_up ttZ 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_down ttZ 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ivfunc_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_down ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ivfunc_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ivfunc_down ttZ 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_down ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_up ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ivfunc_up ttZ 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ivfunc_down ttZ 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ivfunc_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ivfunc_up ttZ 1.0 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ivfunc_down ttZ 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ivfunc_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ivfunc_up ttZ 1.00438035951 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ivfunc_down ttZ 1.00438046606 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ivfunc_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ivfunc_up ttZ 1.0010122019 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ivfunc_down ttZ 1.00101240182 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ivfunc_up ttZ 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ivfunc_down ttZ 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ivfunc_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ivfunc_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ivfunc_up ttZ 1.00277331873 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ivfunc_down ttZ 1.00277341889 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ivfunc_up ttZ 1.05678569952 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ivfunc_down ttZ 1.05678569952 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ivfunc_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ivfunc_up ttZ 1.00097344487 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ivfunc_down ttZ 1.00097332238 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ivfunc_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ivfunc_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ivfunc_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ivfunc_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ivfunc_up ttZ 1.0005772209 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ivfunc_down ttZ 1.0005772209 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ivfunc_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ivfunc_up ttZ 1.00464699981 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ivfunc_down ttZ 1.00464720704 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ivfunc_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_up ttZ 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_down ttZ 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ivfunc_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_up ttZ 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_down ttZ 1.0 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_up ttZ 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_down ttZ 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ivfunc_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ivfunc_down ttZ 1 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ivfunc_down ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_up ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ivfunc_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ivfunc_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_up ttZ 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_down ttZ 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ivfunc_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ivfunc_down ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_up ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ivfunc_up ttZ 1.04470692315 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ivfunc_down ttZ 1.04470685755 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ivfunc_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_up ttZ 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_down ttZ 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ivfunc_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ivfunc_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ivfunc_down ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_up ttZ 1.05029331512 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_down ttZ 1.05029317726 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_down ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_up ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ivfunc_up ttZ 1.0 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ivfunc_down ttZ 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ivfunc_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ivfunc_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_up ttZ 1.04367275426 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_down ttZ 1.0436725108 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_up ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_up ttZ 1.00248988163 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_down ttZ 1.00248974224 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ivfunc_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ivfunc_up ttZ 1.05148063678 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ivfunc_down ttZ 1.05148070177 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ivfunc_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_up ttZ 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_down ttZ 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_down ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ivfunc_up ttZ 1.0487022878 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ivfunc_down ttZ 1.04870237212 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_up ttZ 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_down ttZ 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ivfunc_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ivfunc_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_up ttZ 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_down ttZ 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ivfunc_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ivfunc_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ivfunc_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ivfunc_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ivfunc_up ttZ 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ivfunc_down ttZ 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ivfunc_up ttZ 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ivfunc_down ttZ 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ivfunc_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ivfunc_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ivfunc_up ttZ 1.00469545576 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ivfunc_down ttZ 1.00469534306 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ivfunc_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ivfunc_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ivfunc_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ivfunc_down ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_up ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ivfunc_up ttZ 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ivfunc_down ttZ 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_e_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_e_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_down ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_up ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_e_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_e_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_e_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_e_down ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_up ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_e_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_e_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_e_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_e_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_e_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_e_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_e_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_e_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_e_down ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_e_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_e_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_e_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_e_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_e_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_e_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_e_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_e_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_e_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_e_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_e_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_e_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_e_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_e_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_e_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_e_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_e_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_e_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_e_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_e_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_e_down ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_e_up ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_e_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_e_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_e_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_e_down ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_e_down ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_e_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_e_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_e_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_e_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_down ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_down ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_up ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_e_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_e_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_e_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_e_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_e_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_e_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_e_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_e_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_e_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_e_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_e_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_e_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_e_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_e_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_e_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_e_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_e_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_e_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_e_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_e_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_e_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_e_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_e_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_e_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_e_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_e_down ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_up ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_e_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_e_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_e_down ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_up ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_e_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_e_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_e_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_e_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_e_down ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_e_up ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_down ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_up ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_e_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_e_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_e_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_e_down ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_up ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_e_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_e_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_e_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_e_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_e_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_down ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_e_up ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_e_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_e_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_e_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_e_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_e_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_e_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_e_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_e_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_e_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_e_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_e_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_e_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_e_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_e_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_e_down ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_up ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_e_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_e_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 err_mu_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 err_mu_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_down ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_up ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 err_mu_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf err_mu_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 err_mu_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 err_mu_down ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_up ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf err_mu_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf err_mu_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 err_mu_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 err_mu_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf err_mu_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf err_mu_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 err_mu_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 err_mu_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf err_mu_down ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 err_mu_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 err_mu_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 err_mu_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 err_mu_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 err_mu_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 err_mu_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf err_mu_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 err_mu_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf err_mu_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf err_mu_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf err_mu_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf err_mu_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 err_mu_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf err_mu_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 err_mu_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf err_mu_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 err_mu_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 err_mu_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 err_mu_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 err_mu_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 err_mu_down ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf err_mu_up ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf err_mu_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf err_mu_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 err_mu_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 err_mu_down ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 err_mu_down ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 err_mu_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 err_mu_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 err_mu_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 err_mu_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_down ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_down ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_up ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 err_mu_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf err_mu_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf err_mu_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 err_mu_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf err_mu_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 err_mu_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 err_mu_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 err_mu_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf err_mu_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf err_mu_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf err_mu_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf err_mu_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf err_mu_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf err_mu_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 err_mu_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf err_mu_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 err_mu_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 err_mu_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 err_mu_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 err_mu_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 err_mu_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 err_mu_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 err_mu_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 err_mu_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf err_mu_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf err_mu_down ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_up ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf err_mu_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 err_mu_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 err_mu_down ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_up ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf err_mu_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf err_mu_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 err_mu_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf err_mu_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf err_mu_down ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 err_mu_up ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_down ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_up ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 err_mu_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 err_mu_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 err_mu_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 err_mu_down ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_up ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 err_mu_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 err_mu_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 err_mu_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 err_mu_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 err_mu_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_down ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 err_mu_up ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 err_mu_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 err_mu_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 err_mu_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 err_mu_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 err_mu_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf err_mu_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 err_mu_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 err_mu_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf err_mu_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf err_mu_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 err_mu_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 err_mu_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 err_mu_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 err_mu_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 err_mu_down ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_up ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf err_mu_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf err_mu_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_tau_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_tau_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_down ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_up ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_tau_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_tau_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_tau_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_tau_down ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_up ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_tau_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_tau_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_tau_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_tau_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_tau_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_tau_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_tau_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_tau_down ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_tau_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_tau_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_tau_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_tau_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_tau_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_tau_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_tau_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_tau_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_tau_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_tau_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_tau_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_tau_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_tau_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_tau_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_tau_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_tau_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_tau_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_tau_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_tau_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_tau_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_tau_down ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_tau_up ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_tau_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_tau_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_tau_down ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_tau_down ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_tau_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_tau_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_tau_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_tau_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_down ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_down ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_up ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_tau_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_tau_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_tau_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_tau_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_tau_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_tau_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_tau_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_tau_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_tau_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_tau_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_tau_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_tau_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_tau_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_tau_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_tau_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_tau_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_tau_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_tau_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_tau_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_tau_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_tau_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_tau_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_tau_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_tau_down ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_up ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_tau_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_tau_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_tau_down ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_up ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_tau_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_tau_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_tau_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_tau_down ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_tau_up ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_down ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_up ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_tau_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_tau_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_tau_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_tau_down ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_up ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_tau_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_tau_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_tau_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_tau_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_tau_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_down ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_tau_up ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_tau_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_tau_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_tau_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_tau_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_tau_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_tau_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_tau_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_tau_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_tau_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_tau_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_tau_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_tau_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_tau_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_tau_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_tau_down ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_up ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_tau_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_tau_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_wtag_up ttZ 1.0785190307 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_wtag_down ttZ 1.07851894557 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_wtag_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_wtag_up ttZ 1.08830612433 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_wtag_down ttZ 1.08830601474 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_down ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_up ttZ 1.00446248187 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_down ttZ 1.00446276814 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_wtag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_wtag_down ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_up ttZ 1.00370236094 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_down ttZ 1.00370236094 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_wtag_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_wtag_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_wtag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_wtag_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_wtag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_wtag_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_wtag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_wtag_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_wtag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_wtag_down ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_wtag_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_wtag_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_wtag_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_wtag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_wtag_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_wtag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_wtag_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_wtag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_wtag_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_wtag_up ttZ 1.07426698423 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_wtag_down ttZ 1.0742670554 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_wtag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_wtag_up ttZ 1.08364380246 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_wtag_down ttZ 1.0836436865 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_wtag_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_wtag_up ttZ 1.08603499108 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_wtag_down ttZ 1.08603486476 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_wtag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_wtag_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_wtag_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_wtag_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_wtag_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_wtag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_wtag_down ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_wtag_up ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_wtag_up ttZ 1.0863235332 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_wtag_down ttZ 1.0863235332 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_wtag_up ttZ 1.06715871776 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_wtag_down ttZ 1.06715871776 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_wtag_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_wtag_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_wtag_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_wtag_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_wtag_down ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_wtag_down ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_wtag_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_wtag_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_wtag_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_wtag_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_wtag_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_wtag_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_wtag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_wtag_up ttZ 1.08633058599 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_wtag_down ttZ 1.08633050385 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_wtag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_down ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_wtag_up ttZ 1.07315833509 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_wtag_down ttZ 1.07315843116 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_wtag_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_wtag_down ttZ 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_up ttZ 1.03300222912 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_down ttZ 1.03300217002 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_up ttZ 1.00292830315 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_down ttZ 1.00292819608 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_wtag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_wtag_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_wtag_up ttZ 1.07949270172 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_wtag_down ttZ 1.07949270172 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_wtag_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_wtag_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_wtag_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_wtag_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_wtag_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_wtag_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_wtag_up ttZ 1.08290942443 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_wtag_down ttZ 1.08290902003 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_wtag_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_wtag_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_wtag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_wtag_up ttZ 1.08844651175 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_wtag_down ttZ 1.08844579845 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_wtag_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_wtag_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_wtag_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_wtag_up ttZ 1.07465674622 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_wtag_down ttZ 1.0746566886 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_wtag_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_wtag_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_wtag_up ttZ 1.08137447444 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_wtag_down ttZ 1.08137447444 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_wtag_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_wtag_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_wtag_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_wtag_up ttZ 1.07012674894 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_wtag_down ttZ 1.07012701114 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_wtag_up ttZ 1.09912489668 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_wtag_down ttZ 1.09912479814 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_wtag_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_wtag_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_wtag_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_wtag_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_wtag_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_wtag_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_wtag_up ttZ 1.08939740761 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_wtag_down ttZ 1.08939730502 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_up ttZ 1.0373707112 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_down ttZ 1.03737092018 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_wtag_up ttZ 1.0821130209 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_wtag_down ttZ 1.08211312543 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_wtag_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_wtag_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_wtag_down ttZ 1 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_wtag_up ttZ 1 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_wtag_down ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_up ttZ 1.00487368417 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_down ttZ 1.00487393978 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_down ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_up ttZ 1.00433582787 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_down ttZ 1.00433582787 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_wtag_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_wtag_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_wtag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_wtag_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_wtag_up ttZ 1.08771530101 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_wtag_down ttZ 1.08771550813 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_wtag_up ttZ 1.08797071799 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_wtag_down ttZ 1.0879708723 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_up ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_up ttZ 1.17445886758 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_down ttZ 1.17445907817 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_down ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_up ttZ 1.00359456856 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_down ttZ 1.00359489041 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_wtag_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_down ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_up ttZ 1.00085357485 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_down ttZ 1.00085338306 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_wtag_up ttZ 1.07731044542 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_wtag_down ttZ 1.07731044542 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_wtag_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_wtag_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_down ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_wtag_up ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_wtag_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_up ttZ 1.1913051151 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_down ttZ 1.19130530184 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_wtag_up ttZ 1.07213669591 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_wtag_down ttZ 1.07213669591 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_wtag_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_wtag_up ttZ 1.0834271934 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_wtag_down ttZ 1.08342725494 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_wtag_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_wtag_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_wtag_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_wtag_up ttZ 1.08707054636 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_wtag_down ttZ 1.08707062763 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_wtag_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_wtag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_wtag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_wtag_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_wtag_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_wtag_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_wtag_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_wtag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_wtag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_wtag_up ttZ 1.08604459783 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_wtag_down ttZ 1.08604485548 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_down ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_up ttZ 1.0043575784 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_down ttZ 1.00435766782 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_wtag_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_wtag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_toptag_up ttZ 1.06955252968 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_toptag_down ttZ 1.06955252968 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_toptag_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_toptag_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_down ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_up ttZ 1.0010535193 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_down ttZ 1.00105359086 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_toptag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_toptag_down ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_up ttZ 1.01214019924 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_down ttZ 1.01214051732 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_toptag_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_toptag_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_up ttZ 1.06178584976 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_down ttZ 1.06178595261 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_up ttZ 1.06813828946 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_down ttZ 1.06813841111 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_toptag_up ttZ 1.09717017903 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_toptag_down ttZ 1.09716998007 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_toptag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_toptag_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_toptag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_toptag_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_toptag_up ttZ 1.07190954755 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_toptag_down ttZ 1.07190954755 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_toptag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_toptag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_toptag_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_toptag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_toptag_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_toptag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_toptag_down ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_toptag_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_toptag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_toptag_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_toptag_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_toptag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_toptag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_toptag_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_toptag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_toptag_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_toptag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_toptag_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_toptag_up ttZ 1.06806645647 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_toptag_down ttZ 1.0680663853 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_toptag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_toptag_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_up ttZ 1.05921479995 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_down ttZ 1.05921456209 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_toptag_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_toptag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_toptag_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_toptag_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_toptag_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_toptag_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_toptag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_toptag_down ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_toptag_up ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_toptag_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_up ttZ 1.07093398963 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_down ttZ 1.07093389813 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_toptag_up ttZ 1.07325614469 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_toptag_down ttZ 1.07325605069 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_toptag_up ttZ 1.0931231925 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_toptag_down ttZ 1.09312273624 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_toptag_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_toptag_up ttZ 1.07036496988 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_toptag_down ttZ 1.07036477123 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_toptag_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_toptag_down ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_toptag_down ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_toptag_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_toptag_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_toptag_up ttZ 1.08309088006 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_toptag_down ttZ 1.08309070803 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_toptag_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_toptag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_toptag_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_toptag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_toptag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_up ttZ 1.06073726571 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_down ttZ 1.06073734786 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_toptag_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_toptag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_up ttZ 1.07728019025 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_down ttZ 1.07728044997 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_down ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_up ttZ 1.06917053308 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_down ttZ 1.06917074033 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_toptag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_toptag_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_toptag_up ttZ 1.07395220934 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_toptag_down ttZ 1.0739520186 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_up ttZ 1.03751591112 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_down ttZ 1.03751585202 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_up ttZ 1.00299457809 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_down ttZ 1.00299447102 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_toptag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_toptag_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_toptag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_toptag_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_toptag_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_toptag_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_toptag_up ttZ 1.07071456255 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_toptag_down ttZ 1.07071462985 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_toptag_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_toptag_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_toptag_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_toptag_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_toptag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_toptag_up ttZ 1.07660352092 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_toptag_down ttZ 1.07660352092 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_toptag_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_toptag_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_toptag_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_toptag_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_toptag_up ttZ 1.06883063934 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_toptag_down ttZ 1.06883086982 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_toptag_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_toptag_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_toptag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_toptag_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_toptag_up ttZ 1.06626013668 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_toptag_down ttZ 1.0662598373 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_toptag_up ttZ 1.07433500871 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_toptag_down ttZ 1.07433510186 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_toptag_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_up ttZ 1.06713996849 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_down ttZ 1.06714015969 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_toptag_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_toptag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_toptag_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_toptag_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_toptag_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_toptag_up ttZ 1.07033844587 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_toptag_down ttZ 1.07033855331 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_toptag_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_up ttZ 1.08721126017 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_down ttZ 1.08721146916 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_toptag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_toptag_up ttZ 1.06064786397 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_toptag_down ttZ 1.06064776067 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_up ttZ 1.06971178768 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_down ttZ 1.06971200617 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_up ttZ 1.06657994223 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_down ttZ 1.0665801836 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_toptag_up ttZ 1.06508857613 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_toptag_down ttZ 1.06508857613 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_toptag_up ttZ 1.07641698291 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_toptag_down ttZ 1.07641692678 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_toptag_up ttZ 1.09670197463 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_toptag_down ttZ 1.09670197463 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_up ttZ 1.02055597439 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_down ttZ 1.0205561448 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_toptag_up ttZ 1.06352336235 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_toptag_down ttZ 1.06352336235 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_toptag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_down ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_up ttZ 1.01007495897 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_down ttZ 1.01007507953 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_toptag_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_toptag_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_toptag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_toptag_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_toptag_up ttZ 1.07504386735 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_toptag_down ttZ 1.07504367926 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_toptag_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_toptag_up ttZ 1.07089350459 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_toptag_down ttZ 1.07089358174 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_up ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_up ttZ 1.07764629571 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_down ttZ 1.07764629571 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_up ttZ 1.00562120436 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_down ttZ 1.00562113999 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_toptag_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_toptag_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_toptag_up ttZ 1.07160967412 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_toptag_down ttZ 1.07160967412 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_toptag_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_up ttZ 1.07167487312 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_down ttZ 1.07167537761 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_down ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_up ttZ 1.00738000374 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_down ttZ 1.00737981194 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_up ttZ 1.07054119503 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_down ttZ 1.07054131086 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_toptag_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_toptag_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_toptag_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_up ttZ 1.06561676785 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_down ttZ 1.06561653264 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_up ttZ 1.06620210652 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_down ttZ 1.06620226413 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_toptag_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_up ttZ 1.05987597703 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_down ttZ 1.05987604177 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_toptag_up ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_toptag_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_up ttZ 1.06635623352 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_down ttZ 1.06635629913 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_toptag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_toptag_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_toptag_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_toptag_up ttZ 1.09680542536 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_toptag_down ttZ 1.09680506396 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_toptag_up ttZ 1.07510216676 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_toptag_down ttZ 1.07510197838 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_toptag_up ttZ 1.07593784759 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_toptag_down ttZ 1.07593806826 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_toptag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_up ttZ 1.06255600419 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_down ttZ 1.062556108 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_toptag_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_toptag_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_toptag_up ttZ 1.06496258312 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_toptag_down ttZ 1.06496268505 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_toptag_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_toptag_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_toptag_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_down ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_up ttZ 1.00453703177 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_down ttZ 1.00453667412 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_toptag_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_toptag_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_restop_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_restop_up ttZ 1.04848450747 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_restop_down ttZ 1.04853786507 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restop_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_restop_up ttZ 1.0474165771 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_restop_down ttZ 1.04745388447 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_restop_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_restop_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restop_up ttZ 1.0614901486 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restop_down ttZ 1.06156607282 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restop_up ttZ 1.08240365856 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restop_down ttZ 1.0824800192 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_restop_up ttZ 1.01462920258 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_restop_down ttZ 1.01466151362 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restop_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restop_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restop_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_restop_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_restop_down ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restop_up ttZ 1.07856080523 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restop_down ttZ 1.0786380345 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_restop_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restop_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_restop_up ttZ 1.10610678009 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_restop_down ttZ 1.10617012178 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restop_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restop_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restop_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_restop_up ttZ 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_restop_up ttZ 1.08074640832 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_restop_down ttZ 1.08078915426 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_restop_up ttZ 1.04929673983 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_restop_down ttZ 1.04935480181 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_restop_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_restop_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restop_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_restop_up ttZ 1.05294034384 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_restop_down ttZ 1.05298046966 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_restop_up ttZ 1.04574465456 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_restop_down ttZ 1.04578564758 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_restop_up ttZ 1.02488763496 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_restop_down ttZ 1.02489735661 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_restop_up ttZ 1.06983657075 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_restop_down ttZ 1.06993888024 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restop_up ttZ 1.05243896976 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restop_down ttZ 1.05250165015 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_restop_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_restop_up ttZ 1.07287008435 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_restop_down ttZ 1.0729206194 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_restop_up ttZ 1.22633191745 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_restop_down ttZ 1.226204867 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_restop_up ttZ 1.11871815426 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_restop_down ttZ 1.11878055166 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restop_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restop_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restop_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restop_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_restop_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_restop_up ttZ 1.09790401784 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_restop_down ttZ 1.09791649747 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restop_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restop_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_restop_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restop_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restop_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_restop_up ttZ 1.04144701368 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_restop_down ttZ 1.04146680733 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restop_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restop_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_restop_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_restop_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_restop_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_restop_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_restop_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_restop_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_restop_up ttZ 1.06605048516 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_restop_down ttZ 1.06611842189 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_restop_up ttZ 1.05420216914 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_restop_down ttZ 1.05427539463 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_restop_up ttZ 1.01336154519 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_restop_down ttZ 1.01339399235 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restop_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restop_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_restop_up ttZ 1.04600481065 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_restop_down ttZ 1.04603714863 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_restop_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_restop_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_restop_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restop_up ttZ 1.02678701593 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restop_down ttZ 1.02682372523 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_restop_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_restop_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_restop_up ttZ 1.09733450027 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_restop_down ttZ 1.0974063135 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_restop_up ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restop_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_restop_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_restop_up ttZ 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_restop_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_restop_up ttZ 1.05080369836 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_restop_down ttZ 1.05086860846 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_restop_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_restop_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_restop_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_restop_down ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restop_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_restop_up ttZ 1.06189308054 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_restop_down ttZ 1.0617449746 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restop_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restop_up ttZ 1.03854505171 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restop_down ttZ 1.03859671776 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_restop_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_restop_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_restop_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_restop_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_restop_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_restop_up ttZ 1.04909572998 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_restop_down ttZ 1.04915250998 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_restop_up ttZ 1.05043037389 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_restop_down ttZ 1.05055025912 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restop_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restop_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restop_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restop_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_restop_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_restop_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_restop_up ttZ 1.0889830692 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_restop_down ttZ 1.08905794142 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_restop_up ttZ 1.07692409476 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_restop_down ttZ 1.0769351213 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restop_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restop_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restop_up ttZ 1.11322889866 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restop_down ttZ 1.11329562705 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restop_up ttZ 1 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restop_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restop_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_restop_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_restop_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_restop_up ttZ 1.08729518296 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_restop_down ttZ 1.08733937047 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restop_up ttZ 1.21591278867 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restop_down ttZ 1.21610563106 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restop_up ttZ 1.08293361371 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restop_down ttZ 1.08297611961 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_restop_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_restop_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_restop_up ttZ 1.07117959334 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_restop_down ttZ 1.07126374095 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_restop_up ttZ 1.08475149234 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_restop_down ttZ 1.0847779322 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_restop_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_restop_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_restop_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_restop_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_restop_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_restop_up ttZ 1.05169232056 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_restop_down ttZ 1.05172324721 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_restop_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_restop_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_restop_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_restop_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_restop_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_restop_up ttZ 1.05029589219 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_restop_down ttZ 1.05032190127 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_restop_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_restop_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_restop_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_restop_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_restop_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_restop_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_restop_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_restop_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_restop_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_restop_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_restop_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_restop_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_restop_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_restop_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_restop_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_restop_up ttZ 1.04558876441 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_restop_down ttZ 1.04563813735 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restop_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restop_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_restop_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_restop_up ttZ 1.04683774169 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_restop_down ttZ 1.04703165183 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_restop_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_restop_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_restop_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_restop_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restop_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_restop_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_restop_down ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restop_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restop_up ttZ 1.13799169871 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restop_down ttZ 1.13799323129 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restop_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restop_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_restop_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_restop_up ttZ 1.04499541903 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_restop_down ttZ 1.04503201428 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_restop_up ttZ 1.05401445542 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_restop_down ttZ 1.05404172747 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restop_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restop_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_restop_up ttZ 1.0482008406 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_restop_down ttZ 1.04818746797 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_restop_up ttZ 1.06692855574 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_restop_down ttZ 1.06695920377 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_restop_up ttZ 1 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_restop_down ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restop_up ttZ 1.0809223796 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restop_down ttZ 1.08095969972 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_restop_up ttZ 1.02353394157 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_restop_down ttZ 1.02359855148 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_restop_up ttZ 1.06163929377 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_restop_down ttZ 1.06169289498 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restop_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restop_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_restop_up ttZ 1.05297183377 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_restop_down ttZ 1.05306105389 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_restop_up ttZ 1.10896182676 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_restop_down ttZ 1.10898726185 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_restop_up ttZ 1.05436905526 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_restop_down ttZ 1.05438654818 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restop_up ttZ 1.0758745766 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restop_down ttZ 1.07590158059 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_restop_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_restop_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_restop_up ttZ 1.04120053645 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_restop_down ttZ 1.04125231868 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restop_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_restop_up ttZ 1.0518625918 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_restop_down ttZ 1.05188788994 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_restop_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_restop_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_restop_down ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restop_up ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restop_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restop_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restop_down ttZ 1 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restop_up ttZ 1.08108274775 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restop_down ttZ 1.08113295662 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_restop_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_restop_up ttZ 1.05441241981 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_restop_down ttZ 1.0544555406 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_restop_up ttZ 1.0494828324 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_restop_down ttZ 1.04954188488 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restop_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restop_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restop_up ttZ 1.00063132231 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restop_down ttZ 1.00056647932 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_restop_up ttZ 1.06925014056 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_restop_down ttZ 1.06928886318 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restop_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restop_down ttZ 1 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restop_up ttZ 1.08120152192 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restop_down ttZ 1.08126653975 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restop_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restop_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restop_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_restop_up ttZ 1.04805404656 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_restop_down ttZ 1.0480636235 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_restop_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_restop_down ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_restop_up ttZ 1 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restop_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restop_up ttZ 1 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_restop_up ttZ 1.03586595421 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_restop_down ttZ 1.03593019905 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restop_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restop_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restop_down ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_restop_up ttZ 1 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_restop_down ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restop_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restop_down ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restop_up ttZ 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restop_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_restop_up ttZ 1 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_restop_up ttZ 1.02777990922 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_restop_down ttZ 1.02783589974 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restop_up ttZ 1 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_restop_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_restop_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_restop_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_restop_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_restop_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_restop_up ttZ 1.05049604189 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_restop_down ttZ 1.05057715637 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_restop_up ttZ 1.0199414498 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_restop_down ttZ 1.02002133211 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_restop_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restop_up ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restop_down ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_restop_up ttZ 1 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_restop_down ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_restop_up ttZ 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_restop_down ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_restop_up ttZ 1 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_restop_down ttZ 1 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_restop_up ttZ 1.05158294155 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_restop_down ttZ 1.0516499575 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_restop_up ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_restop_up ttZ 1.04779766292 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_restop_down ttZ 1.04780580606 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restop_up ttZ 1.07461397408 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restop_down ttZ 1.07465814446 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_restop_up ttZ 1 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_restop_down ttZ 1 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ttZ_SF_up ttZ 1.10644633908 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ttZ_SF_down ttZ 1.10644633908 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ttZ_SF_up ttZ 1.10644558923 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ttZ_SF_down ttZ 1.10644700034 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ttZ_SF_up ttZ 1.1064461674 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ttZ_SF_down ttZ 1.10644644258 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ttZ_SF_up ttZ 1.1064462499 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ttZ_SF_down ttZ 1.1064461817 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ttZ_SF_up ttZ 1.10644629864 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ttZ_SF_down ttZ 1.10644629864 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ttZ_SF_up ttZ 1.10644621723 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ttZ_SF_down ttZ 1.10644631027 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ttZ_SF_up ttZ 1.10644616975 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ttZ_SF_down ttZ 1.10644631288 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ttZ_SF_up ttZ 1.10644655356 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ttZ_SF_down ttZ 1.10644623601 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ttZ_SF_up ttZ 1.10644619799 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ttZ_SF_down ttZ 1.10644643275 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ttZ_SF_up ttZ 1.10644627136 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ttZ_SF_down ttZ 1.10644617587 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ttZ_SF_up ttZ 1.1064462484 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ttZ_SF_down ttZ 1.10644636172 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ttZ_SF_up ttZ 1.10644629649 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ttZ_SF_down ttZ 1.10644629649 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ttZ_SF_up ttZ 1.1064461879 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ttZ_SF_down ttZ 1.10644639059 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ttZ_SF_up ttZ 1.10644628718 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ttZ_SF_down ttZ 1.10644628718 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ttZ_SF_up ttZ 1.1064462612 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ttZ_SF_down ttZ 1.1064462612 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ttZ_SF_up ttZ 1.1064462375 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ttZ_SF_down ttZ 1.1064462375 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ttZ_SF_up ttZ 1.10644608119 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ttZ_SF_down ttZ 1.10644632103 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ttZ_SF_up ttZ 1.10644633006 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ttZ_SF_down ttZ 1.10644613109 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ttZ_SF_up ttZ 1.10644655032 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ttZ_SF_down ttZ 1.10644645575 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ttZ_SF_up ttZ 1.10644630027 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ttZ_SF_down ttZ 1.10644623797 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ttZ_SF_up ttZ 1.10644622958 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ttZ_SF_down ttZ 1.10644622958 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ttZ_SF_up ttZ 1.10644635766 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ttZ_SF_down ttZ 1.10644614259 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ttZ_SF_up ttZ 1.10644590825 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ttZ_SF_down ttZ 1.10644639253 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ttZ_SF_up ttZ 1.10644616828 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ttZ_SF_down ttZ 1.10644627 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ttZ_SF_up ttZ 1.10644627282 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ttZ_SF_down ttZ 1.10644615845 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ttZ_SF_up ttZ 1.1064462703 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ttZ_SF_down ttZ 1.1064462048 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ttZ_SF_up ttZ 1.10644557766 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ttZ_SF_down ttZ 1.10644660614 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ttZ_SF_up ttZ 1.10644629486 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ttZ_SF_down ttZ 1.10644637947 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ttZ_SF_up ttZ 1.10644595595 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ttZ_SF_down ttZ 1.10644643987 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ttZ_SF_up ttZ 1.10644640603 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ttZ_SF_down ttZ 1.10644617002 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ttZ_SF_up ttZ 1.10644611977 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ttZ_SF_down ttZ 1.10644635435 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ttZ_SF_up ttZ 1.10644600627 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ttZ_SF_down ttZ 1.10644626182 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ttZ_SF_up ttZ 1.10644594758 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ttZ_SF_down ttZ 1.10644628641 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ttZ_SF_up ttZ 1.10644636733 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ttZ_SF_down ttZ 1.10644636733 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ttZ_SF_up ttZ 1.10644603454 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ttZ_SF_down ttZ 1.10644651453 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ttZ_SF_up ttZ 1.1064462438 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ttZ_SF_down ttZ 1.10644616759 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ttZ_SF_up ttZ 1.10644623097 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ttZ_SF_down ttZ 1.106446389 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ttZ_SF_up ttZ 1.10644648722 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ttZ_SF_down ttZ 1.10644632024 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ttZ_SF_up ttZ 1.10644613575 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ttZ_SF_down ttZ 1.10644652495 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ttZ_SF_up ttZ 1.10644624138 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ttZ_SF_down ttZ 1.10644634846 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ttZ_SF_up ttZ 1.10644606781 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ttZ_SF_down ttZ 1.10644644648 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ttZ_SF_up ttZ 1.10644612503 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ttZ_SF_down ttZ 1.10644622063 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ttZ_SF_up ttZ 1.10644633125 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ttZ_SF_down ttZ 1.10644626008 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ttZ_SF_up ttZ 1.10644650055 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ttZ_SF_down ttZ 1.10644635585 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ttZ_SF_up ttZ 1.1064460927 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ttZ_SF_down ttZ 1.10644620866 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ttZ_SF_up ttZ 1.10644638713 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ttZ_SF_down ttZ 1.10644624787 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ttZ_SF_up ttZ 1.10644616487 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ttZ_SF_down ttZ 1.10644632861 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ttZ_SF_up ttZ 1.1064462795 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ttZ_SF_down ttZ 1.10644622003 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ttZ_SF_up ttZ 1.10644631622 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ttZ_SF_down ttZ 1.10644631622 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ttZ_SF_up ttZ 1.10644619045 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ttZ_SF_down ttZ 1.10644626209 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ttZ_SF_up ttZ 1.10644617837 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ttZ_SF_down ttZ 1.10644633687 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ttZ_SF_up ttZ 1.10644596783 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ttZ_SF_down ttZ 1.10644637301 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ttZ_SF_up ttZ 1.10644614984 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ttZ_SF_down ttZ 1.10644633935 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ttZ_SF_up ttZ 1.1064463319 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ttZ_SF_down ttZ 1.1064463319 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ttZ_SF_up ttZ 1.10644625647 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ttZ_SF_down ttZ 1.10644631901 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ttZ_SF_up ttZ 1.10644636768 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ttZ_SF_down ttZ 1.10644627618 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ttZ_SF_up ttZ 1.10644610835 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ttZ_SF_down ttZ 1.10644639034 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ttZ_SF_up ttZ 1.10644641817 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ttZ_SF_down ttZ 1.10644619004 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ttZ_SF_up ttZ 1.10644638212 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ttZ_SF_down ttZ 1.1064462467 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ttZ_SF_up ttZ 1.10644625718 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ttZ_SF_down ttZ 1.10644653106 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ttZ_SF_up ttZ 1.10644637096 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ttZ_SF_down ttZ 1.10644637096 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ttZ_SF_up ttZ 1.10644626237 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ttZ_SF_down ttZ 1.10644631849 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ttZ_SF_up ttZ 1.10644596328 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ttZ_SF_down ttZ 1.10644643159 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ttZ_SF_up ttZ 1.10644593091 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ttZ_SF_down ttZ 1.10644631095 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ttZ_SF_up ttZ 1.10644622357 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ttZ_SF_down ttZ 1.10644631423 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ttZ_SF_up ttZ 1.10644601313 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ttZ_SF_down ttZ 1.10644633553 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ttZ_SF_up ttZ 1.10644627868 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ttZ_SF_down ttZ 1.10644638983 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ttZ_SF_up ttZ 1.10644621769 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ttZ_SF_down ttZ 1.10644621769 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ttZ_SF_up ttZ 1.10644630226 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ttZ_SF_down ttZ 1.10644630226 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ttZ_SF_up ttZ 1.10644616452 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ttZ_SF_down ttZ 1.10644630301 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ttZ_SF_up ttZ 1.10644608785 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ttZ_SF_down ttZ 1.10644627517 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ttZ_SF_up ttZ 1.10644624215 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ttZ_SF_down ttZ 1.10644633555 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ttZ_SF_up ttZ 1.10644631059 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ttZ_SF_down ttZ 1.10644631059 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ttZ_SF_up ttZ 1.10644628581 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ttZ_SF_down ttZ 1.10644628581 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ttZ_SF_up ttZ 1.10644633745 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ttZ_SF_down ttZ 1.10644633745 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ttZ_SF_up ttZ 1.10644620204 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ttZ_SF_down ttZ 1.10644620204 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ttZ_SF_up ttZ 1.10644601604 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ttZ_SF_down ttZ 1.10644633109 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ttZ_SF_up ttZ 1.10644617696 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ttZ_SF_down ttZ 1.10644643668 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ttZ_SF_up ttZ 1.10644628369 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ttZ_SF_down ttZ 1.10644628369 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ttZ_SF_up ttZ 1.10644623552 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ttZ_SF_down ttZ 1.10644623552 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ttZ_SF_up ttZ 1.10644597474 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ttZ_SF_down ttZ 1.10644645833 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ttZ_SF_up ttZ 1.10644629319 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ttZ_SF_down ttZ 1.10644629319 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ttZ_SF_up ttZ 1.10644649294 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ttZ_SF_down ttZ 1.10644617504 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ttZ_SF_up ttZ 1.1064462783 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ttZ_SF_down ttZ 1.1064462192 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ttZ_SF_up ttZ 1.10644654963 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ttZ_SF_down ttZ 1.10644596076 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ttZ_SF_up ttZ 1.10644625962 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ttZ_SF_down ttZ 1.10644631938 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ttZ_SF_up ttZ 1.10644608606 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ttZ_SF_down ttZ 1.10644650785 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ttZ_SF_up ttZ 1.10644648658 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ttZ_SF_down ttZ 1.10644635471 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ttZ_SF_up ttZ 1.10644632342 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ttZ_SF_down ttZ 1.10644632342 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ttZ_SF_up ttZ 1.10644622319 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ttZ_SF_down ttZ 1.10644635779 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ttZ_SF_up ttZ 1.10644608174 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ttZ_SF_down ttZ 1.10644640138 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ttZ_SF_up ttZ 1.10644637986 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ttZ_SF_down ttZ 1.10644620414 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ttZ_SF_up ttZ 1.10644632705 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ttZ_SF_down ttZ 1.10644612485 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ttZ_SF_up ttZ 1.10644613474 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ttZ_SF_down ttZ 1.10644643462 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ttZ_SF_up ttZ 1.10644603726 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ttZ_SF_down ttZ 1.1064464729 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ttZ_SF_up ttZ 1.10644616154 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ttZ_SF_down ttZ 1.10644632826 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ttZ_SF_up ttZ 1.10644642554 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ttZ_SF_down ttZ 1.10644611984 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ttZ_SF_up ttZ 1.10644620073 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ttZ_SF_down ttZ 1.10644630089 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ttZ_SF_up ttZ 1.10644616742 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ttZ_SF_down ttZ 1.1064462705 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ttZ_SF_up ttZ 1.1064461232 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ttZ_SF_down ttZ 1.10644635368 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ttZ_SF_up ttZ 1.10644632539 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ttZ_SF_down ttZ 1.10644632539 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ttZ_SF_up ttZ 1.10644635598 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ttZ_SF_down ttZ 1.10644635598 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ttZ_SF_up ttZ 1.10644617527 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ttZ_SF_down ttZ 1.10644625011 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ttZ_SF_up ttZ 1.10644630162 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ttZ_SF_down ttZ 1.10644630162 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ttZ_SF_up ttZ 1.10644628582 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ttZ_SF_down ttZ 1.10644628582 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ttZ_SF_up ttZ 1.10644638123 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ttZ_SF_down ttZ 1.10644618414 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ttZ_SF_up ttZ 1.10644625647 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ttZ_SF_down ttZ 1.10644644767 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ttZ_SF_up ttZ 1.10644628581 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ttZ_SF_down ttZ 1.10644628581 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ttZ_SF_up ttZ 1.10644618227 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ttZ_SF_down ttZ 1.10644634781 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ttZ_SF_up ttZ 1.10644611654 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ttZ_SF_down ttZ 1.10644642739 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ttZ_SF_up ttZ 1.10644628614 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ttZ_SF_down ttZ 1.10644633986 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ttZ_SF_up ttZ 1.10644598738 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ttZ_SF_down ttZ 1.10644643789 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ttZ_SF_up ttZ 1.10644601728 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ttZ_SF_down ttZ 1.10644632504 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ttZ_SF_up ttZ 1.10644609741 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ttZ_SF_down ttZ 1.10644643992 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ttZ_SF_up ttZ 1.10644604573 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ttZ_SF_down ttZ 1.1064464637 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ttZ_SF_up ttZ 1.10644640477 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ttZ_SF_down ttZ 1.10644613973 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ttZ_SF_up ttZ 1.1064461306 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ttZ_SF_down ttZ 1.10644633967 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ttZ_SF_up ttZ 1.10644614664 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ttZ_SF_down ttZ 1.1064463928 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ttZ_SF_up ttZ 1.10644620248 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ttZ_SF_down ttZ 1.10644630578 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ttZ_SF_up ttZ 1.10644610165 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ttZ_SF_down ttZ 1.10644648401 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ttZ_SF_up ttZ 1.10644625743 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ttZ_SF_down ttZ 1.10644633789 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ttZ_SF_up ttZ 1.10644623387 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ttZ_SF_down ttZ 1.10644613903 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ttZ_SF_up ttZ 1.10644621193 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ttZ_SF_down ttZ 1.10644632419 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ttZ_SF_up ttZ 1.10644617371 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ttZ_SF_down ttZ 1.1064463066 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ttZ_SF_up ttZ 1.10644636093 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ttZ_SF_down ttZ 1.10644653134 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ttZ_SF_up ttZ 1.10644614317 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ttZ_SF_down ttZ 1.10644631827 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ttZ_SF_up ttZ 1.10644628374 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ttZ_SF_down ttZ 1.10644622522 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ttZ_SF_up ttZ 1.10644622365 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ttZ_SF_down ttZ 1.10644630482 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ttZ_SF_up ttZ 1.10644620504 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ttZ_SF_down ttZ 1.10644641067 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ttZ_SF_up ttZ 1.10644625229 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ttZ_SF_down ttZ 1.10644639844 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ttZ_SF_up ttZ 1.10644612631 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ttZ_SF_down ttZ 1.10644638066 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ttZ_SF_up ttZ 1.10644644121 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ttZ_SF_down ttZ 1.10644614966 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ttZ_SF_up ttZ 1.10644622572 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ttZ_SF_down ttZ 1.10644634627 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ttZ_SF_up ttZ 1.10644629528 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ttZ_SF_down ttZ 1.10644636088 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ttZ_SF_up ttZ 1.10644622187 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ttZ_SF_down ttZ 1.10644638219 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ttZ_SF_up ttZ 1.106445954 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ttZ_SF_down ttZ 1.1064464597 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ttZ_SF_up ttZ 1.1064462851 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ttZ_SF_down ttZ 1.10644619105 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ttZ_SF_up ttZ 1.10644604312 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ttZ_SF_down ttZ 1.10644656094 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ttZ_SF_up ttZ 1.10644611184 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ttZ_SF_down ttZ 1.10644626615 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ttZ_SF_up ttZ 1.10644617743 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ttZ_SF_down ttZ 1.10644631529 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ttZ_SF_up ttZ 1.10644616442 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ttZ_SF_down ttZ 1.10644637501 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ttZ_SF_up ttZ 1.10644627438 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ttZ_SF_down ttZ 1.10644627438 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ttZ_SF_up ttZ 1.10644633557 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ttZ_SF_down ttZ 1.10644594935 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ttZ_SF_up ttZ 1.10644623221 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ttZ_SF_down ttZ 1.10644633613 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ttZ_SF_up ttZ 1.10644633163 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ttZ_SF_down ttZ 1.10644633163 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ttZ_SF_up ttZ 1.10644564499 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ttZ_SF_down ttZ 1.1064464144 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ttZ_SF_up ttZ 1.10644605939 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ttZ_SF_down ttZ 1.1064463747 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ttZ_SF_up ttZ 1.10644623855 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ttZ_SF_down ttZ 1.10644633052 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ttZ_SF_up ttZ 1.10644647586 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ttZ_SF_down ttZ 1.10644623903 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ttZ_SF_up ttZ 1.10644631651 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ttZ_SF_down ttZ 1.10644619477 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ttZ_SF_up ttZ 1.10644637448 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ttZ_SF_down ttZ 1.10644618269 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ttZ_SF_up ttZ 1.10644638101 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ttZ_SF_down ttZ 1.10644638101 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ttZ_SF_up ttZ 1.10644641255 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ttZ_SF_down ttZ 1.10644627316 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ttZ_SF_up ttZ 1.10644607694 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ttZ_SF_down ttZ 1.10644633578 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ttZ_SF_up ttZ 1.10644617964 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ttZ_SF_down ttZ 1.10644630521 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ttZ_SF_up ttZ 1.10644608826 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ttZ_SF_down ttZ 1.10644628325 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ttZ_SF_up ttZ 1.10644640421 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ttZ_SF_down ttZ 1.10644632581 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ttZ_SF_up ttZ 1.10644619367 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ttZ_SF_down ttZ 1.10644635128 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ttZ_SF_up ttZ 1.10644647461 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ttZ_SF_down ttZ 1.10644620692 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ttZ_SF_up ttZ 1.10644597291 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ttZ_SF_down ttZ 1.1064466056 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ttZ_SF_up ttZ 1.10644629649 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ttZ_SF_down ttZ 1.10644629649 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ttZ_SF_up ttZ 1.10644618689 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ttZ_SF_down ttZ 1.10644643984 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ttZ_SF_up ttZ 1.1064463357 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ttZ_SF_down ttZ 1.10644614657 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ttZ_SF_up ttZ 1.10644620938 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ttZ_SF_down ttZ 1.10644639612 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ttZ_SF_up ttZ 1.10644633218 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ttZ_SF_down ttZ 1.10644639779 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ttZ_SF_up ttZ 1.10644629275 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ttZ_SF_down ttZ 1.10644629275 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ttZ_SF_up ttZ 1.10644624236 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ttZ_SF_down ttZ 1.10644629903 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ttZ_SF_up ttZ 1.10644598389 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ttZ_SF_down ttZ 1.10644655852 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ttZ_SF_up ttZ 1.10644633261 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ttZ_SF_down ttZ 1.10644633261 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ttZ_SF_up ttZ 1.10644620805 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ttZ_SF_down ttZ 1.10644626829 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ttZ_SF_up ttZ 1.10644638762 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ttZ_SF_down ttZ 1.10644632483 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ttZ_SF_up ttZ 1.10644609813 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ttZ_SF_down ttZ 1.10644650451 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ttZ_SF_up ttZ 1.10644605026 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ttZ_SF_down ttZ 1.10644643643 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ttZ_SF_up ttZ 1.10644631488 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ttZ_SF_down ttZ 1.10644631488 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ttZ_SF_up ttZ 1.10644615999 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ttZ_SF_down ttZ 1.10644636761 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ttZ_SF_up ttZ 1.1064462495 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ttZ_SF_down ttZ 1.10644635282 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ttZ_SF_up ttZ 1.10644611702 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ttZ_SF_down ttZ 1.10644632089 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ttZ_SF_up ttZ 1.10644629526 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ttZ_SF_down ttZ 1.10644629526 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ttZ_SF_up ttZ 1.10644592201 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ttZ_SF_down ttZ 1.10644640713 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ttZ_SF_up ttZ 1.10644617787 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ttZ_SF_down ttZ 1.10644634964 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ttZ_SF_up ttZ 1.10644612513 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ttZ_SF_down ttZ 1.10644630216 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ttZ_SF_up ttZ 1.1064462475 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ttZ_SF_down ttZ 1.10644633692 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ttZ_SF_up ttZ 1.1064465884 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ttZ_SF_down ttZ 1.10644603107 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 b_Up ttZ 1.03819244058 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 b_Down ttZ 0.961768677089 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 b_Up ttZ 1.01417427284 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 b_Down ttZ 0.985400243716 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_Up ttZ 1.00152045245 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_Down ttZ 0.997156287068 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf b_Up ttZ 1.01718647384 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf b_Down ttZ 0.982318495928 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 b_Up ttZ 1.03325137681 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 b_Down ttZ 0.967087031283 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_Up ttZ 1.0831097337 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_Down ttZ 0.919546061902 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Up ttZ 1.01432892154 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Down ttZ 0.984939857467 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 b_Up ttZ 1.01796251303 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 b_Down ttZ 0.981917340714 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_Up ttZ 1.05596677588 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_Down ttZ 0.947433951187 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_Up ttZ 1.01869233292 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_Down ttZ 0.980027128818 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 b_Up ttZ 0.997426286064 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 b_Down ttZ 1.00531195023 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Up ttZ 1.02007676767 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Down ttZ 0.978617250067 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf b_Up ttZ 1.05829156697 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf b_Down ttZ 0.942416568826 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 b_Up ttZ 1.02404921808 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 b_Down ttZ 0.974551633186 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf b_Up ttZ 1.02823045467 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf b_Down ttZ 0.970129608792 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_Up ttZ 1.02917524524 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_Down ttZ 0.97074961414 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_Up ttZ 1.01137337134 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_Down ttZ 0.987311003857 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 b_Up ttZ 1.04386507753 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 b_Down ttZ 0.955687396008 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 b_Up ttZ 1.0211813256 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 b_Down ttZ 0.978603584157 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 b_Up ttZ 1.01632878037 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 b_Down ttZ 0.983093124019 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf b_Up ttZ 1.00841100992 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf b_Down ttZ 0.990522771598 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_Up ttZ 1.05484736476 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_Down ttZ 0.945429009191 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf b_Up ttZ 1.0311448702 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf b_Down ttZ 0.968701944045 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 b_Up ttZ 1.02686943291 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 b_Down ttZ 0.973384172969 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 b_Up ttZ 1.01804664267 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 b_Down ttZ 0.9810659965 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf b_Up ttZ 1.03674405255 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf b_Down ttZ 0.962298654109 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_Up ttZ 1.02346700575 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_Down ttZ 0.976254407518 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 b_Up ttZ 1.02053864712 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 b_Down ttZ 0.976301910409 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf b_Up ttZ 1.00491503968 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf b_Down ttZ 0.992623468734 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf b_Up ttZ 1.31274344874 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf b_Down ttZ 0.717670281062 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf b_Up ttZ 1.08843242018 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf b_Down ttZ 0.914088329877 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_Up ttZ 1.05065989607 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_Down ttZ 0.948743312671 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_Up ttZ 1.00995720497 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_Down ttZ 0.987214394331 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 b_Up ttZ 1.04526441314 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 b_Down ttZ 0.956803279179 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 b_Up ttZ 1.03310058152 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 b_Down ttZ 0.965152349862 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_Up ttZ 1.03072002073 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_Down ttZ 0.969194895375 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf b_Up ttZ 1.04396566162 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf b_Down ttZ 0.953245073724 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_Up ttZ 1.01421721796 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_Down ttZ 0.985272580985 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 b_Up ttZ 1.07860811854 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 b_Down ttZ 0.92381786851 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_Up ttZ 1.05762701861 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_Down ttZ 0.944034567344 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf b_Up ttZ 1.014503137 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf b_Down ttZ 0.982996135037 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 b_Up ttZ 1.01128020613 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 b_Down ttZ 0.988713663295 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf b_Up ttZ 1.1138579993 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf b_Down ttZ 0.893432570961 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 b_Up ttZ 1.09203764683 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 b_Down ttZ 0.911653006653 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 b_Up ttZ 1.02685965671 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 b_Down ttZ 0.972689050536 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf b_Up ttZ 1.0380342149 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf b_Down ttZ 0.962711978628 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_Up ttZ 1.04877645306 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_Down ttZ 0.95337194607 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 b_Up ttZ 1.04328019725 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 b_Down ttZ 0.955237187137 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf b_Up ttZ 1.0170135249 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf b_Down ttZ 0.981618514827 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 b_Up ttZ 1.02365281356 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 b_Down ttZ 0.97581996411 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 b_Up ttZ 1.04204958183 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 b_Down ttZ 0.959955478635 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_Up ttZ 1.00199369792 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_Down ttZ 0.998865086366 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 b_Up ttZ 1.04670189004 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 b_Down ttZ 0.952782703606 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 b_Up ttZ 1.08616518262 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 b_Down ttZ 0.915264281487 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf b_Up ttZ 1.03424403289 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf b_Down ttZ 0.965189145712 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 b_Up ttZ 1.01203758532 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 b_Down ttZ 0.987190546019 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 b_Up ttZ 1.0150010808 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 b_Down ttZ 0.984192065881 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf b_Up ttZ 1.05082214802 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf b_Down ttZ 0.949057491792 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 b_Up ttZ 1.01161421865 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 b_Down ttZ 0.986631114831 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 b_Up ttZ 1.02851643496 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 b_Down ttZ 0.971223031705 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf b_Up ttZ 1.12045433799 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf b_Down ttZ 0.88629094832 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 b_Up ttZ 1.02079876711 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 b_Down ttZ 0.952247991588 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_Up ttZ 1.05947214161 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_Down ttZ 0.941698814388 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 b_Up ttZ 1.02007066778 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 b_Down ttZ 0.987928095909 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_Up ttZ 1.04424199768 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_Down ttZ 0.954912175144 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_Up ttZ 1.03126861022 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_Down ttZ 0.967417340834 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 b_Up ttZ 1.0389255839 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 b_Down ttZ 0.960051253839 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 b_Up ttZ 1.0994143501 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 b_Down ttZ 0.904544182321 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 b_Up ttZ 1.0424623331 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 b_Down ttZ 0.95895412423 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 b_Up ttZ 1.01476200002 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 b_Down ttZ 0.984756045744 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 b_Up ttZ 1.11538287366 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 b_Down ttZ 0.897008129758 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_Up ttZ 1.01833194179 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_Down ttZ 0.981265147923 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_Up ttZ 1.04722272051 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_Down ttZ 0.953015842923 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_Up ttZ 1.06673908764 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_Down ttZ 0.936649451409 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf b_Up ttZ 1.04967055899 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf b_Down ttZ 0.948229080215 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf b_Up ttZ 1.08712746073 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf b_Down ttZ 0.915544366631 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 b_Up ttZ 1.00315636569 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 b_Down ttZ 0.993351198478 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 b_Up ttZ 1.03152545923 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 b_Down ttZ 0.968039850049 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_Up ttZ 1.08465109777 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_Down ttZ 0.917800127149 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_Up ttZ 1.06405276004 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_Down ttZ 0.937862677499 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_Up ttZ 1.00961124708 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_Down ttZ 0.989067971878 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf b_Up ttZ 1.12450405725 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf b_Down ttZ 0.882209591478 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf b_Up ttZ 1.09096500205 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf b_Down ttZ 0.913287674475 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf b_Up ttZ 1.06705642149 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf b_Down ttZ 0.936099781748 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Up ttZ 1.03627159163 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Down ttZ 0.963875797827 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 b_Up ttZ 1.00023302219 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 b_Down ttZ 0.996172352881 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf b_Up ttZ 1.07731144282 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf b_Down ttZ 0.924696942078 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf b_Up ttZ 1.02288394685 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf b_Down ttZ 0.976991895329 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf b_Up ttZ 1.022963599 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf b_Down ttZ 0.9740781138 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 b_Up ttZ 1.1180993748 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 b_Down ttZ 0.890866103756 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf b_Up ttZ 1.0751695932 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf b_Down ttZ 0.925928691312 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 b_Up ttZ 1.02882268073 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 b_Down ttZ 0.970266043997 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 b_Up ttZ 1.03191997409 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 b_Down ttZ 0.967546161241 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 b_Up ttZ 1.04813740546 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 b_Down ttZ 0.950213050423 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf b_Up ttZ 1.07117923788 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf b_Down ttZ 0.927453659905 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 b_Up ttZ 1.0322874853 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 b_Down ttZ 0.967610697731 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf b_Up ttZ 1.00633156052 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf b_Down ttZ 0.992460841564 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf b_Up ttZ 1.08842800803 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf b_Down ttZ 0.915456394398 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf b_Up ttZ 1.02303830733 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf b_Down ttZ 0.978775452122 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf b_Up ttZ 1.03625147537 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf b_Down ttZ 0.963749587516 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 b_Up ttZ 1.03618721776 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 b_Down ttZ 0.962748245284 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 b_Up ttZ 1.09454534454 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 b_Down ttZ 0.909501093949 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf b_Up ttZ 1.12984707041 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf b_Down ttZ 0.881732044632 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 b_Up ttZ 1.10047263411 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 b_Down ttZ 0.903871340251 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf b_Up ttZ 0.998696813351 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf b_Down ttZ 1.00164211508 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf b_Up ttZ 1.03163514704 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf b_Down ttZ 0.967576446228 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_Up ttZ 1.01509036126 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_Down ttZ 0.984048057375 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 b_Up ttZ 1.02785422837 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 b_Down ttZ 0.970433394601 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 b_Up ttZ 1.10339313904 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 b_Down ttZ 0.895583892352 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 b_Up ttZ 1.03591829569 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 b_Down ttZ 0.964052098026 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 b_Up ttZ 1.10801998015 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 b_Down ttZ 0.897783015596 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_Up ttZ 1.01484312391 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_Down ttZ 0.985035507361 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 b_Up ttZ 1.01159403617 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 b_Down ttZ 0.987755193299 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_Up ttZ 1.05698334138 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_Down ttZ 0.946538307024 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf b_Up ttZ 1.02297119076 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf b_Down ttZ 0.978410443683 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_Up ttZ 1.06831809456 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_Down ttZ 0.935789701996 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 b_Up ttZ 1.07719232835 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 b_Down ttZ 0.925966060712 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 b_Up ttZ 1.0338443547 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 b_Down ttZ 0.965742687835 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf b_Up ttZ 1.04161922967 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf b_Down ttZ 0.957508684008 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_Up ttZ 1.04198049641 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_Down ttZ 0.957388748235 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf b_Up ttZ 1.00775573509 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf b_Down ttZ 0.991219515219 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf b_Up ttZ 1.02678930079 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf b_Down ttZ 0.972733810301 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 b_Up ttZ 1.09903111024 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 b_Down ttZ 0.904300056472 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf b_Up ttZ 1.13849098325 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf b_Down ttZ 0.87146376668 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Up ttZ 1.0380902939 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Down ttZ 0.961347509356 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 b_Up ttZ 1.0206110275 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 b_Down ttZ 0.977956751352 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf b_Up ttZ 1.02469160732 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf b_Down ttZ 0.974914312024 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_Up ttZ 1.04893555119 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_Down ttZ 0.952909230574 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_Up ttZ 1.01259407438 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_Down ttZ 0.986736067853 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf b_Up ttZ 1.0389623123 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf b_Down ttZ 0.960562020289 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 b_Up ttZ 1.05236466559 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 b_Down ttZ 0.942544464157 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 b_Up ttZ 1.01970545088 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 b_Down ttZ 0.979980950437 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Up ttZ 1.04373552318 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Down ttZ 0.956500127034 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf b_Up ttZ 1.04216815971 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf b_Down ttZ 0.958727591657 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf b_Up ttZ 1.07369880312 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf b_Down ttZ 0.929022620938 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_Up ttZ 1.0565457706 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_Down ttZ 0.940136872478 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 b_Up ttZ 1.02758855402 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 b_Down ttZ 0.972337396629 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 b_Up ttZ 1.00993251896 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 b_Down ttZ 0.989331179496 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf b_Up ttZ 1.00232808355 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf b_Down ttZ 0.996851110664 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_Up ttZ 1.04121436904 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_Down ttZ 0.956657663838 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_Up ttZ 1.00488050052 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_Down ttZ 0.99272028507 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 b_Up ttZ 1.01234351443 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 b_Down ttZ 0.986925395583 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Up ttZ 1.03671198504 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Down ttZ 0.963252353966 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 b_Up ttZ 1.0755971444 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 b_Down ttZ 0.920011111121 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 b_Up ttZ 1.01918067315 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 b_Down ttZ 0.980214475231 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 b_Up ttZ 1.02545820238 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 b_Down ttZ 0.974268917378 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_Up ttZ 1.01622540234 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_Down ttZ 0.982845914892 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_Up ttZ 1.14463577312 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_Down ttZ 0.858178099482 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 b_Up ttZ 1.01703842839 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 b_Down ttZ 0.982511217171 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_Up ttZ 1.0168258365 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_Down ttZ 0.981942708863 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Up ttZ 1.02010185715 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Down ttZ 0.979331409386 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 b_Up ttZ 1.03981427315 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 b_Down ttZ 0.959362453595 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_Up ttZ 1.04396425646 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_Down ttZ 0.957101958549 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 b_Up ttZ 1.01927505373 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 b_Down ttZ 0.979362922613 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 b_Up ttZ 1.06536942565 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 b_Down ttZ 0.931965645005 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 b_Up ttZ 1.02791776912 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 b_Down ttZ 0.9732043958 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 b_Up ttZ 1.01682173087 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 b_Down ttZ 0.981354264367 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf b_Up ttZ 1.01167056345 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf b_Down ttZ 0.987866257496 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 b_Up ttZ 1.01797290618 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 b_Down ttZ 0.982171201105 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_Up ttZ 1.05193391846 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_Down ttZ 0.951265222687 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 b_Up ttZ 1.02284745948 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 b_Down ttZ 0.975015974728 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 b_Up ttZ 1.00942840708 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 b_Down ttZ 0.988046771782 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_Up ttZ 1.04442876004 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_Down ttZ 0.957942848288 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_Up ttZ 1.07709519458 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_Down ttZ 0.925329285278 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf b_Up ttZ 1.06647788258 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf b_Down ttZ 0.935519464863 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 b_Up ttZ 1.0236648778 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 b_Down ttZ 0.974220505619 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 b_Up ttZ 1.01723438623 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 b_Down ttZ 0.982258676622 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_Up ttZ 1.09044862608 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_Down ttZ 0.916077896853 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 b_Up ttZ 1.02934073651 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 b_Down ttZ 0.970206717648 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 b_Up ttZ 1.01921247916 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 b_Down ttZ 0.972266969377 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 b_Up ttZ 1.0395329856 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 b_Down ttZ 0.959951640897 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 b_Up ttZ 1.0138715598 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 b_Down ttZ 0.985767838339 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 b_Up ttZ 1.03444220801 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 b_Down ttZ 0.963633267523 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf b_Up ttZ 1.03430616487 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf b_Down ttZ 0.965818786103 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf b_Up ttZ 1.03781516328 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf b_Down ttZ 0.962028428535 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 b_Up ttZ 1.01465859315 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 b_Down ttZ 0.983139763765 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf b_Up ttZ 1.11984919214 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf b_Down ttZ 0.887754512292 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 b_Up ttZ 1.07098096424 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 b_Down ttZ 0.929003473944 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 b_Up ttZ 1.01420520743 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 b_Down ttZ 0.985412311906 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf b_Up ttZ 1.03460279708 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf b_Down ttZ 0.965102828873 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 b_Up ttZ 1.03168188853 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 b_Down ttZ 0.967853785989 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Up ttZ 1.0122145699 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Down ttZ 0.986926092083 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf b_Up ttZ 1.20726188167 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf b_Down ttZ 0.866978727404 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 trigger_err_Up ttZ 1.00163802203 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 trigger_err_Down ttZ 0.998123681719 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 trigger_err_Up ttZ 1.00141980909 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 trigger_err_Down ttZ 0.998364359442 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_Up ttZ 1.00197860449 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_Down ttZ 0.997401307056 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf trigger_err_Up ttZ 1.00200148817 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf trigger_err_Down ttZ 0.997292711633 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 trigger_err_Up ttZ 1.0014556017 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 trigger_err_Down ttZ 0.998316039726 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_Up ttZ 1.00177703551 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_Down ttZ 0.998077539537 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Up ttZ 1.00222725347 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Down ttZ 0.997578589971 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 trigger_err_Up ttZ 1.00156682267 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 trigger_err_Down ttZ 0.998197785935 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_Up ttZ 1.00126103551 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_Down ttZ 0.997992130658 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_Up ttZ 1.0015475562 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_Down ttZ 0.997926767417 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 trigger_err_Up ttZ 1.00134757416 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 trigger_err_Down ttZ 0.997867840907 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Up ttZ 1.0021326721 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Down ttZ 0.997149565912 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf trigger_err_Up ttZ 1.00152553426 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf trigger_err_Down ttZ 0.997687639307 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_Up ttZ 1.00120801469 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_Down ttZ 0.998023690517 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf trigger_err_Up ttZ 1.00108934912 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf trigger_err_Down ttZ 0.998149334768 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_Up ttZ 1.00211928302 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_Down ttZ 0.997158308916 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_Up ttZ 1.00128945183 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_Down ttZ 0.998589715149 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 trigger_err_Up ttZ 1.00166097205 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 trigger_err_Down ttZ 0.99816790004 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 trigger_err_Up ttZ 1.00164032559 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 trigger_err_Down ttZ 0.998191500903 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 trigger_err_Up ttZ 1.00185677608 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 trigger_err_Down ttZ 0.997428508301 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf trigger_err_Up ttZ 1.00181984793 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf trigger_err_Down ttZ 0.997423963763 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_Up ttZ 1.00128209209 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_Down ttZ 0.998595792666 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf trigger_err_Up ttZ 1.00156668307 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf trigger_err_Down ttZ 0.997840580852 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 trigger_err_Up ttZ 1.00198448621 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 trigger_err_Down ttZ 0.997348545232 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 trigger_err_Up ttZ 1.00171121797 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 trigger_err_Down ttZ 0.997821171009 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf trigger_err_Up ttZ 1.00178210275 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf trigger_err_Down ttZ 0.997485601861 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_Up ttZ 1.00178508797 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_Down ttZ 0.998068715437 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 trigger_err_Up ttZ 1.00169526488 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 trigger_err_Down ttZ 0.997635167649 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf trigger_err_Up ttZ 1.00079773495 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf trigger_err_Down ttZ 0.998461367345 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf trigger_err_Up ttZ 1.00277829139 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf trigger_err_Down ttZ 0.996589709089 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf trigger_err_Up ttZ 1.00148129476 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf trigger_err_Down ttZ 0.99821731045 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_Up ttZ 1.00153595273 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_Down ttZ 0.997721990419 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_Up ttZ 1.00127740472 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_Down ttZ 0.998596093207 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 trigger_err_Up ttZ 1.00107309229 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 trigger_err_Down ttZ 0.99814152147 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 trigger_err_Up ttZ 1.00085019009 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 trigger_err_Down ttZ 0.998366414221 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_Up ttZ 1.00203007426 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_Down ttZ 0.997269505375 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf trigger_err_Up ttZ 1.00077503659 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf trigger_err_Down ttZ 0.998438510038 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_Up ttZ 1.00143733037 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_Down ttZ 0.998341983982 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 trigger_err_Up ttZ 1.00162355737 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 trigger_err_Down ttZ 0.998021106451 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_Up ttZ 1.00140079509 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_Down ttZ 0.997849487259 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf trigger_err_Up ttZ 1.00093986699 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf trigger_err_Down ttZ 0.99830440276 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 trigger_err_Up ttZ 1.00166191823 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 trigger_err_Down ttZ 0.997582616537 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf trigger_err_Up ttZ 1.00166186752 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf trigger_err_Down ttZ 0.998067763159 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 trigger_err_Up ttZ 1.0013403087 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 trigger_err_Down ttZ 0.998374644808 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 trigger_err_Up ttZ 1.00160084265 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 trigger_err_Down ttZ 0.998176986045 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf trigger_err_Up ttZ 1.0018459247 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf trigger_err_Down ttZ 0.997648733078 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_Up ttZ 1.0011512247 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_Down ttZ 0.998123039293 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_Up ttZ 1.00164293081 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_Down ttZ 0.998140966853 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf trigger_err_Up ttZ 1.00210357875 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf trigger_err_Down ttZ 0.997174069641 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 trigger_err_Up ttZ 1.00097241231 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 trigger_err_Down ttZ 0.998781417487 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 trigger_err_Up ttZ 1.00211835405 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 trigger_err_Down ttZ 0.997124362998 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_Up ttZ 1.00165114198 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_Down ttZ 0.998199923297 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 trigger_err_Up ttZ 1.00120488744 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 trigger_err_Down ttZ 0.998248011397 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 trigger_err_Up ttZ 1.00174027775 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 trigger_err_Down ttZ 0.998118501531 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf trigger_err_Up ttZ 1.00183303129 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf trigger_err_Down ttZ 0.997587044953 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_Up ttZ 1.00154424037 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_Down ttZ 0.997724985032 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 trigger_err_Up ttZ 1.00167460669 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 trigger_err_Down ttZ 0.99808668944 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf trigger_err_Up ttZ 1.00164945859 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf trigger_err_Down ttZ 0.99770545762 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 trigger_err_Up ttZ 1.00163643688 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 trigger_err_Down ttZ 0.998230835653 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 trigger_err_Up ttZ 1.00142190145 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 trigger_err_Down ttZ 0.998160504152 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf trigger_err_Up ttZ 1.00121375227 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf trigger_err_Down ttZ 0.998049401054 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 trigger_err_Up ttZ 1.00317425111 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 trigger_err_Down ttZ 0.996155997856 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_Up ttZ 1.00179975033 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_Down ttZ 0.998046224941 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 trigger_err_Up ttZ 1.001056035 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 trigger_err_Down ttZ 0.998762468946 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_Up ttZ 1.00132244602 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_Down ttZ 0.998450296457 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Up ttZ 1.00180554546 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Down ttZ 0.998032000581 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 trigger_err_Up ttZ 1.00114552423 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 trigger_err_Down ttZ 0.998416266377 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 trigger_err_Up ttZ 1.00158526599 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 trigger_err_Down ttZ 0.998288272098 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 trigger_err_Up ttZ 1.00178711694 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 trigger_err_Down ttZ 0.997452314292 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 trigger_err_Up ttZ 1.00144653616 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 trigger_err_Down ttZ 0.998126811236 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 trigger_err_Up ttZ 1.00196950722 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 trigger_err_Down ttZ 0.997432469195 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_Up ttZ 1.00161680577 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_Down ttZ 0.997655865582 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_Up ttZ 1.0013719882 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_Down ttZ 0.997889679506 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_Up ttZ 1.00158527482 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_Down ttZ 0.997674013829 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf trigger_err_Up ttZ 1.00218084355 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf trigger_err_Down ttZ 0.997161075103 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf trigger_err_Up ttZ 1.00188442596 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf trigger_err_Down ttZ 0.99743669723 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 trigger_err_Up ttZ 1.00069961617 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 trigger_err_Down ttZ 0.999176339703 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_Up ttZ 1.00145811495 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_Down ttZ 0.998271425634 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Up ttZ 1.0016733757 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Down ttZ 0.998179752994 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_Up ttZ 1.0015981987 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_Down ttZ 0.997933078227 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_Up ttZ 1.00195534998 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_Down ttZ 0.997337600013 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf trigger_err_Up ttZ 1.00186719118 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf trigger_err_Down ttZ 0.997419506337 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf trigger_err_Up ttZ 1.0012399427 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf trigger_err_Down ttZ 0.998316414429 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_Up ttZ 1.00152429363 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_Down ttZ 0.998241395761 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Up ttZ 1.00221088281 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Down ttZ 0.997603421394 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 trigger_err_Up ttZ 1.00118695435 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 trigger_err_Down ttZ 0.998557744815 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf trigger_err_Up ttZ 1.00163829041 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf trigger_err_Down ttZ 0.998104977645 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf trigger_err_Up ttZ 1.00148023644 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf trigger_err_Down ttZ 0.997999115681 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf trigger_err_Up ttZ 1.00325815908 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf trigger_err_Down ttZ 0.996082759626 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 trigger_err_Up ttZ 1.00174328594 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 trigger_err_Down ttZ 0.997953509108 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf trigger_err_Up ttZ 1.0013203418 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf trigger_err_Down ttZ 0.997883155437 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 trigger_err_Up ttZ 1.00176740618 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 trigger_err_Down ttZ 0.997505079384 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 trigger_err_Up ttZ 1.00143422474 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 trigger_err_Down ttZ 0.998344432952 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 trigger_err_Up ttZ 1.00129358886 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 trigger_err_Down ttZ 0.99857023019 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf trigger_err_Up ttZ 1.00363794065 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf trigger_err_Down ttZ 0.995681806678 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 trigger_err_Up ttZ 1.00134147304 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 trigger_err_Down ttZ 0.998439011589 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf trigger_err_Up ttZ 1.00171076411 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf trigger_err_Down ttZ 0.99776582452 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf trigger_err_Up ttZ 1.00136310298 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf trigger_err_Down ttZ 0.997922110373 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf trigger_err_Up ttZ 1.00157335568 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf trigger_err_Down ttZ 0.99776723225 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf trigger_err_Up ttZ 1.00168831396 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf trigger_err_Down ttZ 0.9975807052 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 trigger_err_Up ttZ 1.00132120416 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 trigger_err_Down ttZ 0.998418580326 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 trigger_err_Up ttZ 1.00171906766 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 trigger_err_Down ttZ 0.998141664267 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf trigger_err_Up ttZ 1.00291232956 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf trigger_err_Down ttZ 0.996439797299 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 trigger_err_Up ttZ 1.00115471195 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 trigger_err_Down ttZ 0.998495310736 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf trigger_err_Up ttZ 1.00157065299 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf trigger_err_Down ttZ 0.997833078602 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf trigger_err_Up ttZ 1.00256671543 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf trigger_err_Down ttZ 0.996754881014 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_Up ttZ 1.00164004961 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_Down ttZ 0.997640293528 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 trigger_err_Up ttZ 1.00111948828 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 trigger_err_Down ttZ 0.998627937236 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 trigger_err_Up ttZ 1.00060668068 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 trigger_err_Down ttZ 0.998760355207 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 trigger_err_Up ttZ 1.00232049877 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 trigger_err_Down ttZ 0.997007338869 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 trigger_err_Up ttZ 1.00180724449 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 trigger_err_Down ttZ 0.998038127067 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_Up ttZ 1.00221677945 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_Down ttZ 0.997328510233 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 trigger_err_Up ttZ 1.00178159145 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 trigger_err_Down ttZ 0.998066838919 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_Up ttZ 1.00217977595 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_Down ttZ 0.997142164133 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_Up ttZ 1.00193647754 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_Down ttZ 0.997667811512 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_Up ttZ 1.00160828505 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_Down ttZ 0.997667090562 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 trigger_err_Up ttZ 1.00148215426 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 trigger_err_Down ttZ 0.998214313184 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 trigger_err_Up ttZ 1.0018694254 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 trigger_err_Down ttZ 0.997425117918 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf trigger_err_Up ttZ 1.00207161412 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf trigger_err_Down ttZ 0.997279543225 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_Up ttZ 1.00159804059 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_Down ttZ 0.998180760356 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_Up ttZ 1.00153532773 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_Down ttZ 0.997734908468 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf trigger_err_Up ttZ 1.001480656 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf trigger_err_Down ttZ 0.997797486726 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 trigger_err_Up ttZ 1.00156880383 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 trigger_err_Down ttZ 0.998312898073 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf trigger_err_Up ttZ 1.00196241752 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf trigger_err_Down ttZ 0.997676116555 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Up ttZ 1.00189896973 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Down ttZ 0.997397450527 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 trigger_err_Up ttZ 1.00167612852 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 trigger_err_Down ttZ 0.99820630425 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf trigger_err_Up ttZ 1.00159343273 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf trigger_err_Down ttZ 0.997679958405 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_Up ttZ 1.00130325282 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_Down ttZ 0.998278473897 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_Up ttZ 1.00172772863 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_Down ttZ 0.998127295621 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf trigger_err_Up ttZ 1.00152016246 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf trigger_err_Down ttZ 0.997748216927 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 trigger_err_Up ttZ 1.00162230629 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 trigger_err_Down ttZ 0.997731468983 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Up ttZ 1.00173025185 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Down ttZ 0.998126537421 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Up ttZ 1.00133967568 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Down ttZ 0.998399395978 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf trigger_err_Up ttZ 1.00116206337 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf trigger_err_Down ttZ 0.998032199178 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf trigger_err_Up ttZ 1.00163926728 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf trigger_err_Down ttZ 0.99762245311 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_Up ttZ 1.00175432405 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_Down ttZ 0.997955651573 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 trigger_err_Up ttZ 1.00166521323 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 trigger_err_Down ttZ 0.998200208299 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 trigger_err_Up ttZ 1.00148518353 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 trigger_err_Down ttZ 0.998293275949 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf trigger_err_Up ttZ 1.00221832951 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf trigger_err_Down ttZ 0.997085697231 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_Up ttZ 1.00115337666 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_Down ttZ 0.998757229974 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_Up ttZ 1.00176439151 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_Down ttZ 0.99794120466 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_Up ttZ 1.00147859974 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_Down ttZ 0.998271305303 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Up ttZ 1.00130961984 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Down ttZ 0.998572101281 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 trigger_err_Up ttZ 1.0002504994 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 trigger_err_Down ttZ 0.99892375803 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 trigger_err_Up ttZ 1.00154018528 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 trigger_err_Down ttZ 0.998228171843 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 trigger_err_Up ttZ 1.00140006076 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 trigger_err_Down ttZ 0.998386279145 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_Up ttZ 1.00157351938 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_Down ttZ 0.998210957276 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_Up ttZ 1.00179241016 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_Down ttZ 0.998022362634 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 trigger_err_Up ttZ 1.00151443488 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 trigger_err_Down ttZ 0.998259296307 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_Up ttZ 1.00167866898 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_Down ttZ 0.998014863693 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Up ttZ 1.00132488573 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Down ttZ 0.998415002082 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_Up ttZ 1.00150244212 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_Down ttZ 0.997756128442 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_Up ttZ 1.0012562822 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_Down ttZ 0.998617346174 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 trigger_err_Up ttZ 1.00159050147 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 trigger_err_Down ttZ 0.997635956755 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 trigger_err_Up ttZ 1.00194582571 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 trigger_err_Down ttZ 0.997887700702 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 trigger_err_Up ttZ 1.00147525906 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 trigger_err_Down ttZ 0.998227411497 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_Up ttZ 1.00160472828 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_Down ttZ 0.998200097253 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_Up ttZ 1.00126247335 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_Down ttZ 0.998015859466 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 trigger_err_Up ttZ 1.00154209815 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 trigger_err_Down ttZ 0.998231338344 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_Up ttZ 1.00177774165 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_Down ttZ 0.997525159858 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_Up ttZ 1.00178426544 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_Down ttZ 0.99750565586 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 trigger_err_Up ttZ 1.00117568069 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 trigger_err_Down ttZ 0.998569910991 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_Up ttZ 1.0015553755 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_Down ttZ 0.998154910512 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_Up ttZ 1.00181907617 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_Down ttZ 0.997902319792 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_Up ttZ 1.00211716131 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_Down ttZ 0.997176470647 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 trigger_err_Up ttZ 1.00145022111 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 trigger_err_Down ttZ 0.998327241266 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 trigger_err_Up ttZ 1.00170916213 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 trigger_err_Down ttZ 0.998156097159 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_Up ttZ 1.00147918146 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_Down ttZ 0.99798622424 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 trigger_err_Up ttZ 1.00170639504 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 trigger_err_Down ttZ 0.998153436367 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 trigger_err_Up ttZ 1.00194115418 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 trigger_err_Down ttZ 0.997906435751 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 trigger_err_Up ttZ 1.00123045711 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 trigger_err_Down ttZ 0.998762911813 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 trigger_err_Up ttZ 1.00166063873 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 trigger_err_Down ttZ 0.998131416931 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 trigger_err_Up ttZ 1.00145644299 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 trigger_err_Down ttZ 0.998292874835 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf trigger_err_Up ttZ 1.00036873523 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf trigger_err_Down ttZ 0.998823918967 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_Up ttZ 1.00129179176 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_Down ttZ 0.997963558208 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 trigger_err_Up ttZ 1.00192802993 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 trigger_err_Down ttZ 0.997406812769 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf trigger_err_Up ttZ 1.00194629006 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf trigger_err_Down ttZ 0.997332765283 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 trigger_err_Up ttZ 1.00131334328 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 trigger_err_Down ttZ 0.998426501102 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 trigger_err_Up ttZ 1.00181326488 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 trigger_err_Down ttZ 0.998038021695 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf trigger_err_Up ttZ 1.00177835559 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf trigger_err_Down ttZ 0.997702212171 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 trigger_err_Up ttZ 1.00176480102 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 trigger_err_Down ttZ 0.997728736444 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Up ttZ 1.00131047332 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Down ttZ 0.998569242983 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf trigger_err_Up ttZ 0.999999998323 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf trigger_err_Down ttZ 1.00086443371 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PU_Weight_Up ttZ 1.01023449758 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PU_Weight_Down ttZ 0.990450685376 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PU_Weight_Up ttZ 1.00027244101 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PU_Weight_Down ttZ 0.999506424071 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_Up ttZ 1.04727084669 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_Down ttZ 0.97365763775 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PU_Weight_Up ttZ 1.00652692239 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PU_Weight_Down ttZ 0.993894182174 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PU_Weight_Up ttZ 1.05329415756 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PU_Weight_Down ttZ 0.944236984356 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_Up ttZ 1.00409349331 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_Down ttZ 0.996348304706 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Up ttZ 1.00118324917 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Down ttZ 0.999708087091 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_Up ttZ 1.0049485401 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_Down ttZ 0.996217807386 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_Up ttZ 0.996929295432 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_Down ttZ 1.00544021944 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_Up ttZ 0.999771616456 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_Down ttZ 1.00188956418 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PU_Weight_Up ttZ 1.05113019419 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PU_Weight_Down ttZ 0.947678270654 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Up ttZ 1.00105067195 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Down ttZ 0.997274848881 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PU_Weight_Up ttZ 1.0232716801 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PU_Weight_Down ttZ 0.988096774222 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_Up ttZ 1.02757283885 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_Down ttZ 0.976900327147 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PU_Weight_Up ttZ 0.997135121348 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PU_Weight_Down ttZ 1.00291345756 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Up ttZ 1.01123177544 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Down ttZ 0.991129680702 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_Up ttZ 1.00121636417 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_Down ttZ 0.999307972353 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PU_Weight_Up ttZ 1.01222141578 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PU_Weight_Down ttZ 0.986378758643 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PU_Weight_Up ttZ 1.00402632618 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PU_Weight_Down ttZ 0.99490066478 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PU_Weight_Up ttZ 1.00093309838 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PU_Weight_Down ttZ 0.998565018203 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PU_Weight_Up ttZ 1.0193258583 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PU_Weight_Down ttZ 0.974923398033 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_Up ttZ 1.00757769592 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_Down ttZ 0.993200157417 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PU_Weight_Up ttZ 1.00073743975 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PU_Weight_Down ttZ 0.99718346548 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PU_Weight_Up ttZ 1.05600209661 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PU_Weight_Down ttZ 0.934321118401 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_Up ttZ 1.00629740914 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_Down ttZ 0.995195101847 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Up ttZ 1.0102638364 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Down ttZ 0.98918572515 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_Up ttZ 1.00142560527 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_Down ttZ 0.998741832836 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PU_Weight_Up ttZ 1.06166148998 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PU_Weight_Down ttZ 0.929216070515 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PU_Weight_Up ttZ 1.00687538259 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PU_Weight_Down ttZ 0.99160438921 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PU_Weight_Up ttZ 1.17375299342 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PU_Weight_Down ttZ 0.830709182153 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PU_Weight_Up ttZ 1.00412961317 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PU_Weight_Down ttZ 0.997560061399 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_Up ttZ 1.00242379366 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_Down ttZ 0.997642994746 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_Up ttZ 1.00243856001 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_Down ttZ 0.99695156538 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PU_Weight_Up ttZ 1.01441126671 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PU_Weight_Down ttZ 0.984364800284 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PU_Weight_Up ttZ 1.04277817037 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PU_Weight_Down ttZ 0.960248297354 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_Up ttZ 1.03282138796 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_Down ttZ 0.977147222324 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PU_Weight_Up ttZ 1.00437448425 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PU_Weight_Down ttZ 0.991863094312 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_Up ttZ 1.01936908596 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_Down ttZ 0.979154476252 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PU_Weight_Up ttZ 1.01192093123 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PU_Weight_Down ttZ 0.988623326621 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_Up ttZ 1.00788033721 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_Down ttZ 0.990161828403 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PU_Weight_Up ttZ 1.01374911795 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PU_Weight_Down ttZ 0.983745083999 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PU_Weight_Up ttZ 1.00494903792 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PU_Weight_Down ttZ 0.998442819746 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PU_Weight_Up ttZ 1.00617990841 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PU_Weight_Down ttZ 0.998468779827 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PU_Weight_Up ttZ 1.00326888076 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PU_Weight_Down ttZ 0.997973974956 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PU_Weight_Up ttZ 1.00103375891 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PU_Weight_Down ttZ 0.998756816912 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PU_Weight_Up ttZ 1.04449463849 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PU_Weight_Down ttZ 0.950536884499 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_Up ttZ 1.01194120573 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_Down ttZ 0.986796959196 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_Up ttZ 1.01260507589 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_Down ttZ 0.985764805635 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PU_Weight_Up ttZ 1.00152853068 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PU_Weight_Down ttZ 0.99797154085 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PU_Weight_Up ttZ 1.03650514192 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PU_Weight_Down ttZ 0.965126116042 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PU_Weight_Up ttZ 1.04192448447 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PU_Weight_Down ttZ 0.958073135608 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_Up ttZ 1.07297906917 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_Down ttZ 0.908375041588 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PU_Weight_Up ttZ 1.00036800213 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PU_Weight_Down ttZ 0.999644007313 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PU_Weight_Up ttZ 1.00577029492 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PU_Weight_Down ttZ 0.997382700819 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PU_Weight_Up ttZ 1.01173947099 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PU_Weight_Down ttZ 0.975525965541 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_Up ttZ 1.00900771439 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_Down ttZ 0.990132124876 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PU_Weight_Up ttZ 1.00513428627 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PU_Weight_Down ttZ 0.993466600149 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PU_Weight_Up ttZ 1.00558917259 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PU_Weight_Down ttZ 0.995203910703 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PU_Weight_Up ttZ 1.02126963573 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PU_Weight_Down ttZ 0.974443732165 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PU_Weight_Up ttZ 1.00266432218 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PU_Weight_Down ttZ 0.997191632147 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PU_Weight_Up ttZ 1.01219770753 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PU_Weight_Down ttZ 0.989703245075 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PU_Weight_Up ttZ 1.12191972158 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PU_Weight_Down ttZ 0.910665869252 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_Up ttZ 1.00382145479 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_Down ttZ 0.997776230196 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PU_Weight_Up ttZ 1.24800273371 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PU_Weight_Down ttZ 0.736974160537 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_Up ttZ 1.02194529592 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_Down ttZ 0.978031194649 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Up ttZ 1.00232825417 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Down ttZ 0.998134391507 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PU_Weight_Up ttZ 1.07268011095 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PU_Weight_Down ttZ 0.938157244043 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PU_Weight_Up ttZ 1.00274625332 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PU_Weight_Down ttZ 0.998613494028 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PU_Weight_Up ttZ 1.01014359075 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PU_Weight_Down ttZ 0.991923431031 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PU_Weight_Up ttZ 1.003705966 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PU_Weight_Down ttZ 0.997427603323 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PU_Weight_Up ttZ 1.03663469191 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PU_Weight_Down ttZ 0.959274215802 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_Up ttZ 0.999993222198 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_Down ttZ 1.00312240502 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Up ttZ 1.00658557192 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Down ttZ 0.993671901161 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_Up ttZ 1.01747256324 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_Down ttZ 0.983757276202 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PU_Weight_Up ttZ 1.02893459859 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PU_Weight_Down ttZ 0.969089687767 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PU_Weight_Up ttZ 1.02171973716 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PU_Weight_Down ttZ 0.980903585312 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PU_Weight_Up ttZ 1.03068901058 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PU_Weight_Down ttZ 0.986080039854 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_Up ttZ 1.0002861265 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_Down ttZ 0.998411010045 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Up ttZ 1.00350867032 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Down ttZ 0.985479041649 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_Up ttZ 1.01052889108 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_Down ttZ 0.987131785983 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Up ttZ 1.01100260877 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Down ttZ 0.989111462073 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PU_Weight_Up ttZ 1.01717454657 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PU_Weight_Down ttZ 0.983084506501 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PU_Weight_Up ttZ 1.01210901136 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PU_Weight_Down ttZ 0.986852114243 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_Up ttZ 1.00952719014 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_Down ttZ 0.987737344213 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Up ttZ 1.0007763326 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Down ttZ 0.999792468565 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PU_Weight_Up ttZ 1.00904032945 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PU_Weight_Down ttZ 0.992113480476 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PU_Weight_Up ttZ 0.999887486479 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PU_Weight_Down ttZ 1.00097369782 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PU_Weight_Up ttZ 1.00464930713 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PU_Weight_Down ttZ 0.994318139154 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PU_Weight_Up ttZ 1.05731804711 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PU_Weight_Down ttZ 0.945671525785 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PU_Weight_Up ttZ 1.01898514545 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PU_Weight_Down ttZ 0.981088831482 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PU_Weight_Up ttZ 1.0466095318 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PU_Weight_Down ttZ 0.948486740973 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Up ttZ 1.00626442842 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Down ttZ 0.991029945221 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PU_Weight_Up ttZ 1.01127060498 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PU_Weight_Down ttZ 0.988923166013 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PU_Weight_Up ttZ 1.0219262523 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PU_Weight_Down ttZ 0.977190324319 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PU_Weight_Up ttZ 1.01835205202 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PU_Weight_Down ttZ 0.976472181392 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PU_Weight_Up ttZ 1.01099013133 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PU_Weight_Down ttZ 0.991964032816 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PU_Weight_Up ttZ 1.00562037417 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PU_Weight_Down ttZ 0.993802406341 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PU_Weight_Up ttZ 1.01866019846 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PU_Weight_Down ttZ 0.966745478921 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PU_Weight_Up ttZ 1.04614477622 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PU_Weight_Down ttZ 0.93954697697 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PU_Weight_Up ttZ 1.01039098318 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PU_Weight_Down ttZ 0.991721865075 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PU_Weight_Up ttZ 1.00581152409 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PU_Weight_Down ttZ 0.992473725897 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PU_Weight_Up ttZ 1.01729022011 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PU_Weight_Down ttZ 0.98253368084 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PU_Weight_Up ttZ 1.04890444658 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PU_Weight_Down ttZ 0.956604388347 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PU_Weight_Up ttZ 1.01050314091 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PU_Weight_Down ttZ 0.99048866102 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PU_Weight_Up ttZ 1.04170290801 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PU_Weight_Down ttZ 0.956259376915 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PU_Weight_Up ttZ 1.01446381808 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PU_Weight_Down ttZ 0.983904510107 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Up ttZ 1.00762216774 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Down ttZ 0.990291657941 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PU_Weight_Up ttZ 1.00313620543 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PU_Weight_Down ttZ 0.993506347084 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PU_Weight_Up ttZ 1.01749902925 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PU_Weight_Down ttZ 0.990484503283 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PU_Weight_Up ttZ 1.02860483925 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PU_Weight_Down ttZ 0.968120840992 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Up ttZ 1.01695215549 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Down ttZ 0.98525403746 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_Up ttZ 1.01858448641 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_Down ttZ 0.99474601241 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PU_Weight_Up ttZ 1.00049016576 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PU_Weight_Down ttZ 0.999512391311 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_Up ttZ 1.00087888545 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_Down ttZ 0.998629279241 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_Up ttZ 1.05133252831 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_Down ttZ 0.950946942435 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_Up ttZ 1.01992764239 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_Down ttZ 0.974075395683 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PU_Weight_Up ttZ 1.01287112699 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PU_Weight_Down ttZ 0.987447360759 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PU_Weight_Up ttZ 1.01192842271 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PU_Weight_Down ttZ 0.987479990225 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PU_Weight_Up ttZ 1.00956833058 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PU_Weight_Down ttZ 0.989482709635 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_Up ttZ 1.00218784271 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_Down ttZ 0.997628629202 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_Up ttZ 1.00440754689 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_Down ttZ 0.992901736172 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PU_Weight_Up ttZ 1.01203568241 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PU_Weight_Down ttZ 0.985692716856 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PU_Weight_Up ttZ 1.02157384322 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PU_Weight_Down ttZ 0.98079670102 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PU_Weight_Up ttZ 1.01430088338 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PU_Weight_Down ttZ 0.982603295972 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Up ttZ 1.00203747063 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Down ttZ 0.996433148065 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PU_Weight_Up ttZ 1.00419956978 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PU_Weight_Down ttZ 0.996477150204 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Up ttZ 1.0047672957 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Down ttZ 0.998592761528 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_Up ttZ 1.02218415691 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_Down ttZ 0.980724430041 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_Up ttZ 1.00020454034 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_Down ttZ 0.998986170044 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PU_Weight_Up ttZ 1.00752297908 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PU_Weight_Down ttZ 0.994403455088 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PU_Weight_Up ttZ 1.08587157633 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PU_Weight_Down ttZ 0.921877826367 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Up ttZ 1.00330684268 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Down ttZ 0.998907984442 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Up ttZ 1.00253173607 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Down ttZ 0.998196301691 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PU_Weight_Up ttZ 1.02265765182 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PU_Weight_Down ttZ 0.981702899081 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PU_Weight_Up ttZ 1.00381408448 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PU_Weight_Down ttZ 0.997332261577 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_Up ttZ 1.10891278532 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_Down ttZ 0.870817068698 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PU_Weight_Up ttZ 1.0075018993 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PU_Weight_Down ttZ 0.992568437599 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PU_Weight_Up ttZ 1.00087243302 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PU_Weight_Down ttZ 0.999309369447 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PU_Weight_Up ttZ 0.998413329608 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PU_Weight_Down ttZ 1.00292184202 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PU_Weight_Up ttZ 1.01992877307 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PU_Weight_Down ttZ 0.974538059269 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_Up ttZ 1.01333921734 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_Down ttZ 0.991921990517 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_Up ttZ 1.00294579631 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_Down ttZ 0.997358051355 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Up ttZ 1.0016221888 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Down ttZ 0.998374568348 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PU_Weight_Up ttZ 1.04389723395 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PU_Weight_Down ttZ 0.957660998137 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PU_Weight_Up ttZ 1.00172663848 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PU_Weight_Down ttZ 0.996113087124 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PU_Weight_Up ttZ 1.00184990499 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PU_Weight_Down ttZ 0.998239584261 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_Up ttZ 0.999957593501 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_Down ttZ 1.00039815668 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_Up ttZ 1.0916842566 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_Down ttZ 0.86340820323 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_Up ttZ 1.00120200566 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_Down ttZ 0.997530517334 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_Up ttZ 1.02520219304 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_Down ttZ 0.971938502779 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Up ttZ 1.01471701813 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Down ttZ 0.990274265827 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_Up ttZ 1.00059530353 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_Down ttZ 0.997680814717 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_Up ttZ 1.01116704327 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_Down ttZ 0.995538860343 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Up ttZ 1.01068433704 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Down ttZ 0.985650722885 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PU_Weight_Up ttZ 1.03163729388 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PU_Weight_Down ttZ 0.968279882103 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PU_Weight_Up ttZ 1.03743932498 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PU_Weight_Down ttZ 0.968354090306 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_Up ttZ 1.00148302644 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_Down ttZ 0.999272232185 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_Up ttZ 1.02838817777 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_Down ttZ 0.97007789071 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PU_Weight_Up ttZ 1.04371688853 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PU_Weight_Down ttZ 0.964600210986 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_Up ttZ 1.08573283558 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_Down ttZ 0.91526048311 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_Up ttZ 1.01723106198 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_Down ttZ 0.989641665146 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PU_Weight_Up ttZ 1.02228644777 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PU_Weight_Down ttZ 0.979286375444 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_Up ttZ 1.05178535755 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_Down ttZ 0.927232132329 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_Up ttZ 1.00725375658 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_Down ttZ 0.99911300941 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_Up ttZ 0.999711269417 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_Down ttZ 1.00697468848 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PU_Weight_Up ttZ 1.01762183444 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PU_Weight_Down ttZ 0.985083082775 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PU_Weight_Up ttZ 1.02975041008 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PU_Weight_Down ttZ 0.962005226545 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_Up ttZ 1.01230036078 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_Down ttZ 0.98747079245 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PU_Weight_Up ttZ 1.00010518698 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PU_Weight_Down ttZ 0.999262196329 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PU_Weight_Up ttZ 1.01128033999 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PU_Weight_Down ttZ 0.98541019539 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PU_Weight_Up ttZ 1.00761183226 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PU_Weight_Down ttZ 0.992149673307 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PU_Weight_Up ttZ 1.00183200614 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PU_Weight_Down ttZ 0.997629609764 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PU_Weight_Up ttZ 1.05166248519 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PU_Weight_Down ttZ 0.946946575515 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PU_Weight_Up ttZ 1.15144821647 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PU_Weight_Down ttZ 0.87757261715 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_Up ttZ 1.01075925703 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_Down ttZ 0.989693546944 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PU_Weight_Up ttZ 0.999693388619 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PU_Weight_Down ttZ 1.0127443997 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PU_Weight_Up ttZ 1.02488758554 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PU_Weight_Down ttZ 0.973079244286 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PU_Weight_Up ttZ 1.02193609501 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PU_Weight_Down ttZ 0.96894987726 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PU_Weight_Up ttZ 1.00238446437 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PU_Weight_Down ttZ 0.997319073492 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PU_Weight_Up ttZ 1.00259418142 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PU_Weight_Down ttZ 0.998230199153 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_Up ttZ 1.00590321429 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_Down ttZ 0.99375066576 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Up ttZ 1.00066643667 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Down ttZ 0.999724493169 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PU_Weight_Up ttZ 1.35524798584 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PU_Weight_Down ttZ 0.816784917584 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 Prefire_Weight_Up ttZ 1.00269300403 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 Prefire_Weight_Down ttZ 0.997182844784 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_Up ttZ 1.00479313421 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_Down ttZ 0.995123786276 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 Prefire_Weight_Up ttZ 1.00193792583 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 Prefire_Weight_Down ttZ 0.997298145281 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_Up ttZ 1.00501269818 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_Down ttZ 0.994969307638 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 Prefire_Weight_Up ttZ 1.00329749041 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 Prefire_Weight_Down ttZ 0.996270572212 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_Up ttZ 1.00342487916 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_Down ttZ 0.996564153078 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_Up ttZ 1.00479584296 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_Down ttZ 0.99507098927 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_Up ttZ 1.01385531069 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_Down ttZ 0.986252497181 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_Up ttZ 1.00698437618 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_Down ttZ 0.993326662301 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_Up ttZ 1.00505376533 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_Down ttZ 0.995013913996 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 Prefire_Weight_Up ttZ 1.00633681381 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 Prefire_Weight_Down ttZ 0.993499567702 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_Up ttZ 1.00082532997 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_Down ttZ 0.998985475453 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf Prefire_Weight_Up ttZ 1.00064207824 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf Prefire_Weight_Down ttZ 0.999001555576 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_Up ttZ 1.00015446542 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_Down ttZ 0.999342898106 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_Up ttZ 1.00395566301 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_Down ttZ 0.995640349234 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_Up ttZ 1.00204590394 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_Down ttZ 0.998105379034 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 Prefire_Weight_Up ttZ 1.00478744404 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 Prefire_Weight_Down ttZ 0.995155646484 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 Prefire_Weight_Up ttZ 1.0009846976 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 Prefire_Weight_Down ttZ 0.998944657556 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 Prefire_Weight_Up ttZ 1.0026429932 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 Prefire_Weight_Down ttZ 0.997276091325 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_Up ttZ 1.0049975144 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_Down ttZ 0.994958109458 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf Prefire_Weight_Up ttZ 1.01703871968 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf Prefire_Weight_Down ttZ 0.983099684047 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 Prefire_Weight_Up ttZ 1.00524926888 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 Prefire_Weight_Down ttZ 0.994668424384 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf Prefire_Weight_Up ttZ 1.00323648025 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf Prefire_Weight_Down ttZ 0.996695552928 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_Up ttZ 1.0052833387 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_Down ttZ 0.990340920846 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_Up ttZ 1.00421671384 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_Down ttZ 0.995637526315 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_Up ttZ 1.00433130005 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_Down ttZ 0.995600259311 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_Up ttZ 1.00344839338 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_Down ttZ 0.99646221001 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 Prefire_Weight_Up ttZ 1.00341882882 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 Prefire_Weight_Down ttZ 0.996605894249 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_Up ttZ 1.00135745248 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf Prefire_Weight_Down ttZ 0.998543600417 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf Prefire_Weight_Up ttZ 1.00226560677 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf Prefire_Weight_Down ttZ 0.996820328467 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf Prefire_Weight_Up ttZ 1.00275332807 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf Prefire_Weight_Down ttZ 0.997338333517 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_Up ttZ 1.00285871005 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_Down ttZ 0.997129562891 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 Prefire_Weight_Up ttZ 1.00384251582 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 Prefire_Weight_Down ttZ 0.996049022362 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 Prefire_Weight_Up ttZ 1.00313638274 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 Prefire_Weight_Down ttZ 0.99689106188 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_Up ttZ 1.00032578028 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 Prefire_Weight_Down ttZ 0.999616916042 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 Prefire_Weight_Up ttZ 1.00419861077 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 Prefire_Weight_Down ttZ 0.995119300774 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf Prefire_Weight_Up ttZ 1.00610958091 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf Prefire_Weight_Down ttZ 0.99365283267 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_Up ttZ 1.00586227205 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_Down ttZ 0.994101441016 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_Up ttZ 1.00680818627 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_Down ttZ 0.993284707331 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf Prefire_Weight_Up ttZ 1.00243858024 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf Prefire_Weight_Down ttZ 0.997749280375 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf Prefire_Weight_Up ttZ 1.00284755207 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf Prefire_Weight_Down ttZ 0.997154561522 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 Prefire_Weight_Up ttZ 1.00514252471 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 Prefire_Weight_Down ttZ 0.994182225334 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf Prefire_Weight_Up ttZ 1.00060165087 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf Prefire_Weight_Down ttZ 0.999340825578 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 Prefire_Weight_Up ttZ 1.00300784034 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 Prefire_Weight_Down ttZ 0.99693144478 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 Prefire_Weight_Up ttZ 1.00336288786 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 Prefire_Weight_Down ttZ 0.996590132121 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf Prefire_Weight_Up ttZ 1.0048908922 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf Prefire_Weight_Down ttZ 0.994880176378 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_Up ttZ 1.00515232686 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_Down ttZ 0.994536395981 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_Up ttZ 1.0043922949 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_Down ttZ 0.995746168371 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf Prefire_Weight_Up ttZ 1.00095692458 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf Prefire_Weight_Down ttZ 0.999055171172 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 Prefire_Weight_Up ttZ 1.00328713738 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 Prefire_Weight_Down ttZ 0.996251073268 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 Prefire_Weight_Up ttZ 1.00335450962 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 Prefire_Weight_Down ttZ 0.996645493264 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_Up ttZ 1.00064342298 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_Down ttZ 0.999252489032 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 Prefire_Weight_Up ttZ 1.01179291105 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 Prefire_Weight_Down ttZ 0.988425470749 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 Prefire_Weight_Up ttZ 1.00329638512 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 Prefire_Weight_Down ttZ 0.996692075788 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf Prefire_Weight_Up ttZ 1.00673143276 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf Prefire_Weight_Down ttZ 0.993073958546 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_Up ttZ 1.0037705417 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_Down ttZ 0.996167966833 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 Prefire_Weight_Up ttZ 1.00308513288 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 Prefire_Weight_Down ttZ 0.996879471201 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf Prefire_Weight_Up ttZ 1.00090685036 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf Prefire_Weight_Down ttZ 0.99905027621 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 Prefire_Weight_Up ttZ 1.00283466393 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 Prefire_Weight_Down ttZ 0.997146107444 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_Up ttZ 1.00424007948 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_Down ttZ 0.995699251877 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf Prefire_Weight_Up ttZ 1.00213657138 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf Prefire_Weight_Down ttZ 0.997684865106 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 Prefire_Weight_Up ttZ 1.02019143246 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 Prefire_Weight_Down ttZ 0.979222234063 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_Up ttZ 1.00536248412 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_Down ttZ 0.994555478014 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_Up ttZ 1.02216396382 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_Down ttZ 0.97786899125 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_Up ttZ 1.00774136257 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 Prefire_Weight_Down ttZ 0.992412470608 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_Up ttZ 1.00263391229 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_Down ttZ 0.997168039275 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 Prefire_Weight_Up ttZ 1.00559141666 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 Prefire_Weight_Down ttZ 0.994788952873 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 Prefire_Weight_Up ttZ 1.00446199297 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 Prefire_Weight_Down ttZ 0.995725937092 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_Up ttZ 1.00111974182 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_Down ttZ 0.99888252828 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_Up ttZ 1.00524341665 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 Prefire_Weight_Down ttZ 0.99472510976 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 Prefire_Weight_Up ttZ 1.00035818815 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 Prefire_Weight_Down ttZ 0.999777198058 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_Up ttZ 1.00363448263 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf Prefire_Weight_Down ttZ 0.996239025218 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_Up ttZ 1.00281313515 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_Down ttZ 0.997213485825 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 Prefire_Weight_Up ttZ 1.00728176883 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 Prefire_Weight_Down ttZ 0.992565685696 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf Prefire_Weight_Up ttZ 1.0039156386 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf Prefire_Weight_Down ttZ 0.996158418054 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_Up ttZ 1.00676781679 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_Down ttZ 0.993146829865 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 Prefire_Weight_Up ttZ 1.02083803555 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 Prefire_Weight_Down ttZ 0.979527227744 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_Up ttZ 1.00381160898 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_Down ttZ 0.996177090075 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_Up ttZ 1.00245670266 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_Down ttZ 0.99706827905 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_Up ttZ 1.00278088524 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 Prefire_Weight_Down ttZ 0.997229680651 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_Up ttZ 1.00776706807 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_Down ttZ 0.99232473838 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf Prefire_Weight_Up ttZ 1.00533240964 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf Prefire_Weight_Down ttZ 0.994744828928 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf Prefire_Weight_Up ttZ 1.00337397078 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf Prefire_Weight_Down ttZ 0.996685382075 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_Up ttZ 1.00755234271 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_Down ttZ 0.992496990836 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_Up ttZ 1.00415336038 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 Prefire_Weight_Down ttZ 0.995742630699 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 Prefire_Weight_Up ttZ 1.00452223541 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 Prefire_Weight_Down ttZ 0.995620141387 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf Prefire_Weight_Up ttZ 1.00283960883 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf Prefire_Weight_Down ttZ 0.997124899973 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf Prefire_Weight_Up ttZ 1.00412612611 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf Prefire_Weight_Down ttZ 0.995815136929 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf Prefire_Weight_Up ttZ 1.00020625161 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf Prefire_Weight_Down ttZ 0.999793270714 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_Up ttZ 1.00446316882 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 Prefire_Weight_Down ttZ 0.995492247164 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf Prefire_Weight_Up ttZ 1.01417700454 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf Prefire_Weight_Down ttZ 0.985978241135 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_Up ttZ 1.00513924415 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_Down ttZ 0.994899241769 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 Prefire_Weight_Up ttZ 1.00537476131 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 Prefire_Weight_Down ttZ 0.994588180093 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 Prefire_Weight_Up ttZ 1.00724288215 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 Prefire_Weight_Down ttZ 0.99282427776 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf Prefire_Weight_Up ttZ 1.00474651325 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf Prefire_Weight_Down ttZ 0.995253417457 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 Prefire_Weight_Up ttZ 1.00426367274 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 Prefire_Weight_Down ttZ 0.995641194148 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf Prefire_Weight_Up ttZ 1.00435253226 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf Prefire_Weight_Down ttZ 0.995634180344 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf Prefire_Weight_Up ttZ 1.00704943642 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf Prefire_Weight_Down ttZ 0.992957591098 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf Prefire_Weight_Up ttZ 1.02765574646 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf Prefire_Weight_Down ttZ 0.971537725722 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf Prefire_Weight_Up ttZ 1.00422572629 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf Prefire_Weight_Down ttZ 0.995994375865 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 Prefire_Weight_Up ttZ 1.00499540571 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 Prefire_Weight_Down ttZ 0.994784315747 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 Prefire_Weight_Up ttZ 1.00290563586 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 Prefire_Weight_Down ttZ 0.997078239914 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf Prefire_Weight_Up ttZ 1.00580080933 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf Prefire_Weight_Down ttZ 0.994112360804 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 Prefire_Weight_Up ttZ 1.00244056185 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 Prefire_Weight_Down ttZ 0.997583461017 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf Prefire_Weight_Up ttZ 1.00077953256 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf Prefire_Weight_Down ttZ 0.999101458052 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf Prefire_Weight_Up ttZ 1.00959302935 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf Prefire_Weight_Down ttZ 0.990328954798 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_Up ttZ 1.0050431838 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_Down ttZ 0.994951363002 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 Prefire_Weight_Up ttZ 1.00191221524 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 Prefire_Weight_Down ttZ 0.997701412522 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_Up ttZ 1.00456023334 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_Down ttZ 0.995237145191 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 Prefire_Weight_Up ttZ 1.00494689806 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 Prefire_Weight_Down ttZ 0.995086290912 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_Up ttZ 1.00289695531 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_Down ttZ 0.996895318713 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 Prefire_Weight_Up ttZ 1.01345398898 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 Prefire_Weight_Down ttZ 0.986577344489 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 Prefire_Weight_Up ttZ 1.00428733126 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 Prefire_Weight_Down ttZ 0.995635897308 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_Up ttZ 1.00682176773 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 Prefire_Weight_Down ttZ 0.993079871555 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_Up ttZ 1.00440796552 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf Prefire_Weight_Down ttZ 0.995456307908 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_Up ttZ 1.00462426011 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 Prefire_Weight_Down ttZ 0.995320515913 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 Prefire_Weight_Up ttZ 1.00425232016 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 Prefire_Weight_Down ttZ 0.995667300629 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_Up ttZ 1.00522846363 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 Prefire_Weight_Down ttZ 0.994692863732 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf Prefire_Weight_Up ttZ 1.00151010777 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf Prefire_Weight_Down ttZ 0.99848525315 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_Up ttZ 1.00334743104 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_Down ttZ 0.99647355728 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_Up ttZ 1.00644901258 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_Down ttZ 0.99357146453 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf Prefire_Weight_Up ttZ 1.0032464956 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf Prefire_Weight_Down ttZ 0.996764413528 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 Prefire_Weight_Up ttZ 1.00389552069 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 Prefire_Weight_Down ttZ 0.99617847448 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf Prefire_Weight_Up ttZ 1.00361488004 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf Prefire_Weight_Down ttZ 0.996353422327 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_Up ttZ 1.00556652142 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf Prefire_Weight_Down ttZ 0.994415518289 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 Prefire_Weight_Up ttZ 1.0022256147 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 Prefire_Weight_Down ttZ 0.99780990097 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_Up ttZ 1.00420406506 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf Prefire_Weight_Down ttZ 0.995747688018 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_Up ttZ 1.0067518511 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_Down ttZ 0.993156895232 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_Up ttZ 1.00504536938 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 Prefire_Weight_Down ttZ 0.9948460424 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_Up ttZ 1.00314362529 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf Prefire_Weight_Down ttZ 0.996824780616 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_Up ttZ 1.00920116219 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 Prefire_Weight_Down ttZ 0.990884305903 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_Up ttZ 1.00602775391 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 Prefire_Weight_Down ttZ 0.994023164412 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_Up ttZ 1.00542772695 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_Down ttZ 0.994471169609 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_Up ttZ 1.00000002139 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf Prefire_Weight_Down ttZ 0.999999978611 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf Prefire_Weight_Up ttZ 1.0050308102 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf Prefire_Weight_Down ttZ 0.994912592915 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 Prefire_Weight_Up ttZ 1.00138810537 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 Prefire_Weight_Down ttZ 0.997728175485 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 Prefire_Weight_Up ttZ 1.00289868182 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 Prefire_Weight_Down ttZ 0.997098489953 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 Prefire_Weight_Up ttZ 1.0055984063 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 Prefire_Weight_Down ttZ 0.994378270231 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf Prefire_Weight_Up ttZ 1.00133920983 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf Prefire_Weight_Down ttZ 0.998493506599 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 Prefire_Weight_Up ttZ 1.00664514255 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 Prefire_Weight_Down ttZ 0.993681779762 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_Up ttZ 1.00127249406 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_Down ttZ 0.998722185848 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_Up ttZ 1.00378328494 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 Prefire_Weight_Down ttZ 0.996160103456 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_Up ttZ 1.00411602696 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_Down ttZ 0.995745372346 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 Prefire_Weight_Up ttZ 1.00000003266 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 Prefire_Weight_Down ttZ 0.999999967345 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 Prefire_Weight_Up ttZ 1.00349643204 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 Prefire_Weight_Down ttZ 0.996371198816 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_Up ttZ 1.00312485522 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 Prefire_Weight_Down ttZ 0.99678793748 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_Up ttZ 1.00477930018 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 Prefire_Weight_Down ttZ 0.995203315821 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_Up ttZ 1.00152183093 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_Down ttZ 0.998594804921 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_Up ttZ 1.0075341492 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 Prefire_Weight_Down ttZ 0.992567254365 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_Up ttZ 1.00529637931 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 Prefire_Weight_Down ttZ 0.994625111775 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_Up ttZ 1.00495172073 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 Prefire_Weight_Down ttZ 0.995045772198 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_Up ttZ 1.00347082946 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 Prefire_Weight_Down ttZ 0.996521505749 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 Prefire_Weight_Up ttZ 1.00808495564 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 Prefire_Weight_Down ttZ 0.991670992305 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_Up ttZ 1.00047464158 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 Prefire_Weight_Down ttZ 0.999365104869 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 Prefire_Weight_Up ttZ 1.00167293226 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 Prefire_Weight_Down ttZ 0.998262531007 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 Prefire_Weight_Up ttZ 1.00393201516 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 Prefire_Weight_Down ttZ 0.995034831631 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_Up ttZ 1.00190721481 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 Prefire_Weight_Down ttZ 0.997966049589 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_Up ttZ 1.00685732342 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_Down ttZ 0.992865644514 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_Up ttZ 1.01428474755 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 Prefire_Weight_Down ttZ 0.98556496099 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 Prefire_Weight_Up ttZ 1.00842450788 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 Prefire_Weight_Down ttZ 0.991891370072 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_Up ttZ 1.00084465041 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 Prefire_Weight_Down ttZ 0.998986652186 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 Prefire_Weight_Up ttZ 1.0063486378 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 Prefire_Weight_Down ttZ 0.993975846558 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 Prefire_Weight_Up ttZ 1.02126069337 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 Prefire_Weight_Down ttZ 0.979019565018 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_Up ttZ 1.00540631441 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf Prefire_Weight_Down ttZ 0.994846907668 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_Up ttZ 1.00282013843 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf Prefire_Weight_Down ttZ 0.997173449874 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 Prefire_Weight_Up ttZ 1.00368239926 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 Prefire_Weight_Down ttZ 0.996347057794 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_Up ttZ 1.00839197852 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 Prefire_Weight_Down ttZ 0.99182407192 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 Prefire_Weight_Up ttZ 1.01068438792 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 Prefire_Weight_Down ttZ 0.989922326088 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 Prefire_Weight_Up ttZ 1.00334865972 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 Prefire_Weight_Down ttZ 0.996589121435 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 Prefire_Weight_Up ttZ 1.01293345851 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 Prefire_Weight_Down ttZ 0.985461922549 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 Prefire_Weight_Up ttZ 1.00951783165 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 Prefire_Weight_Down ttZ 0.989368316003 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 Prefire_Weight_Up ttZ 1.00268639947 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 Prefire_Weight_Down ttZ 0.997240443834 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 Prefire_Weight_Up ttZ 1.00951713502 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 Prefire_Weight_Down ttZ 0.990380222365 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf Prefire_Weight_Up ttZ 1.00215012677 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf Prefire_Weight_Down ttZ 0.997861217148 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_Up ttZ 1.00099596395 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf Prefire_Weight_Down ttZ 0.99891814666 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 Prefire_Weight_Up ttZ 1.01147903444 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 Prefire_Weight_Down ttZ 0.988972449393 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_Up ttZ 1.00556470331 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf Prefire_Weight_Down ttZ 0.994355380089 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 Prefire_Weight_Up ttZ 1.00194674593 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 Prefire_Weight_Down ttZ 0.998188154501 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_Up ttZ 1.0043779975 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 Prefire_Weight_Down ttZ 0.995530916931 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf Prefire_Weight_Up ttZ 1.0067299584 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf Prefire_Weight_Down ttZ 0.993177808365 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_Up ttZ 1.00448574593 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 Prefire_Weight_Down ttZ 0.995454000778 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_Up ttZ 1.00459055717 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 Prefire_Weight_Down ttZ 0.995333265478 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf Prefire_Weight_Up ttZ 0.999999998323 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf Prefire_Weight_Down ttZ 1.00000000168 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PDF_Weight_Up ttZ 1.03158210523 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PDF_Weight_Down ttZ 0.968418047326 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PDF_Weight_Up ttZ 1.01951890659 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PDF_Weight_Down ttZ 0.98048071456 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PDF_Weight_Up ttZ 1.02132544483 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PDF_Weight_Down ttZ 0.978674643936 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PDF_Weight_Up ttZ 1.02258260781 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PDF_Weight_Down ttZ 0.977417533586 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PDF_Weight_Up ttZ 1.0627825566 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PDF_Weight_Down ttZ 0.937217686203 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PDF_Weight_Up ttZ 1.0136760595 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PDF_Weight_Down ttZ 0.986323725816 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PDF_Weight_Up ttZ 1.01587973123 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PDF_Weight_Down ttZ 0.984120442522 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PDF_Weight_Up ttZ 1.02443779775 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PDF_Weight_Down ttZ 0.975562298808 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PDF_Weight_Up ttZ 1.02543141066 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PDF_Weight_Down ttZ 0.974568508375 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PDF_Weight_Up ttZ 1.02078895213 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PDF_Weight_Down ttZ 0.979210984328 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PDF_Weight_Up ttZ 1.03159008806 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PDF_Weight_Down ttZ 0.968409733696 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PDF_Weight_Up ttZ 1.07506989433 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PDF_Weight_Down ttZ 0.924930030998 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PDF_Weight_Up ttZ 1.04065456762 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PDF_Weight_Down ttZ 0.959345381403 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PDF_Weight_Up ttZ 1.04309176848 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PDF_Weight_Down ttZ 0.956908210136 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PDF_Weight_Up ttZ 1.11689630755 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PDF_Weight_Down ttZ 0.8831038685 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_Up ttZ 1.04005740779 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_Down ttZ 0.959942430834 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PDF_Weight_Up ttZ 1.01635730414 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PDF_Weight_Down ttZ 0.983642649036 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PDF_Weight_Up ttZ 1.03088397321 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PDF_Weight_Down ttZ 0.969116327671 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PDF_Weight_Up ttZ 1.01146760552 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PDF_Weight_Down ttZ 0.988532605873 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PDF_Weight_Up ttZ 1.03218196965 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PDF_Weight_Down ttZ 0.967818082059 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PDF_Weight_Up ttZ 1.0276499171 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PDF_Weight_Down ttZ 0.972350170087 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PDF_Weight_Up ttZ 1.00018624682 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PDF_Weight_Down ttZ 0.999813825126 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PDF_Weight_Up ttZ 1.02320579325 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PDF_Weight_Down ttZ 0.976794233076 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PDF_Weight_Up ttZ 1.09383931151 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PDF_Weight_Down ttZ 0.906160639414 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PDF_Weight_Up ttZ 1.02622735802 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PDF_Weight_Down ttZ 0.973772601731 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_Up ttZ 1.03288967018 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_Down ttZ 0.967110631716 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PDF_Weight_Up ttZ 1.01419260977 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PDF_Weight_Down ttZ 0.985807327438 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PDF_Weight_Up ttZ 1.0143554549 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PDF_Weight_Down ttZ 0.985644545893 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PDF_Weight_Up ttZ 1.01211231723 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PDF_Weight_Down ttZ 0.987887337405 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PDF_Weight_Up ttZ 1.11397445495 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PDF_Weight_Down ttZ 0.88602575307 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PDF_Weight_Up ttZ 1.01411743306 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PDF_Weight_Down ttZ 0.985882392924 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PDF_Weight_Up ttZ 1.03689528026 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PDF_Weight_Down ttZ 0.963104758 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PDF_Weight_Up ttZ 1.01486723001 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PDF_Weight_Down ttZ 0.985132655778 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PDF_Weight_Up ttZ 1.01203097772 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PDF_Weight_Down ttZ 0.987969017559 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PDF_Weight_Up ttZ 1.08850555113 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PDF_Weight_Down ttZ 0.911494330577 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PDF_Weight_Up ttZ 1.27299301902 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PDF_Weight_Down ttZ 0.876705663708 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PDF_Weight_Up ttZ 1.02382240028 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PDF_Weight_Down ttZ 0.976177585908 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PDF_Weight_Up ttZ 1.02670696259 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PDF_Weight_Down ttZ 0.973293149088 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PDF_Weight_Up ttZ 1.04003956576 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PDF_Weight_Down ttZ 0.959960233966 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PDF_Weight_Up ttZ 1.03950858775 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PDF_Weight_Down ttZ 0.960491435261 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PDF_Weight_Up ttZ 1.03712673257 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PDF_Weight_Down ttZ 0.962873157296 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PDF_Weight_Up ttZ 1.05212550224 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PDF_Weight_Down ttZ 0.947874655052 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PDF_Weight_Up ttZ 1.02279725809 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PDF_Weight_Down ttZ 0.977202592423 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PDF_Weight_Up ttZ 1.01382409091 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PDF_Weight_Down ttZ 0.986175627784 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PDF_Weight_Up ttZ 1.01578708793 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PDF_Weight_Down ttZ 0.984212671514 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PDF_Weight_Up ttZ 1.0017397437 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PDF_Weight_Down ttZ 0.998260369653 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PDF_Weight_Up ttZ 1.03312137551 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PDF_Weight_Down ttZ 0.966878422226 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PDF_Weight_Up ttZ 1.03532979259 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PDF_Weight_Down ttZ 0.964670666108 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PDF_Weight_Up ttZ 1.03114712647 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PDF_Weight_Down ttZ 0.968853159731 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PDF_Weight_Up ttZ 1.00905977964 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PDF_Weight_Down ttZ 0.990940231614 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PDF_Weight_Up ttZ 1.03992359679 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PDF_Weight_Down ttZ 0.960076480551 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PDF_Weight_Up ttZ 1.02958677263 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PDF_Weight_Down ttZ 0.970412842691 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PDF_Weight_Up ttZ 1.02370294636 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PDF_Weight_Down ttZ 0.976297222051 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PDF_Weight_Up ttZ 1.00333001431 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PDF_Weight_Down ttZ 0.996669993106 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PDF_Weight_Up ttZ 1.01181103454 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PDF_Weight_Down ttZ 0.988188835697 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PDF_Weight_Up ttZ 1.0251241552 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PDF_Weight_Down ttZ 0.974875994432 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PDF_Weight_Up ttZ 1.02606537859 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PDF_Weight_Down ttZ 0.973934464363 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PDF_Weight_Up ttZ 1.04268957516 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PDF_Weight_Down ttZ 0.957310635335 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PDF_Weight_Up ttZ 1.01995231125 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PDF_Weight_Down ttZ 0.980047800724 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PDF_Weight_Up ttZ 1.01906532229 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PDF_Weight_Down ttZ 0.980934654708 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PDF_Weight_Up ttZ 1.01833574254 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PDF_Weight_Down ttZ 0.981664322158 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PDF_Weight_Up ttZ 1.13240839825 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PDF_Weight_Down ttZ 0.867591616707 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PDF_Weight_Up ttZ 1.02584635535 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PDF_Weight_Down ttZ 0.974153274033 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PDF_Weight_Up ttZ 1.0262158863 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PDF_Weight_Down ttZ 0.97378411553 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PDF_Weight_Up ttZ 1.03690229651 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PDF_Weight_Down ttZ 0.963097618272 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_Up ttZ 1.02580440333 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_Down ttZ 0.974195438392 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PDF_Weight_Up ttZ 1.02338208811 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PDF_Weight_Down ttZ 0.976618025511 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PDF_Weight_Up ttZ 1.02795467062 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PDF_Weight_Down ttZ 0.972045351636 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PDF_Weight_Up ttZ 1.04148269749 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PDF_Weight_Down ttZ 0.958517395062 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PDF_Weight_Up ttZ 1.02495467784 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PDF_Weight_Down ttZ 0.975045272917 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PDF_Weight_Up ttZ 1.02210694759 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PDF_Weight_Down ttZ 0.977893267341 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PDF_Weight_Up ttZ 1.01072579234 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PDF_Weight_Down ttZ 0.989273990328 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_Up ttZ 1.04529825832 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_Down ttZ 0.954701580417 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PDF_Weight_Up ttZ 1.04086223757 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PDF_Weight_Down ttZ 0.959137710074 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PDF_Weight_Up ttZ 1.10819158586 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PDF_Weight_Down ttZ 0.891808377128 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PDF_Weight_Up ttZ 1.00949955787 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PDF_Weight_Down ttZ 0.990500565931 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PDF_Weight_Up ttZ 1.01423208933 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PDF_Weight_Down ttZ 0.985767673454 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PDF_Weight_Up ttZ 1.02049121396 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PDF_Weight_Down ttZ 0.979509279815 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_Up ttZ 1.01456838801 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_Down ttZ 0.985431695343 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PDF_Weight_Up ttZ 1.05107335086 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PDF_Weight_Down ttZ 0.948926685744 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_Up ttZ 1.01021322927 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_Down ttZ 0.989786533757 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PDF_Weight_Up ttZ 1.04109245299 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PDF_Weight_Down ttZ 0.958907509889 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PDF_Weight_Up ttZ 1.02152578439 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PDF_Weight_Down ttZ 0.978474367903 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PDF_Weight_Up ttZ 1.03681711165 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PDF_Weight_Down ttZ 0.96318302285 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PDF_Weight_Up ttZ 1.01321034185 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PDF_Weight_Down ttZ 0.986790574605 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PDF_Weight_Up ttZ 1.0203786903 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PDF_Weight_Down ttZ 0.979621281747 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PDF_Weight_Up ttZ 1.00862991405 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PDF_Weight_Down ttZ 0.991370361837 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PDF_Weight_Up ttZ 1.02676521281 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PDF_Weight_Down ttZ 0.973234532513 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PDF_Weight_Up ttZ 1.07170953702 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PDF_Weight_Down ttZ 0.928290559566 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PDF_Weight_Up ttZ 1.02434195016 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PDF_Weight_Down ttZ 0.975657981502 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PDF_Weight_Up ttZ 1.18444767255 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PDF_Weight_Down ttZ 0.815552051804 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_Up ttZ 1.02375580178 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_Down ttZ 0.976244545103 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PDF_Weight_Up ttZ 1.0164477422 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PDF_Weight_Down ttZ 0.983552720886 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PDF_Weight_Up ttZ 1.01849979448 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PDF_Weight_Down ttZ 0.981499929524 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PDF_Weight_Up ttZ 1.10477954827 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PDF_Weight_Down ttZ 0.895220207015 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PDF_Weight_Up ttZ 1.02330585426 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PDF_Weight_Down ttZ 0.976693944164 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PDF_Weight_Up ttZ 1.02903083272 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PDF_Weight_Down ttZ 0.970969667019 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PDF_Weight_Up ttZ 1.01354378765 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PDF_Weight_Down ttZ 0.986456275816 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PDF_Weight_Up ttZ 1.25117569326 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PDF_Weight_Down ttZ 0.964792096147 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PDF_Weight_Up ttZ 1.01093062316 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PDF_Weight_Down ttZ 0.989069248708 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PDF_Weight_Up ttZ 1.01810739312 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PDF_Weight_Down ttZ 0.981892844881 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PDF_Weight_Up ttZ 1.02050037318 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PDF_Weight_Down ttZ 0.979499705734 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PDF_Weight_Up ttZ 1.04792631284 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PDF_Weight_Down ttZ 0.952073636864 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PDF_Weight_Up ttZ 1.02358316912 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PDF_Weight_Down ttZ 0.97641687152 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PDF_Weight_Up ttZ 1.03346835754 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PDF_Weight_Down ttZ 0.966531439721 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PDF_Weight_Up ttZ 1.0357330431 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PDF_Weight_Down ttZ 0.964267184044 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_Up ttZ 1.04004572049 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_Down ttZ 0.959954036205 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PDF_Weight_Up ttZ 1.00398496946 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PDF_Weight_Down ttZ 0.99601499313 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PDF_Weight_Up ttZ 1.0229637586 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PDF_Weight_Down ttZ 0.977036243906 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PDF_Weight_Up ttZ 1.02038732588 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PDF_Weight_Down ttZ 0.979612469647 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_Up ttZ 1.0443978272 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_Down ttZ 0.955602092502 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PDF_Weight_Up ttZ 1.03456435308 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PDF_Weight_Down ttZ 0.965435233564 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PDF_Weight_Up ttZ 1.02256575666 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PDF_Weight_Down ttZ 0.977434197904 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PDF_Weight_Up ttZ 1.01780987815 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PDF_Weight_Down ttZ 0.982189807968 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PDF_Weight_Up ttZ 1.03991612449 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PDF_Weight_Down ttZ 0.960083704743 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PDF_Weight_Up ttZ 1.04330946481 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PDF_Weight_Down ttZ 0.95669078329 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PDF_Weight_Up ttZ 1.01359362523 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PDF_Weight_Down ttZ 0.986406436841 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PDF_Weight_Up ttZ 1.02545107646 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PDF_Weight_Down ttZ 0.974548733825 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PDF_Weight_Up ttZ 1.04726952688 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PDF_Weight_Down ttZ 0.952730687167 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PDF_Weight_Up ttZ 1.0282302854 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PDF_Weight_Down ttZ 0.971769614357 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PDF_Weight_Up ttZ 1.03137970551 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PDF_Weight_Down ttZ 0.968620359967 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PDF_Weight_Up ttZ 1.0350238557 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PDF_Weight_Down ttZ 0.964976270906 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PDF_Weight_Up ttZ 1.01621294328 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PDF_Weight_Down ttZ 0.983787109167 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PDF_Weight_Up ttZ 1.04186550397 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PDF_Weight_Down ttZ 0.958134514091 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PDF_Weight_Up ttZ 1.01317342279 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PDF_Weight_Down ttZ 0.986826630039 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PDF_Weight_Up ttZ 1.02867646465 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PDF_Weight_Down ttZ 0.971323433134 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_Up ttZ 1.01069760198 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PDF_Weight_Down ttZ 0.989302534824 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PDF_Weight_Up ttZ 1.02707740145 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PDF_Weight_Down ttZ 0.972922480244 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PDF_Weight_Up ttZ 1.01070044176 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PDF_Weight_Down ttZ 0.989299295359 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PDF_Weight_Up ttZ 1.02555580216 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PDF_Weight_Down ttZ 0.974444323271 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PDF_Weight_Up ttZ 1.03802659314 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PDF_Weight_Down ttZ 0.961973238614 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_Up ttZ 1.02134988643 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PDF_Weight_Down ttZ 0.978650445116 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PDF_Weight_Up ttZ 1.01425343669 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PDF_Weight_Down ttZ 0.985746723828 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PDF_Weight_Up ttZ 1.02905094753 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PDF_Weight_Down ttZ 0.970949033611 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PDF_Weight_Up ttZ 1.02632784098 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PDF_Weight_Down ttZ 0.973672274887 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PDF_Weight_Up ttZ 1.02287824057 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PDF_Weight_Down ttZ 0.977121752223 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PDF_Weight_Up ttZ 1.01378429177 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PDF_Weight_Down ttZ 0.986215884373 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PDF_Weight_Up ttZ 1.0259442141 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PDF_Weight_Down ttZ 0.974055329879 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PDF_Weight_Up ttZ 1.04307010117 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PDF_Weight_Down ttZ 0.956929783561 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PDF_Weight_Up ttZ 1.01566322135 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PDF_Weight_Down ttZ 0.984336762334 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PDF_Weight_Up ttZ 1.03701559103 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PDF_Weight_Down ttZ 0.962984233424 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PDF_Weight_Up ttZ 1.0215487928 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PDF_Weight_Down ttZ 0.978451680487 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PDF_Weight_Up ttZ 1.01667225081 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PDF_Weight_Down ttZ 0.98332722801 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PDF_Weight_Up ttZ 1.018000633 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PDF_Weight_Down ttZ 0.981999334667 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PDF_Weight_Up ttZ 1.02404962115 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PDF_Weight_Down ttZ 0.975950542647 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PDF_Weight_Up ttZ 1.01899675965 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PDF_Weight_Down ttZ 0.981003266802 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PDF_Weight_Up ttZ 1.02527830831 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PDF_Weight_Down ttZ 0.974721313068 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PDF_Weight_Up ttZ 1.02537376574 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PDF_Weight_Down ttZ 0.974626376722 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PDF_Weight_Up ttZ 1.02406207747 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PDF_Weight_Down ttZ 0.97593818715 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PDF_Weight_Up ttZ 1.01865922608 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PDF_Weight_Down ttZ 0.981340958126 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PDF_Weight_Up ttZ 1.02423417124 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PDF_Weight_Down ttZ 0.975766114885 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PDF_Weight_Up ttZ 1.02388259047 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PDF_Weight_Down ttZ 0.976117254348 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PDF_Weight_Up ttZ 1.00817814387 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PDF_Weight_Down ttZ 0.991822071179 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_Up ttZ 1.01234344371 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PDF_Weight_Down ttZ 0.987656753577 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PDF_Weight_Up ttZ 1.0200851584 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PDF_Weight_Down ttZ 0.979914782283 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PDF_Weight_Up ttZ 1.03008865992 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PDF_Weight_Down ttZ 0.969911418037 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PDF_Weight_Up ttZ 1.04864219404 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PDF_Weight_Down ttZ 0.951357781708 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PDF_Weight_Up ttZ 1.01368811847 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PDF_Weight_Down ttZ 0.986311922683 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PDF_Weight_Up ttZ 1.04985027968 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PDF_Weight_Down ttZ 0.95014983505 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PDF_Weight_Up ttZ 1.0043635152 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PDF_Weight_Down ttZ 0.995636019928 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PDF_Weight_Up ttZ 1.01685904864 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PDF_Weight_Down ttZ 0.983141013555 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PDF_Weight_Up ttZ 1.01627727713 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PDF_Weight_Down ttZ 0.983722545651 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PDF_Weight_Up ttZ 1.09551641059 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PDF_Weight_Down ttZ 0.904483615086 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PDF_Weight_Up ttZ 1.03537518128 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PDF_Weight_Down ttZ 0.964624761025 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PDF_Weight_Up ttZ 1.05435262146 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PDF_Weight_Down ttZ 0.945647378279 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PDF_Weight_Up ttZ 1.11473616963 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PDF_Weight_Down ttZ 0.885263722152 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PDF_Weight_Up ttZ 1.03442293971 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PDF_Weight_Down ttZ 0.965577034455 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PDF_Weight_Up ttZ 1.02544619314 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PDF_Weight_Down ttZ 0.974553653686 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PDF_Weight_Up ttZ 1.01302495259 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PDF_Weight_Down ttZ 0.986975165228 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PDF_Weight_Up ttZ 1.02871974995 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PDF_Weight_Down ttZ 0.971280644505 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PDF_Weight_Up ttZ 1.00887781798 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PDF_Weight_Down ttZ 0.991122040752 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PDF_Weight_Up ttZ 1.01994945188 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PDF_Weight_Down ttZ 0.980050169125 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PDF_Weight_Up ttZ 1.065045241 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PDF_Weight_Down ttZ 0.934954645183 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PDF_Weight_Up ttZ 1.00978097094 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PDF_Weight_Down ttZ 0.990219139581 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PDF_Weight_Up ttZ 1.01763898488 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PDF_Weight_Down ttZ 0.982360762658 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PDF_Weight_Up ttZ 1.02198427545 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PDF_Weight_Down ttZ 0.978015814723 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PDF_Weight_Up ttZ 1.0302818754 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PDF_Weight_Down ttZ 0.969718085088 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PDF_Weight_Up ttZ 1.01755828949 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PDF_Weight_Down ttZ 0.982441713752 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PDF_Weight_Up ttZ 1.01626561491 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PDF_Weight_Down ttZ 0.983733811061 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PDF_Weight_Up ttZ 1.03029239625 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PDF_Weight_Down ttZ 0.969707362752 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PDF_Weight_Up ttZ 1.03665694412 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PDF_Weight_Down ttZ 0.963343014215 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PDF_Weight_Up ttZ 1.0146893139 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PDF_Weight_Down ttZ 0.985310539681 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PDF_Weight_Up ttZ 1.0074273979 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PDF_Weight_Down ttZ 0.992573580609 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 JES_Up ttZ 1.01431348403 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 JES_Down ttZ 0.992829741607 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 JES_Up ttZ 1.05307904998 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 JES_Down ttZ 0.941184890913 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_Up ttZ 1.23504794338 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_Down ttZ 0.969365349497 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf JES_Up ttZ 1.06637687624 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf JES_Down ttZ 0.996023592802 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 JES_Up ttZ 1.13780489682 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 JES_Down ttZ 0.800614458192 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_Up ttZ 1.05800488076 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_Down ttZ 0.950153955538 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Up ttZ 1.06058861371 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Down ttZ 0.912926490162 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 JES_Up ttZ 1.15025937759 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 JES_Down ttZ 0.99478717931 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_Up ttZ 1.01154595425 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_Down ttZ 0.97818867713 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_Up ttZ 1.17217164202 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_Down ttZ 0.944110580197 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 JES_Up ttZ 0.829139907735 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 JES_Down ttZ 1.33932247497 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Up ttZ 1.15977767864 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Down ttZ 0.846294226847 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf JES_Up ttZ 1.05734158354 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf JES_Down ttZ 0.984990871175 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 JES_Up ttZ 0.910896943681 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 JES_Down ttZ 1.14705677056 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf JES_Up ttZ 1.01314666504 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf JES_Down ttZ 0.918529460431 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_Up ttZ 1.00932871999 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_Down ttZ 0.999882068391 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_Up ttZ 1.04458506763 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_Down ttZ 0.953433180714 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 JES_Up ttZ 0.99698799509 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 JES_Down ttZ 1.04172201018 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 JES_Up ttZ 1.07980041589 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 JES_Down ttZ 0.912966975769 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 JES_Up ttZ 1.06089476613 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 JES_Down ttZ 0.899843715108 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf JES_Up ttZ 1.34058218867 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf JES_Down ttZ 0.673447683344 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_Up ttZ 1.05869006419 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_Down ttZ 0.955306565522 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf JES_Up ttZ 1.06118100349 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf JES_Down ttZ 0.922137106787 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 JES_Up ttZ 1.32874024077 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 JES_Down ttZ 0.665412313481 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 JES_Up ttZ 1.02240082159 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 JES_Down ttZ 0.906958662181 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf JES_Up ttZ 1.12217545619 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf JES_Down ttZ 0.953075953455 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_Up ttZ 1.05230969439 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_Down ttZ 0.9502657839 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 JES_Up ttZ 1.24754931547 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 JES_Down ttZ 0.901649301284 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf JES_Up ttZ 1.01715588074 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf JES_Down ttZ 0.877456635025 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf JES_Up ttZ 0.903592001507 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf JES_Down ttZ 1.14006210313 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf JES_Up ttZ 1.13429232904 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf JES_Down ttZ 0.803065990606 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_Up ttZ 1.03487948997 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_Down ttZ 0.952719108057 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_Up ttZ 1.11405612412 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_Down ttZ 0.922970734929 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 JES_Up ttZ 0.821714810468 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 JES_Down ttZ 1.2812793244 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 JES_Up ttZ 1.27904499333 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 JES_Down ttZ 0.725103760089 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_Up ttZ 0.988160477626 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_Down ttZ 1.16856263449 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf JES_Up ttZ 0.841884771992 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf JES_Down ttZ 1.18119607459 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_Up ttZ 1.06004202533 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_Down ttZ 0.988552639871 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 JES_Up ttZ 1.09192273704 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 JES_Down ttZ 0.988609012523 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_Up ttZ 1.01081722391 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_Down ttZ 0.872777814256 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf JES_Up ttZ 0.960513434373 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf JES_Down ttZ 1.28611697089 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 JES_Up ttZ 1.04104842811 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 JES_Down ttZ 0.68960243486 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf JES_Up ttZ 1.05016743141 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf JES_Down ttZ 0.985962034878 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 JES_Up ttZ 1.07694706332 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 JES_Down ttZ 0.906743815263 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 JES_Up ttZ 1.0563176142 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 JES_Down ttZ 0.944423439724 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf JES_Up ttZ 0.937031878261 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf JES_Down ttZ 1.17134758447 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_Up ttZ 1.06660587543 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_Down ttZ 0.832882115241 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 JES_Up ttZ 1.07866747658 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 JES_Down ttZ 0.943948971326 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf JES_Up ttZ 1.02580992074 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf JES_Down ttZ 0.8811118618 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 JES_Up ttZ 1.10160253509 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 JES_Down ttZ 0.96988366084 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 JES_Up ttZ 1.28863138047 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 JES_Down ttZ 0.582292863524 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_Up ttZ 0.998448141201 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_Down ttZ 1.21512471031 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 JES_Up ttZ 1.09366584574 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 JES_Down ttZ 0.841538744908 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 JES_Up ttZ 1.21270998752 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 JES_Down ttZ 0.900594525404 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf JES_Up ttZ 1.72257478716 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf JES_Down ttZ 0.999999993874 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 JES_Up ttZ 1.03425718327 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 JES_Down ttZ 0.959708757855 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 JES_Up ttZ 1.01175354097 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 JES_Down ttZ 0.998515895152 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf JES_Up ttZ 1.06388129252 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf JES_Down ttZ 0.952790467271 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 JES_Up ttZ 1.19737898211 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 JES_Down ttZ 0.83266803761 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 JES_Up ttZ 1.07360805546 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 JES_Down ttZ 0.903922840459 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf JES_Up ttZ 1.06943629088 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf JES_Down ttZ 0.949422209524 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 JES_Up ttZ 0.675483358899 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 JES_Down ttZ 1.51549907828 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_Up ttZ 1.01202980547 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_Down ttZ 0.914029897201 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 JES_Up ttZ 1.95852074606 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 JES_Down ttZ 0.782393826449 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_Up ttZ 1.11277827168 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_Down ttZ 0.993282062713 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_Up ttZ 1.08054204722 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_Down ttZ 0.877266068393 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 JES_Up ttZ 0.955739772111 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 JES_Down ttZ 1.28685514716 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 JES_Up ttZ 0.97281646059 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 JES_Down ttZ 1.02938088877 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 JES_Up ttZ 1.05047135723 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 JES_Down ttZ 0.751261358017 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 JES_Up ttZ 1.10143300757 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 JES_Down ttZ 0.926234809175 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 JES_Up ttZ 0.728946450017 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 JES_Down ttZ 1.33026552196 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_Up ttZ 1.03768112322 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_Down ttZ 0.933805646586 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_Up ttZ 1.01113222383 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_Down ttZ 0.95534250181 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_Up ttZ 1.04776696981 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_Down ttZ 0.950787239018 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf JES_Up ttZ 0.999221882269 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf JES_Down ttZ 1.05213405591 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf JES_Up ttZ 1.28374545445 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf JES_Down ttZ 0.903733934934 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 JES_Up ttZ 1.54654343311 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 JES_Down ttZ 0.522238449145 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 JES_Up ttZ 0.997014189824 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 JES_Down ttZ 1.00706857284 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_Up ttZ 1.10691826397 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_Down ttZ 0.997291473631 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_Up ttZ 1.0372252756 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_Down ttZ 0.974722919561 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_Up ttZ 1.1711867987 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_Down ttZ 0.869148562393 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf JES_Up ttZ 1.01930224577 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf JES_Down ttZ 0.991858041616 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf JES_Up ttZ 1.0958163421 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf JES_Down ttZ 0.982155403601 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf JES_Up ttZ 1.11362226213 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf JES_Down ttZ 0.990192520914 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Up ttZ 1.09370510719 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Down ttZ 0.890124826884 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 JES_Up ttZ 0.991807781942 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 JES_Down ttZ 1.11534370928 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf JES_Up ttZ 1.13436193052 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf JES_Down ttZ 0.958138872589 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf JES_Up ttZ 1.1205872128 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf JES_Down ttZ 0.936768536509 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf JES_Up ttZ 1.77517367573 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf JES_Down ttZ 0.683441277977 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 JES_Up ttZ 1.12690058042 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 JES_Down ttZ 0.971193830027 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf JES_Up ttZ 1.20205626995 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf JES_Down ttZ 0.826744456562 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 JES_Up ttZ 1.13239469585 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 JES_Down ttZ 0.906295231883 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 JES_Up ttZ 1.01071404919 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 JES_Down ttZ 0.956677412293 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 JES_Up ttZ 1.08666030753 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 JES_Down ttZ 0.899746761045 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf JES_Up ttZ 1.92527285163 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf JES_Down ttZ 0.486816528627 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 JES_Up ttZ 1.00696666307 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 JES_Down ttZ 0.993301526374 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf JES_Up ttZ 1.08271477472 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf JES_Down ttZ 0.943454663647 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf JES_Up ttZ 1.0126233099 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf JES_Down ttZ 0.889350342791 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf JES_Up ttZ 1.25377893486 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf JES_Down ttZ 0.793423807699 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf JES_Up ttZ 0.967355993735 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf JES_Down ttZ 1.04979089352 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 JES_Up ttZ 0.980205133706 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 JES_Down ttZ 1.05571633239 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 JES_Up ttZ 0.957931273678 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 JES_Down ttZ 1.07685866899 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf JES_Up ttZ 1.18679992527 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf JES_Down ttZ 0.975397841362 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 JES_Up ttZ 1.02964410764 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 JES_Down ttZ 0.995310051092 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf JES_Up ttZ 1.09478243851 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf JES_Down ttZ 0.979696127042 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf JES_Up ttZ 1.13132348737 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf JES_Down ttZ 0.992537166683 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_Up ttZ 1.05081841963 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_Down ttZ 0.989707521806 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 JES_Up ttZ 1.22296645961 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 JES_Down ttZ 0.621015393577 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 JES_Up ttZ 1.48252977574 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 JES_Down ttZ 0.519837419877 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 JES_Up ttZ 1.35051521142 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 JES_Down ttZ 0.781093601324 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 JES_Up ttZ 0.977529658404 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 JES_Down ttZ 1.14951649072 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_Up ttZ 1.05205102956 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_Down ttZ 0.974112485509 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 JES_Up ttZ 1.00864066381 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 JES_Down ttZ 0.987301777385 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_Up ttZ 1.06905350691 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_Down ttZ 0.95666318977 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf JES_Up ttZ 1.40322197845 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf JES_Down ttZ 0.751427649165 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_Up ttZ 0.968216087626 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_Down ttZ 1.05794730763 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 JES_Up ttZ 1.04711642385 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 JES_Down ttZ 0.900194501355 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 JES_Up ttZ 1.08568016612 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 JES_Down ttZ 0.922378868871 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf JES_Up ttZ 1.03500947002 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf JES_Down ttZ 0.972930744752 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_Up ttZ 1.0270316917 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_Down ttZ 0.948184406784 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf JES_Up ttZ 1.07863157749 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf JES_Down ttZ 0.947828239023 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf JES_Up ttZ 1.06254657248 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf JES_Down ttZ 0.847990199339 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 JES_Up ttZ 1.07357308533 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 JES_Down ttZ 0.995794784838 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf JES_Up ttZ 1.00731250528 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf JES_Down ttZ 0.996928594581 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Up ttZ 1.14040242485 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Down ttZ 0.93459538133 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 JES_Up ttZ 1.2813608934 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 JES_Down ttZ 0.753216738501 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf JES_Up ttZ 1.07022905801 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf JES_Down ttZ 0.964862261438 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_Up ttZ 1.03473635643 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_Down ttZ 0.937460604286 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_Up ttZ 1.06863356958 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_Down ttZ 0.91741035981 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf JES_Up ttZ 1.00873285229 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf JES_Down ttZ 0.888479955035 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 JES_Up ttZ 1.22223721087 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 JES_Down ttZ 0.916731839134 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 JES_Up ttZ 1.1335336464 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 JES_Down ttZ 0.969026538807 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Up ttZ 1.04380869603 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Down ttZ 0.919458810008 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf JES_Up ttZ 1.17163848449 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf JES_Down ttZ 0.999999978611 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf JES_Up ttZ 1.09628787535 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf JES_Down ttZ 0.864527872978 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_Up ttZ 2.05564260378 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_Down ttZ 0.433767202318 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 JES_Up ttZ 1.07053215315 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 JES_Down ttZ 0.989007028478 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 JES_Up ttZ 1.02205986051 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 JES_Down ttZ 0.963002077586 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf JES_Up ttZ 1.03063875299 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf JES_Down ttZ 0.974175665803 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_Up ttZ 1.1479109334 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_Down ttZ 0.950381533579 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_Up ttZ 1.01839679769 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_Down ttZ 0.976462045458 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 JES_Up ttZ 1.00395568758 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 JES_Down ttZ 0.976405181811 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Up ttZ 1.1110638408 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Down ttZ 0.94706124593 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 JES_Up ttZ 1.40094221078 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 JES_Down ttZ 0.98890284251 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 JES_Up ttZ 1.04338219695 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 JES_Down ttZ 0.990153337544 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 JES_Up ttZ 1.06242097541 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 JES_Down ttZ 0.942552519672 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_Up ttZ 1.02872500854 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_Down ttZ 0.985731852336 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_Up ttZ 0.798203967456 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_Down ttZ 1.31487088422 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 JES_Up ttZ 1.08505620446 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 JES_Down ttZ 0.841524307301 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_Up ttZ 0.935638041122 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_Down ttZ 1.118870556 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Up ttZ 1.11584626461 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Down ttZ 0.869382588949 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 JES_Up ttZ 1.00263356286 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 JES_Down ttZ 0.989722156478 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_Up ttZ 1.19031960771 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_Down ttZ 0.782524130531 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 JES_Up ttZ 1.12553485337 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 JES_Down ttZ 0.884122307815 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 JES_Up ttZ 1.12535525241 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 JES_Down ttZ 0.852049865624 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 JES_Up ttZ 1.0835294105 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 JES_Down ttZ 0.650531231895 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 JES_Up ttZ 1.07101404181 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 JES_Down ttZ 0.955396264193 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf JES_Up ttZ 0.985778656709 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf JES_Down ttZ 1.02695930664 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 JES_Up ttZ 0.941167277691 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 JES_Down ttZ 1.22900670713 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_Up ttZ 1.00165460149 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_Down ttZ 0.992652715969 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 JES_Up ttZ 1.30577944547 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 JES_Down ttZ 0.966559196132 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 JES_Up ttZ 1.12082995379 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 JES_Down ttZ 0.95174577494 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_Up ttZ 1.38931704744 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_Down ttZ 0.52675456764 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_Up ttZ 1.06536238395 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_Down ttZ 0.803589092613 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf JES_Up ttZ 1.03071032271 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf JES_Down ttZ 0.888962935395 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 JES_Up ttZ 1.25743138561 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 JES_Down ttZ 0.811439480472 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 JES_Up ttZ 1.14252018116 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 JES_Down ttZ 0.9645694143 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_Up ttZ 0.991234556827 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_Down ttZ 1.05152142701 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 JES_Up ttZ 1.00222891277 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 JES_Down ttZ 0.94672424102 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 JES_Up ttZ 1.24598389294 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 JES_Down ttZ 0.602681000045 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 JES_Up ttZ 1.70572313483 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 JES_Down ttZ 0.783544925591 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 JES_Up ttZ 1.06765160316 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 JES_Down ttZ 0.957466555598 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 JES_Up ttZ 1.0383690922 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 JES_Down ttZ 0.881348254459 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf JES_Up ttZ 0.894044441528 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf JES_Down ttZ 1.19868984256 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf JES_Up ttZ 1.09103773668 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf JES_Down ttZ 0.904609742964 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 JES_Up ttZ 1.04550576819 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 JES_Down ttZ 0.998843222251 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf JES_Up ttZ 0.854498823537 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf JES_Down ttZ 1.18866143344 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 JES_Up ttZ 1.11761324914 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 JES_Down ttZ 0.966221332804 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 JES_Up ttZ 1.04447682723 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 JES_Down ttZ 0.949836194459 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf JES_Up ttZ 1.04221031239 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf JES_Down ttZ 0.975482538104 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 JES_Up ttZ 1.08260629409 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 JES_Down ttZ 0.979959540211 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Up ttZ 1.1222687215 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Down ttZ 0.87776893752 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf JES_Up ttZ 2.61563781077 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf JES_Down ttZ 0.77628346852 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 metres_Up ttZ 1.00795727545 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 metres_Down ttZ 0.986088535961 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 metres_Up ttZ 1.00103423176 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 metres_Down ttZ 0.998368419895 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 metres_Up ttZ 0.996578943099 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 metres_Down ttZ 1.02315063863 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf metres_Up ttZ 0.990083084454 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf metres_Down ttZ 1.01642040888 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 metres_Up ttZ 1.10938603782 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 metres_Down ttZ 0.976668518454 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_Up ttZ 1.00661023812 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_Down ttZ 0.998520029198 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Up ttZ 0.999201617916 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Down ttZ 1.01242269691 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 metres_Up ttZ 1.05895009788 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 metres_Down ttZ 0.992769606232 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf metres_Up ttZ 1.01357060186 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf metres_Down ttZ 0.982932118352 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_Up ttZ 0.968739462909 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_Down ttZ 1.03584336426 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 metres_Up ttZ 1.00000001735 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 metres_Down ttZ 0.724718309749 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Up ttZ 1.01443508908 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Down ttZ 0.950444959655 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf metres_Up ttZ 1.09547733987 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf metres_Down ttZ 0.999999974509 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 metres_Up ttZ 1.03106949757 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 metres_Down ttZ 0.926240475043 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf metres_Up ttZ 1.06025655347 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf metres_Down ttZ 0.956618967358 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_Up ttZ 0.968938568277 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_Down ttZ 1.06695477199 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 metres_Up ttZ 0.980103793841 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 metres_Down ttZ 1.02245750444 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 metres_Up ttZ 1.01595798398 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 metres_Down ttZ 0.988027241864 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 metres_Up ttZ 1.01033111857 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 metres_Down ttZ 0.996528800065 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 metres_Up ttZ 1.01009225837 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 metres_Down ttZ 0.990466155917 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf metres_Up ttZ 1.17538346121 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf metres_Down ttZ 0.8348011539 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 metres_Up ttZ 1.02783651994 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 metres_Down ttZ 0.988808019795 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf metres_Up ttZ 0.995412523626 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf metres_Down ttZ 1.01285007328 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 metres_Up ttZ 0.930782660419 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 metres_Down ttZ 1.1682910091 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 metres_Up ttZ 0.989437995687 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 metres_Down ttZ 1.02210071816 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf metres_Up ttZ 1.0050391574 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf metres_Down ttZ 0.975936262675 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_Up ttZ 1.00316450083 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 metres_Down ttZ 0.999187750296 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 metres_Up ttZ 1.18979887403 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 metres_Down ttZ 0.999999999604 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf metres_Up ttZ 1.04885783449 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf metres_Down ttZ 0.993899575326 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf metres_Up ttZ 1.2953370077 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf metres_Down ttZ 0.999999993138 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf metres_Up ttZ 1.01066933674 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf metres_Down ttZ 0.972767901322 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_Up ttZ 1.01152886532 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_Down ttZ 0.985818535067 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 metres_Up ttZ 1.02138899207 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 metres_Down ttZ 0.991835571246 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 metres_Up ttZ 0.999999997642 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 metres_Down ttZ 1.17792430879 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 metres_Up ttZ 0.925378833405 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 metres_Down ttZ 1.15981890912 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 metres_Up ttZ 0.92554675167 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 metres_Down ttZ 1.16055781812 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf metres_Up ttZ 1.02815394277 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf metres_Down ttZ 0.972222892961 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_Up ttZ 1.03944250245 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_Down ttZ 0.977466222021 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 metres_Up ttZ 1.02099408404 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 metres_Down ttZ 0.925491364158 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf metres_Up ttZ 1.0000000115 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf metres_Down ttZ 0.948951244271 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf metres_Up ttZ 1.00000003388 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf metres_Down ttZ 0.999999966116 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 metres_Up ttZ 1.07071622379 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 metres_Down ttZ 0.854397177794 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf metres_Up ttZ 1.02729396759 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf metres_Down ttZ 0.985495486054 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 metres_Up ttZ 1.00511404224 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 metres_Down ttZ 0.989654399251 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 metres_Up ttZ 0.998267850183 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 metres_Down ttZ 1.00915479115 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf metres_Up ttZ 1.05709851282 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf metres_Down ttZ 0.985886586865 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 metres_Up ttZ 0.983795337715 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 metres_Down ttZ 1.08901916252 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 metres_Up ttZ 1.02286859373 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 metres_Down ttZ 0.970772926866 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf metres_Up ttZ 1.02614272462 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf metres_Down ttZ 0.981839157627 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 metres_Up ttZ 1.08795841391 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 metres_Down ttZ 0.96276521091 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 metres_Up ttZ 1.28863138047 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 metres_Down ttZ 0.999999964209 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_Up ttZ 1.11523062933 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_Down ttZ 0.990243401364 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 metres_Up ttZ 1.00246733783 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 metres_Down ttZ 0.898215822956 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 metres_Up ttZ 1.02822556729 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 metres_Down ttZ 0.980232388295 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf metres_Up ttZ 0.999999993874 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf metres_Down ttZ 1.00000000613 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 metres_Up ttZ 1.00023928873 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 metres_Down ttZ 0.984769520703 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 metres_Up ttZ 1.02665808044 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 metres_Down ttZ 0.987332279791 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf metres_Up ttZ 0.996821701316 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf metres_Down ttZ 1.00852563521 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 metres_Up ttZ 1.14867793021 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 metres_Down ttZ 0.977138772156 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 metres_Up ttZ 1.00428039554 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 metres_Down ttZ 0.997018467666 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf metres_Up ttZ 1.02696020016 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf metres_Down ttZ 0.99333805858 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 metres_Up ttZ 0.941932266611 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 metres_Down ttZ 1.21274275858 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_Up ttZ 1.0094527109 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_Down ttZ 0.977171354149 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 metres_Up ttZ 1.77532745023 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 metres_Down ttZ 0.731766119982 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_Up ttZ 1.00677645524 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 metres_Down ttZ 0.956821291317 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_Up ttZ 0.995636870823 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_Down ttZ 1.00522936247 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 metres_Up ttZ 0.9137688557 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 metres_Down ttZ 1.101183421 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 metres_Up ttZ 1.01543265648 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 metres_Down ttZ 0.95430168281 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 metres_Up ttZ 0.93936254434 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 metres_Down ttZ 1.14137590968 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 metres_Up ttZ 1.01133993452 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 metres_Down ttZ 0.987307207995 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 metres_Up ttZ 1.07929724654 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 metres_Down ttZ 0.894483436531 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_Up ttZ 1.00225090019 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf metres_Down ttZ 0.998320497621 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_Up ttZ 1.00496011376 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_Down ttZ 0.995485613722 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 metres_Up ttZ 1.14447660492 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 metres_Down ttZ 0.916620670291 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf metres_Up ttZ 1.00242018151 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf metres_Down ttZ 0.918892003328 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf metres_Up ttZ 1.10008864548 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf metres_Down ttZ 0.984641107492 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 metres_Up ttZ 1.08755938001 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 metres_Down ttZ 0.957393097143 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 metres_Up ttZ 1.00803354934 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 metres_Down ttZ 0.98971724394 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_Up ttZ 1.11709358026 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 metres_Down ttZ 0.963356504479 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_Up ttZ 1.05073228458 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 metres_Down ttZ 0.96160824471 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_Up ttZ 0.993795226259 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 metres_Down ttZ 1.03102391404 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf metres_Up ttZ 1.02849353799 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf metres_Down ttZ 0.999999973421 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf metres_Up ttZ 1.0090574641 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf metres_Down ttZ 0.991708857657 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf metres_Up ttZ 1.07589025987 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf metres_Down ttZ 0.999999988277 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Up ttZ 1.00119502811 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 metres_Down ttZ 0.995930651341 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 metres_Up ttZ 0.987650079739 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 metres_Down ttZ 1.02571125968 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf metres_Up ttZ 0.991244533022 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf metres_Down ttZ 1.02515224965 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf metres_Up ttZ 1.01653031757 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf metres_Down ttZ 0.997619855033 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf metres_Up ttZ 1.00000000728 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf metres_Down ttZ 0.999999992724 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 metres_Up ttZ 1.01964270024 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 metres_Down ttZ 0.984447620674 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf metres_Up ttZ 1.06213943935 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf metres_Down ttZ 0.917610828459 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 metres_Up ttZ 0.99569380513 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 metres_Down ttZ 1.00737234265 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 metres_Up ttZ 1.01719836582 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 metres_Down ttZ 0.994541539217 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 metres_Up ttZ 0.988294801447 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 metres_Down ttZ 1.05408434494 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf metres_Up ttZ 0.999999965356 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf metres_Down ttZ 1.00000003464 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 metres_Up ttZ 1.07363941507 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 metres_Down ttZ 0.965717810792 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf metres_Up ttZ 1.01631717988 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf metres_Down ttZ 0.990182017858 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf metres_Up ttZ 1.08408639462 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf metres_Down ttZ 0.97424673039 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf metres_Up ttZ 1.00000002111 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf metres_Down ttZ 0.999999978889 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf metres_Up ttZ 1.01273198561 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf metres_Down ttZ 0.962745233485 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 metres_Up ttZ 1.01357886259 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 metres_Down ttZ 0.917542756432 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 metres_Up ttZ 0.959688753178 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 metres_Down ttZ 1.06349263886 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf metres_Up ttZ 1.02058519284 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf metres_Down ttZ 0.999096399476 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 metres_Up ttZ 1.00384500997 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 metres_Down ttZ 0.999454734161 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf metres_Up ttZ 1.00704801482 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf metres_Down ttZ 0.988578601757 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf metres_Up ttZ 1.07395303515 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf metres_Down ttZ 0.995501191765 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_Up ttZ 1.0129905971 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf metres_Down ttZ 0.996319291503 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 metres_Up ttZ 1.19680616114 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 metres_Down ttZ 0.767709873608 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 metres_Up ttZ 1.20321303299 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 metres_Down ttZ 0.797868166519 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 metres_Up ttZ 1.08696187953 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 metres_Down ttZ 0.971211934912 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 metres_Up ttZ 0.958882934683 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 metres_Down ttZ 1.05888051255 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 metres_Up ttZ 1.1669220227 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 metres_Down ttZ 0.950592527976 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 metres_Up ttZ 1.00860769862 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 metres_Down ttZ 0.996702157264 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 metres_Up ttZ 1.11808078386 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 metres_Down ttZ 0.997534021708 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf metres_Up ttZ 1.00701003479 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf metres_Down ttZ 0.996061105413 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 metres_Up ttZ 1.04369422062 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 metres_Down ttZ 0.920291949541 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 metres_Up ttZ 1.0587632212 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 metres_Down ttZ 0.971772053101 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 metres_Up ttZ 1.01778588536 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 metres_Down ttZ 0.986304323825 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf metres_Up ttZ 1.02471347211 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf metres_Down ttZ 0.98170526862 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_Up ttZ 1.00808996974 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_Down ttZ 0.974905440113 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf metres_Up ttZ 1.01551994228 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf metres_Down ttZ 0.989223721224 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf metres_Up ttZ 0.994216617805 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf metres_Down ttZ 1.04434607185 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 metres_Up ttZ 1.05026709946 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 metres_Down ttZ 0.971032412192 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf metres_Up ttZ 1.00452171161 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf metres_Down ttZ 0.993231736584 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Up ttZ 1.04196247465 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf metres_Down ttZ 0.985040956443 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 metres_Up ttZ 1.03240713033 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 metres_Down ttZ 0.973718304495 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf metres_Up ttZ 1.00526564816 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf metres_Down ttZ 0.98019583642 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 metres_Up ttZ 0.986987374277 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 metres_Down ttZ 1.05694048128 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_Up ttZ 1.0035294586 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 metres_Down ttZ 0.996736782169 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf metres_Up ttZ 0.993171062391 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf metres_Down ttZ 1.0224186709 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 metres_Up ttZ 0.901142599844 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 metres_Down ttZ 1.12455212585 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 metres_Up ttZ 1.05570871851 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 metres_Down ttZ 0.957787907016 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Up ttZ 1.01184349021 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Down ttZ 0.992435242828 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf metres_Up ttZ 1.17163848449 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf metres_Down ttZ 0.859451454575 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf metres_Up ttZ 0.974455483229 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf metres_Down ttZ 1.03155290496 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 metres_Up ttZ 1.2623319241 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 metres_Down ttZ 0.318743413812 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 metres_Up ttZ 1.03755889298 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 metres_Down ttZ 0.997807432333 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 metres_Up ttZ 1.00337919271 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 metres_Down ttZ 0.988989627285 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf metres_Up ttZ 1.00635991329 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf metres_Down ttZ 0.992984491916 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 metres_Up ttZ 0.97938805913 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 metres_Down ttZ 1.02751022938 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_Up ttZ 1.03140002564 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_Down ttZ 0.980778119096 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 metres_Up ttZ 1.00016074225 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 metres_Down ttZ 0.999547523167 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Up ttZ 1.00804993222 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Down ttZ 0.992897391213 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 metres_Up ttZ 1.23002292589 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 metres_Down ttZ 0.920566759736 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 metres_Up ttZ 1.01402640137 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 metres_Down ttZ 0.999286318916 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 metres_Up ttZ 0.998266935176 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 metres_Down ttZ 1.00616608179 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_Up ttZ 1.00539327143 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 metres_Down ttZ 0.996927518571 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_Up ttZ 1.00764248688 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 metres_Down ttZ 0.828524914927 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 metres_Up ttZ 0.981440524031 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 metres_Down ttZ 1.03032486146 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 metres_Up ttZ 1.198549412 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 metres_Down ttZ 0.809432907035 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Up ttZ 1.05260920848 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 metres_Down ttZ 0.975024204932 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 metres_Up ttZ 0.995347939414 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 metres_Down ttZ 1.02200273222 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 metres_Up ttZ 1.06328709389 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 metres_Down ttZ 0.862719377308 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 metres_Up ttZ 1.15248451442 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 metres_Down ttZ 0.951756121759 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 metres_Up ttZ 1.02882282208 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 metres_Down ttZ 0.905729411425 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 metres_Up ttZ 0.93222006858 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 metres_Down ttZ 1.52723176523 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 metres_Up ttZ 0.995910231493 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 metres_Down ttZ 1.03934433046 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf metres_Up ttZ 1.02433026213 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf metres_Down ttZ 0.942843489475 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 metres_Up ttZ 1.09142432558 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 metres_Down ttZ 0.956380751286 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 metres_Up ttZ 1.12840557246 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 metres_Down ttZ 0.961024207891 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 metres_Up ttZ 1.23335529401 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 metres_Down ttZ 0.882384229475 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 metres_Up ttZ 0.99060643288 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 metres_Down ttZ 1.01544250841 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 metres_Up ttZ 1.07785926158 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 metres_Down ttZ 0.851129757917 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_Up ttZ 0.999999971152 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf metres_Down ttZ 1.00621762188 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf metres_Up ttZ 1.01353451342 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf metres_Down ttZ 0.936961976633 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 metres_Up ttZ 1.04862861218 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 metres_Down ttZ 0.938393799885 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 metres_Up ttZ 0.9214575392 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 metres_Down ttZ 1.08079172004 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 metres_Up ttZ 1.10592250525 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 metres_Down ttZ 0.983168730399 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 metres_Up ttZ 0.992298994095 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 metres_Down ttZ 1.01229483656 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 metres_Up ttZ 0.804108652494 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 metres_Down ttZ 1.20763663855 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 metres_Up ttZ 1.17518673663 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 metres_Down ttZ 0.889727723068 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 metres_Up ttZ 1.01050408319 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 metres_Down ttZ 0.998678125022 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 metres_Up ttZ 0.901191465116 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 metres_Down ttZ 1.21502591609 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf metres_Up ttZ 1.41185857172 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf metres_Down ttZ 0.999999980372 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf metres_Up ttZ 1.01686152248 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf metres_Down ttZ 0.999698437618 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 metres_Up ttZ 0.932932751406 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 metres_Down ttZ 1.13596098781 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf metres_Up ttZ 0.997660989269 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf metres_Down ttZ 1.02238940665 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 metres_Up ttZ 1.05842281959 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 metres_Down ttZ 0.942199362524 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 metres_Up ttZ 1.003890277 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 metres_Down ttZ 0.996119295088 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf metres_Up ttZ 1.02258982229 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf metres_Down ttZ 0.983887803582 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 metres_Up ttZ 1.03705957478 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 metres_Down ttZ 0.987011883402 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Up ttZ 1.00049538806 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 metres_Down ttZ 0.965738244151 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf metres_Up ttZ 0.999999998323 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf metres_Down ttZ 1.00000000168 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ivfunc_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ivfunc_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_Up ttZ 1.00000000129 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_Down ttZ 0.999999998708 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ivfunc_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_Down ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Up ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ivfunc_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_Up ttZ 1.00000001466 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_Down ttZ 0.99999998534 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ivfunc_Up ttZ 1.00000001735 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ivfunc_Down ttZ 0.999999982645 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Up ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ivfunc_Up ttZ 0.999999974509 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ivfunc_Down ttZ 1.00000002549 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_Up ttZ 1.00000001415 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_Down ttZ 0.999999985855 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ivfunc_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ivfunc_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ivfunc_Up ttZ 0.999999968546 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ivfunc_Down ttZ 1.00000003145 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_Up ttZ 1.00483434437 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_Down ttZ 0.99516566022 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ivfunc_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ivfunc_Up ttZ 1.0000000004 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ivfunc_Down ttZ 0.999999999604 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ivfunc_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ivfunc_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ivfunc_Down ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_Up ttZ 1.00000004901 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_Down ttZ 0.999999950986 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ivfunc_Up ttZ 1.04889461089 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ivfunc_Down ttZ 0.951105476195 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ivfunc_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_Up ttZ 1.00000002962 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_Down ttZ 0.999999970376 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ivfunc_Up ttZ 1.00478927117 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ivfunc_Down ttZ 0.995210640775 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ivfunc_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_Up ttZ 1.0000000115 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_Down ttZ 0.999999988497 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ivfunc_Up ttZ 1.00000003388 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ivfunc_Down ttZ 0.999999966116 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ivfunc_Up ttZ 1.00000003373 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ivfunc_Down ttZ 0.999999966265 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ivfunc_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ivfunc_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_Up ttZ 1.05106679712 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_Down ttZ 0.948933103178 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ivfunc_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ivfunc_Up ttZ 1.00000000563 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ivfunc_Down ttZ 0.999999994372 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ivfunc_Up ttZ 1.03723407791 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ivfunc_Down ttZ 0.962765924969 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ivfunc_Up ttZ 1.00596569647 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ivfunc_Down ttZ 0.994034204849 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ivfunc_Down ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ivfunc_Up ttZ 1.05713790518 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ivfunc_Down ttZ 0.942862141326 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ivfunc_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ivfunc_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ivfunc_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ivfunc_Up ttZ 1.00549254204 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ivfunc_Down ttZ 0.99450768383 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ivfunc_Down ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ivfunc_Up ttZ 1.00548478626 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ivfunc_Down ttZ 0.994515118484 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ivfunc_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ivfunc_Up ttZ 1.04227349607 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ivfunc_Down ttZ 0.957726596475 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ivfunc_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ivfunc_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_Up ttZ 0.99999997382 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_Down ttZ 1.00000002618 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ivfunc_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Down ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ivfunc_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ivfunc_Down ttZ 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_Down ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Up ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ivfunc_Up ttZ 0.999999986021 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ivfunc_Down ttZ 1.00000001398 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ivfunc_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ivfunc_Up ttZ 1.00000000728 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ivfunc_Down ttZ 0.999999992724 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ivfunc_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ivfunc_Up ttZ 1.00438031262 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ivfunc_Down ttZ 0.995619561892 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ivfunc_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ivfunc_Up ttZ 1.00101219892 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ivfunc_Down ttZ 0.998987619 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ivfunc_Up ttZ 0.999999965356 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ivfunc_Down ttZ 1.00000003464 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ivfunc_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ivfunc_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ivfunc_Up ttZ 1.0027733227 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ivfunc_Down ttZ 0.997226552547 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ivfunc_Up ttZ 1.05678572843 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ivfunc_Down ttZ 0.94321431379 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ivfunc_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ivfunc_Up ttZ 1.0009733957 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ivfunc_Down ttZ 0.999026727206 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ivfunc_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ivfunc_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ivfunc_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ivfunc_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ivfunc_Up ttZ 1.00057720008 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ivfunc_Down ttZ 0.999422762507 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ivfunc_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ivfunc_Up ttZ 1.00464703856 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ivfunc_Down ttZ 0.99535275697 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ivfunc_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_Up ttZ 1.00000000497 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_Down ttZ 0.999999995031 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ivfunc_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_Up ttZ 1.00000000396 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_Down ttZ 0.999999996035 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_Up ttZ 1.00000003066 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_Down ttZ 0.999999969339 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ivfunc_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ivfunc_Down ttZ 1 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ivfunc_Down ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Up ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ivfunc_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ivfunc_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_Up ttZ 0.999999978978 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_Down ttZ 1.00000002102 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ivfunc_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Down ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Up ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ivfunc_Up ttZ 1.04470686362 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ivfunc_Down ttZ 0.955293117516 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ivfunc_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_Up ttZ 0.999999966699 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_Down ttZ 1.0000000333 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ivfunc_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ivfunc_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ivfunc_Down ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_Up ttZ 1.05029332786 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_Down ttZ 0.949706850122 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_Down ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Up ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ivfunc_Up ttZ 1.00000003266 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ivfunc_Down ttZ 0.999999967345 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ivfunc_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ivfunc_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_Up ttZ 1.04367277235 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_Down ttZ 0.956327469047 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Up ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_Up ttZ 1.0024898638 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_Down ttZ 0.99751028576 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ivfunc_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ivfunc_Up ttZ 1.05148061831 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ivfunc_Down ttZ 0.948519276435 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ivfunc_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_Up ttZ 1.00000002234 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_Down ttZ 0.999999977664 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_Down ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ivfunc_Up ttZ 1.04870231826 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ivfunc_Down ttZ 0.951297662966 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_Up ttZ 0.999999968411 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_Down ttZ 1.00000003159 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ivfunc_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ivfunc_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_Up ttZ 0.999999961977 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_Down ttZ 1.00000003802 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ivfunc_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ivfunc_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ivfunc_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ivfunc_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ivfunc_Up ttZ 0.999999980372 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ivfunc_Down ttZ 1.00000001963 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ivfunc_Up ttZ 1.00000004509 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ivfunc_Down ttZ 0.999999954912 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ivfunc_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ivfunc_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ivfunc_Up ttZ 1.00469540849 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ivfunc_Down ttZ 0.995304700637 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ivfunc_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ivfunc_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ivfunc_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ivfunc_Down ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Up ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ivfunc_Up ttZ 0.999999998323 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ivfunc_Down ttZ 1.00000000168 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_e_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_e_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_Down ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_Up ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_e_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_e_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_e_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_e_Down ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_Up ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_e_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_e_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_e_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_e_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_e_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_e_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_e_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_e_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_e_Down ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_e_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_e_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_e_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_e_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_e_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_e_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_e_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_e_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_e_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_e_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_e_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_e_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_e_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_e_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_e_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_e_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_e_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_e_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_e_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_e_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_e_Down ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_e_Up ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_e_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_e_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_e_Down ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_e_Down ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_e_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_e_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_e_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_e_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_e_Down ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_Down ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_Up ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_e_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_e_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_e_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_e_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_e_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_e_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_e_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_e_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_e_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_e_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_e_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_e_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_e_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_e_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_e_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_e_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_e_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_e_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_e_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_e_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_e_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_e_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_e_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_e_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_e_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_e_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_e_Down ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_Up ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_e_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_e_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_e_Down ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_Up ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_e_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_e_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_e_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_e_Down ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_e_Up ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_e_Down ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_Up ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_e_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_e_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_e_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_e_Down ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_Up ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_e_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_e_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_e_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_e_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_e_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_e_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_e_Down ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_e_Up ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_e_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_e_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_e_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_e_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_e_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_e_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_e_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_e_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_e_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_e_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_e_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_e_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_e_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_e_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_e_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_e_Down ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_Up ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_e_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_e_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_e_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 err_mu_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 err_mu_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_Down ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_Up ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 err_mu_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf err_mu_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 err_mu_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 err_mu_Down ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_Up ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf err_mu_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 err_mu_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 err_mu_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf err_mu_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf err_mu_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 err_mu_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 err_mu_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 err_mu_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf err_mu_Down ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 err_mu_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 err_mu_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 err_mu_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 err_mu_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 err_mu_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 err_mu_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf err_mu_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 err_mu_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf err_mu_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf err_mu_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf err_mu_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf err_mu_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 err_mu_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf err_mu_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 err_mu_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf err_mu_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 err_mu_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 err_mu_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 err_mu_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 err_mu_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 err_mu_Down ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf err_mu_Up ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf err_mu_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 err_mu_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 err_mu_Down ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 err_mu_Down ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 err_mu_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 err_mu_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 err_mu_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 err_mu_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 err_mu_Down ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_Down ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_Up ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 err_mu_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 err_mu_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf err_mu_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf err_mu_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 err_mu_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf err_mu_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 err_mu_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 err_mu_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 err_mu_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf err_mu_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf err_mu_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf err_mu_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf err_mu_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf err_mu_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf err_mu_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 err_mu_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf err_mu_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 err_mu_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 err_mu_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 err_mu_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 err_mu_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 err_mu_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 err_mu_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 err_mu_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf err_mu_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 err_mu_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf err_mu_Down ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_Up ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf err_mu_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 err_mu_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 err_mu_Down ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_Up ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf err_mu_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf err_mu_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 err_mu_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf err_mu_Down ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 err_mu_Up ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 err_mu_Down ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_Up ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 err_mu_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 err_mu_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 err_mu_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 err_mu_Down ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_Up ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 err_mu_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 err_mu_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 err_mu_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 err_mu_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 err_mu_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 err_mu_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 err_mu_Down ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 err_mu_Up ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 err_mu_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 err_mu_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 err_mu_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 err_mu_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 err_mu_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf err_mu_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf err_mu_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 err_mu_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 err_mu_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf err_mu_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf err_mu_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 err_mu_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 err_mu_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 err_mu_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 err_mu_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 err_mu_Down ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_Up ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 err_mu_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf err_mu_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf err_mu_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_tau_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_tau_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_Down ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_Up ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_tau_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_tau_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_tau_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_tau_Down ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_Up ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_tau_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_tau_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_tau_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_tau_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_tau_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_tau_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_tau_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_tau_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_tau_Down ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_tau_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_tau_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_tau_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_tau_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_tau_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_tau_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_tau_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_tau_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_tau_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_tau_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_tau_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_tau_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_tau_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_tau_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_tau_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_tau_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_tau_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_tau_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_tau_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_tau_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_tau_Down ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_tau_Up ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_tau_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_tau_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_tau_Down ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_tau_Down ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_tau_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_tau_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_tau_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_tau_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_tau_Down ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_Down ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_Up ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_tau_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_tau_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_tau_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_tau_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_tau_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_tau_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_tau_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_tau_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_tau_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_tau_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_tau_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_tau_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_tau_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_tau_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_tau_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_tau_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_tau_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_tau_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_tau_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_tau_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_tau_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_tau_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_tau_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_tau_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_tau_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_tau_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_tau_Down ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_Up ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_tau_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_tau_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_tau_Down ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_Up ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_tau_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_tau_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_tau_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_tau_Down ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_tau_Up ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_tau_Down ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_Up ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_tau_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_tau_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_tau_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_tau_Down ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_Up ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_tau_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_tau_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_tau_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_tau_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_tau_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_tau_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_tau_Down ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_tau_Up ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_tau_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_tau_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_tau_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_tau_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_tau_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_tau_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_tau_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_tau_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_tau_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_tau_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_tau_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_tau_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_tau_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_tau_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_tau_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_tau_Down ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_Up ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_tau_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_tau_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_tau_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_wtag_Up ttZ 1.07851900571 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_wtag_Down ttZ 0.921481066858 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_wtag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_wtag_Up ttZ 1.08830610701 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_wtag_Down ttZ 0.911694032827 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_Down ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Up ttZ 1.00446245552 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Down ttZ 0.995537247537 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_wtag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_wtag_Down ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Up ttZ 1.00370235533 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Down ttZ 0.996297629768 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_wtag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_wtag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_wtag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_wtag_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_wtag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_wtag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_wtag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_wtag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_wtag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_wtag_Down ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_wtag_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_wtag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_wtag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_wtag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_wtag_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_wtag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_wtag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_wtag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_wtag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_wtag_Up ttZ 1.07426701522 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_wtag_Down ttZ 0.925732969039 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_wtag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_wtag_Up ttZ 1.08364375084 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_wtag_Down ttZ 0.916356335459 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_wtag_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_wtag_Up ttZ 1.08603496065 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_wtag_Down ttZ 0.913965147517 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_wtag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_wtag_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_wtag_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_wtag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_wtag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_wtag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_wtag_Down ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_wtag_Up ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_wtag_Up ttZ 1.08632357674 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_wtag_Down ttZ 0.913676442846 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_wtag_Up ttZ 1.06715872857 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_wtag_Down ttZ 0.932841256172 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_wtag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_wtag_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_wtag_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_wtag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_wtag_Down ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_wtag_Down ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_wtag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_wtag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_wtag_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_wtag_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_wtag_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_wtag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_wtag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_wtag_Up ttZ 1.08633055951 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_wtag_Down ttZ 0.913669480664 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_wtag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Down ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_wtag_Up ttZ 1.07315833967 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_wtag_Down ttZ 0.926841532941 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_wtag_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_wtag_Down ttZ 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_Up ttZ 1.03300224217 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_Down ttZ 0.966997781275 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Up ttZ 1.00292825852 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Down ttZ 0.997071853138 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_wtag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_wtag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_wtag_Up ttZ 1.07949273982 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_wtag_Down ttZ 0.920507337912 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_wtag_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_wtag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_wtag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_wtag_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_wtag_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_wtag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_wtag_Up ttZ 1.08290947042 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_wtag_Down ttZ 0.91709099266 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_wtag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_wtag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_wtag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_wtag_Up ttZ 1.08844648863 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_wtag_Down ttZ 0.911554202592 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_wtag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_wtag_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_wtag_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_wtag_Up ttZ 1.07465675654 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_wtag_Down ttZ 0.925343331885 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_wtag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_wtag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_wtag_Up ttZ 1.08137443757 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_wtag_Down ttZ 0.918625516699 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_wtag_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_wtag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_wtag_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_wtag_Up ttZ 1.07012670392 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_wtag_Down ttZ 0.92987297016 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_wtag_Up ttZ 1.09912487281 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_wtag_Down ttZ 0.900875169139 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_wtag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_wtag_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_wtag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_wtag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_wtag_Up ttZ 1.08939737305 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_wtag_Down ttZ 0.910602677897 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_Up ttZ 1.03737073863 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_Down ttZ 0.962629090606 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_wtag_Up ttZ 1.0821129971 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_wtag_Down ttZ 0.917886868527 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_wtag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_wtag_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_wtag_Down ttZ 1 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_wtag_Up ttZ 1 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_wtag_Down ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Up ttZ 1.00487369672 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Down ttZ 0.995126035878 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Down ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Up ttZ 1.00433579782 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Down ttZ 0.995664136164 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_wtag_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_wtag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_wtag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_wtag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_wtag_Up ttZ 1.08771534228 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_wtag_Down ttZ 0.912284493631 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_wtag_Up ttZ 1.08797073837 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_wtag_Down ttZ 0.91202914636 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_Up ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_Up ttZ 1.1744588814 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_Down ttZ 0.825540943055 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_Down ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Up ttZ 1.00359455453 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Down ttZ 0.996405105731 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_wtag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_Down ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Up ttZ 1.00085355576 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Down ttZ 0.999146640267 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_wtag_Up ttZ 1.07731043135 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_wtag_Down ttZ 0.92268956833 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_wtag_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_wtag_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_Down ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_wtag_Up ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_wtag_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_Up ttZ 1.19130507329 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_Down ttZ 0.808694693554 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_wtag_Up ttZ 1.07213665103 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_wtag_Down ttZ 0.927863339302 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_wtag_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_wtag_Up ttZ 1.0834272202 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_wtag_Down ttZ 0.916572724145 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_wtag_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_wtag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_wtag_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_wtag_Up ttZ 1.08707057067 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_wtag_Down ttZ 0.912929355804 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_wtag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_wtag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_wtag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_wtag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_wtag_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_wtag_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_wtag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_wtag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_wtag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_wtag_Up ttZ 1.08604460988 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_wtag_Down ttZ 0.913955149119 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_Down ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Up ttZ 1.00435759165 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Down ttZ 0.99564234594 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_wtag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_wtag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_toptag_Up ttZ 1.06955249857 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_toptag_Down ttZ 0.930447494016 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_toptag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_toptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_Down ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Up ttZ 1.00105353873 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Down ttZ 0.998946433301 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_toptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_toptag_Down ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Up ttZ 1.01214018721 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Down ttZ 0.987859499026 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_toptag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_toptag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_Up ttZ 1.06178584166 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_Down ttZ 0.938214040318 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Up ttZ 1.06813827681 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Down ttZ 0.931861561809 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_toptag_Up ttZ 1.09717017893 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_toptag_Down ttZ 0.902830028476 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_toptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_toptag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_toptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_toptag_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_toptag_Up ttZ 1.07190955437 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_toptag_Down ttZ 0.928090471956 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_toptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_toptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_toptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_toptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_toptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_toptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_toptag_Down ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_toptag_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_toptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_toptag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_toptag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_toptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_toptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_toptag_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_toptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_toptag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_toptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_toptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_toptag_Up ttZ 1.06806646969 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_toptag_Down ttZ 0.931933581442 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_toptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_toptag_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_Up ttZ 1.05921475345 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_Down ttZ 0.940785481754 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_toptag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_toptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_toptag_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_toptag_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_toptag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_toptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_toptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_toptag_Down ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_toptag_Up ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_toptag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_Up ttZ 1.07093398449 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_Down ttZ 0.929066079176 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_toptag_Up ttZ 1.07325613923 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_toptag_Down ttZ 0.92674396868 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_toptag_Up ttZ 1.09312316599 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_toptag_Down ttZ 0.906877258852 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_toptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_toptag_Up ttZ 1.0703649896 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_toptag_Down ttZ 0.929635261753 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_toptag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_toptag_Down ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_toptag_Down ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_toptag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_toptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_toptag_Up ttZ 1.08309086014 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_toptag_Down ttZ 0.916909323759 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_toptag_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_toptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_toptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_toptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_toptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Up ttZ 1.06073725508 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Down ttZ 0.939262660843 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_toptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_toptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_Up ttZ 1.07728018783 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_Down ttZ 0.922719573857 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Down ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Up ttZ 1.06917054993 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Down ttZ 0.930829278011 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_toptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_toptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_toptag_Up ttZ 1.07395215716 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_toptag_Down ttZ 0.926047995132 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_Up ttZ 1.03751589357 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_Down ttZ 0.962484129876 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Up ttZ 1.00299455365 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Down ttZ 0.997005558005 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_toptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_toptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_toptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_toptag_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_toptag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_toptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_toptag_Up ttZ 1.07071458115 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_toptag_Down ttZ 0.929285350519 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_toptag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_toptag_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_toptag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_toptag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_toptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_toptag_Up ttZ 1.07660349325 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_toptag_Down ttZ 0.923396514046 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_toptag_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_toptag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_toptag_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_toptag_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_toptag_Up ttZ 1.0688306153 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_toptag_Down ttZ 0.931169148295 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_toptag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_toptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_toptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_toptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_toptag_Up ttZ 1.06626014952 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_toptag_Down ttZ 0.933740151799 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_toptag_Up ttZ 1.07433498445 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_toptag_Down ttZ 0.925664881134 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_toptag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Up ttZ 1.06714000785 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Down ttZ 0.932859838667 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_toptag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_toptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_toptag_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_toptag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_toptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Up ttZ 1.07033839578 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Down ttZ 0.929661422975 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_toptag_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_Up ttZ 1.08721128938 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_Down ttZ 0.912788539853 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_toptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_toptag_Up ttZ 1.06064784038 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_toptag_Down ttZ 0.939352276599 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_Up ttZ 1.0697117686 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_Down ttZ 0.930288028508 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_Up ttZ 1.06657994459 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_Down ttZ 0.933419818496 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_toptag_Up ttZ 1.06508857594 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_toptag_Down ttZ 0.934911461553 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_toptag_Up ttZ 1.0764169793 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_toptag_Down ttZ 0.923583073153 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_toptag_Up ttZ 1.09670193686 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_toptag_Down ttZ 0.90329801876 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Up ttZ 1.02055600075 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Down ttZ 0.979443891963 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_toptag_Up ttZ 1.06352334829 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_toptag_Down ttZ 0.936476631752 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_toptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Down ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Up ttZ 1.01007499544 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Down ttZ 0.989924938537 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_toptag_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_toptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_toptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_toptag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_toptag_Up ttZ 1.07504382586 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_toptag_Down ttZ 0.924956350281 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_toptag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_toptag_Up ttZ 1.07089347428 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_toptag_Down ttZ 0.929106410446 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_Up ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_Up ttZ 1.07764633752 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_Down ttZ 0.922353718323 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Up ttZ 1.00562123275 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Down ttZ 0.994378850883 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_toptag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_toptag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_toptag_Up ttZ 1.07160969875 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_toptag_Down ttZ 0.928390364264 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_toptag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_Up ttZ 1.07167491063 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_Down ttZ 0.928324651494 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_Down ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Up ttZ 1.00738000264 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Down ttZ 0.992620193387 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_Up ttZ 1.07054118486 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_Down ttZ 0.929458659957 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_toptag_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_toptag_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_toptag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_Up ttZ 1.06561680103 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_Down ttZ 0.9343834694 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_Up ttZ 1.06620208131 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_Down ttZ 0.933797737705 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_toptag_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_Up ttZ 1.05987601777 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_Down ttZ 0.940123983589 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_toptag_Up ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_toptag_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_Up ttZ 1.06635618856 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_Down ttZ 0.933643687881 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_toptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_toptag_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_toptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_toptag_Up ttZ 1.09680548194 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_toptag_Down ttZ 0.903194912513 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_toptag_Up ttZ 1.07510212242 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_toptag_Down ttZ 0.92489803131 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_toptag_Up ttZ 1.07593786354 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_toptag_Down ttZ 0.924061918978 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_toptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_Up ttZ 1.06255604378 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_Down ttZ 0.937443898831 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_toptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_toptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_toptag_Up ttZ 1.06496261367 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_toptag_Down ttZ 0.935037346818 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_toptag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_toptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_toptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_Down ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Up ttZ 1.00453704147 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Down ttZ 0.995463316186 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_toptag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_toptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_restoptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_restoptag_Up ttZ 1.04848452281 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_restoptag_Down ttZ 0.951462146711 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restoptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_restoptag_Up ttZ 1.04741655133 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_restoptag_Down ttZ 0.952546101335 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_restoptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_restoptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Up ttZ 1.0614901894 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Down ttZ 0.938433887249 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Up ttZ 1.08240363703 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Down ttZ 0.917519947716 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_restoptag_Up ttZ 1.01462920601 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_restoptag_Down ttZ 0.985338517481 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restoptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restoptag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_restoptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_restoptag_Down ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Up ttZ 1.0785608421 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Down ttZ 0.921361976819 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_restoptag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restoptag_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_restoptag_Up ttZ 1.10610679803 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_restoptag_Down ttZ 0.893829900531 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restoptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_restoptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_restoptag_Up ttZ 1.08074639243 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_restoptag_Down ttZ 0.919210811943 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_restoptag_Up ttZ 1.04929669896 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_restoptag_Down ttZ 0.950645169241 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_restoptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_restoptag_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restoptag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_restoptag_Up ttZ 1.0529403126 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_restoptag_Down ttZ 0.94701954187 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_restoptag_Up ttZ 1.04574464949 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_restoptag_Down ttZ 0.954214395501 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_restoptag_Up ttZ 1.02488761892 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_restoptag_Down ttZ 0.975102669171 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Up ttZ 1.0698365992 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Down ttZ 0.930061111995 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Up ttZ 1.05243897072 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Down ttZ 0.947498368389 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_restoptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_restoptag_Up ttZ 1.07287008658 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_restoptag_Down ttZ 0.927079357812 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_restoptag_Up ttZ 1.22633192014 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_restoptag_Down ttZ 0.773795128547 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_restoptag_Up ttZ 1.11871818609 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_restoptag_Down ttZ 0.881219412094 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restoptag_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restoptag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restoptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restoptag_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_restoptag_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_restoptag_Up ttZ 1.09790397789 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_restoptag_Down ttZ 0.902083546719 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restoptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restoptag_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_restoptag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restoptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restoptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_restoptag_Up ttZ 1.04144704905 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_restoptag_Down ttZ 0.958533212454 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restoptag_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restoptag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_restoptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_restoptag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_restoptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_restoptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_restoptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_restoptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_restoptag_Up ttZ 1.06605046125 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_restoptag_Down ttZ 0.933881550089 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_restoptag_Up ttZ 1.05420213582 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_restoptag_Down ttZ 0.945724627257 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_restoptag_Up ttZ 1.01336155828 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_restoptag_Down ttZ 0.986606040006 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restoptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_restoptag_Up ttZ 1.04600484947 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_restoptag_Down ttZ 0.953962856609 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_restoptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_restoptag_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_restoptag_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Up ttZ 1.02678701173 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Down ttZ 0.973176284589 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_restoptag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_restoptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_restoptag_Up ttZ 1.0973344729 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_restoptag_Down ttZ 0.902593657548 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_restoptag_Up ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restoptag_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_restoptag_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_restoptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_restoptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_restoptag_Up ttZ 1.0508036649 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_restoptag_Down ttZ 0.949131377524 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_restoptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_restoptag_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_restoptag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_restoptag_Down ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restoptag_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_restoptag_Up ttZ 1.06189312698 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_restoptag_Down ttZ 0.938255011408 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restoptag_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Up ttZ 1.03854503048 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Down ttZ 0.961403312843 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_restoptag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_restoptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_restoptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_restoptag_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_restoptag_Up ttZ 1.04909573052 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_restoptag_Down ttZ 0.950847487257 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_restoptag_Up ttZ 1.05043034647 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_restoptag_Down ttZ 0.949449745544 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restoptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restoptag_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_restoptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_restoptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_restoptag_Up ttZ 1.08898306105 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_restoptag_Down ttZ 0.910942032806 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_restoptag_Up ttZ 1.07692412185 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_restoptag_Down ttZ 0.923064910506 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restoptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restoptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Up ttZ 1.11322886255 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Down ttZ 0.886704384036 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restoptag_Up ttZ 1 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_restoptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_restoptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_restoptag_Up ttZ 1.08729516432 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_restoptag_Down ttZ 0.912660602482 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restoptag_Up ttZ 1.21591273981 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restoptag_Down ttZ 0.78389437451 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Up ttZ 1.08293360683 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Down ttZ 0.917023850593 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_restoptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_restoptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_restoptag_Up ttZ 1.07117961639 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_restoptag_Down ttZ 0.928736245211 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_restoptag_Up ttZ 1.08475145013 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_restoptag_Down ttZ 0.915222089678 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_restoptag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_restoptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_restoptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_restoptag_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_restoptag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Up ttZ 1.05169231933 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Down ttZ 0.948276740329 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_restoptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_restoptag_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_restoptag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_restoptag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_restoptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_restoptag_Up ttZ 1.05029586337 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_restoptag_Down ttZ 0.949678139583 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_restoptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_restoptag_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_restoptag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_restoptag_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_restoptag_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_restoptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_restoptag_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_restoptag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_restoptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_restoptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_restoptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_restoptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_restoptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_restoptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_restoptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_restoptag_Up ttZ 1.04558879054 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_restoptag_Down ttZ 0.954361898142 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_restoptag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_restoptag_Up ttZ 1.04683771656 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_restoptag_Down ttZ 0.952968372516 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_restoptag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_restoptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restoptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_restoptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_restoptag_Down ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restoptag_Up ttZ 1.13799169808 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restoptag_Down ttZ 0.86200675662 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_restoptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_restoptag_Up ttZ 1.04499540564 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_restoptag_Down ttZ 0.9549680157 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_restoptag_Up ttZ 1.05401449455 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_restoptag_Down ttZ 0.94595825082 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restoptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restoptag_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_restoptag_Up ttZ 1.04820081885 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_restoptag_Down ttZ 0.951812496302 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_restoptag_Up ttZ 1.06692857774 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_restoptag_Down ttZ 0.933040779512 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_restoptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_restoptag_Down ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Up ttZ 1.08092237563 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Down ttZ 0.919040289968 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_restoptag_Up ttZ 1.0235339156 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_restoptag_Down ttZ 0.976401409327 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Up ttZ 1.06163929581 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Down ttZ 0.93830706907 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restoptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_restoptag_Up ttZ 1.05297183666 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_restoptag_Down ttZ 0.946938966045 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_restoptag_Up ttZ 1.10896184203 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_restoptag_Down ttZ 0.89101273696 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Up ttZ 1.054369082 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Down ttZ 0.945613443727 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Up ttZ 1.07587459946 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Down ttZ 0.924098432736 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_restoptag_Up ttZ 1.04120051476 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_restoptag_Down ttZ 0.958747708564 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restoptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_restoptag_Up ttZ 1.05186258675 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_restoptag_Down ttZ 0.948112140653 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_restoptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_restoptag_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_restoptag_Down ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restoptag_Up ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restoptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restoptag_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restoptag_Down ttZ 1 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Up ttZ 1.08108274458 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Down ttZ 0.918867018355 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_restoptag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_restoptag_Up ttZ 1.05441246556 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_restoptag_Down ttZ 0.945544461259 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_restoptag_Up ttZ 1.04948278791 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_restoptag_Down ttZ 0.950458138881 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restoptag_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restoptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Up ttZ 1.00063136515 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Down ttZ 0.999433505464 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_restoptag_Up ttZ 1.0692501568 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_restoptag_Down ttZ 0.930711109801 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Down ttZ 1 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Up ttZ 1.08120148459 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Down ttZ 0.918733476703 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restoptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restoptag_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restoptag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Up ttZ 1.04805406107 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Down ttZ 0.95193634744 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_restoptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_restoptag_Down ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_restoptag_Up ttZ 1 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restoptag_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restoptag_Up ttZ 1 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_restoptag_Up ttZ 1.03586596174 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_restoptag_Down ttZ 0.964069827931 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restoptag_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restoptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restoptag_Down ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_restoptag_Up ttZ 1 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_restoptag_Down ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restoptag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restoptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restoptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restoptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_restoptag_Up ttZ 1 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Up ttZ 1.02777995207 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Down ttZ 0.972164112764 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restoptag_Up ttZ 1 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_restoptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_restoptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_restoptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_restoptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_restoptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_restoptag_Up ttZ 1.05049607541 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_restoptag_Down ttZ 0.949422825738 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_restoptag_Up ttZ 1.01994148395 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_restoptag_Down ttZ 0.97997868065 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_restoptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restoptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restoptag_Down ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_restoptag_Up ttZ 1 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_restoptag_Down ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_restoptag_Up ttZ 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_restoptag_Down ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_restoptag_Up ttZ 1 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_restoptag_Down ttZ 1 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Up ttZ 1.0515829605 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Down ttZ 0.948350046933 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_restoptag_Up ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_restoptag_Up ttZ 1.04779764889 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_restoptag_Down ttZ 0.952194214697 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Up ttZ 1.07461395823 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Down ttZ 0.92534187302 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_restoptag_Up ttZ 1 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_restoptag_Down ttZ 1 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ttZ_SF_Up ttZ 1.0821 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ttZ_SF_Down ttZ 0.9179 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ttZ_SF_Up ttZ 1.0821 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ttZ_SF_Up ttZ 1.0821 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ttZ_SF_Down ttZ 0.9179 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ttZ_SF_Down ttZ 0.9179 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ttZ_SF_Up ttZ 1.0821 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ttZ_SF_Up ttZ 1.0821 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ttZ_SF_Down ttZ 0.9179 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ttZ_SF_Up ttZ 1.0821 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ttZ_SF_Down ttZ 0.9179 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ttZ_SF_Down ttZ 0.9179 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ttZ_SF_Down ttZ 0.9179 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ttZ_SF_Up ttZ 1.0821 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ttZ_SF_Down ttZ 0.9179 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ttZ_SF_Down ttZ 0.9179 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ttZ_SF_Down ttZ 0.9179 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ttZ_SF_Up ttZ 1.0821 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ttZ_SF_Up ttZ 1.0821 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ttZ_SF_Up ttZ 1.0821 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ttZ_SF_Down ttZ 0.9179 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ttZ_SF_Up ttZ 1.0821 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ttZ_SF_Down ttZ 0.9179 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ttZ_SF_Up ttZ 1.0821 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ttZ_SF_Down ttZ 0.9179 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ttZ_SF_Down ttZ 0.9179 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ttZ_SF_Down ttZ 0.9179 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ttZ_SF_Down ttZ 0.9179 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ttZ_SF_Up ttZ 1.0821 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ttZ_SF_Down ttZ 0.9179 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ttZ_SF_Down ttZ 0.9179 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ttZ_SF_Up ttZ 1.0821 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ttZ_SF_Down ttZ 0.9179 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ttZ_SF_Down ttZ 0.9179 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ttZ_SF_Up ttZ 1.0821 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ttZ_SF_Down ttZ 0.9179 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ttZ_SF_Up ttZ 1.0821 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ttZ_SF_Down ttZ 0.9179 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ttZ_SF_Up ttZ 1.0821 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ttZ_SF_Down ttZ 0.9179 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ttZ_SF_Up ttZ 1.0821 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ttZ_SF_Down ttZ 0.9179 diff --git a/Datacards/setup/SUSYNano19/values_unc_zinv.conf b/Datacards/setup/SUSYNano19/values_unc_zinv.conf index 91d69da..05495f2 100644 --- a/Datacards/setup/SUSYNano19/values_unc_zinv.conf +++ b/Datacards/setup/SUSYNano19/values_unc_zinv.conf @@ -1,2928 +1,2928 @@ -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_up znunu 1.01098045876 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_down znunu 0.988827645916 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_up znunu 1.01116821802 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_down znunu 0.988650446441 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_up znunu 1.00912875295 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_down znunu 0.99091650862 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_up znunu 1.00740679209 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_down znunu 0.992195146316 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_up znunu 0.999304559285 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_down znunu 1.00180205817 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_up znunu 0.997965091802 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_down znunu 1.00150041863 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_up znunu 0.999366910277 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_down znunu 1.00216256223 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_up znunu 0.997563647701 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_down znunu 1.00110777829 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_up znunu 1.01118574487 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_down znunu 0.991960724012 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_up znunu 1.00893598596 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_down znunu 0.991592812152 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 JES_up znunu 1.00447571756 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 JES_down znunu 0.989770936982 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf JES_up znunu 1.00990711142 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf JES_down znunu 0.989703569411 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 JES_up znunu 1.00420163908 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 JES_down znunu 0.988018314156 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 JES_up znunu 1.0091701961 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 JES_down znunu 0.99937387481 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 JES_up znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 JES_down znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf JES_up znunu 0.98250564123 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf JES_down znunu 0.983186702425 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_up znunu 0.994173040662 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_down znunu 1.01720303425 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 JES_up znunu 0.987591084419 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 JES_down znunu 1.07399348917 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 JES_up znunu 0.989110066858 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 JES_down znunu 1.14202966833 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf JES_up znunu 0.967022222392 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf JES_down znunu 1.14193240416 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_up znunu 0.974293465734 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_down znunu 1.02511607286 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 JES_up znunu 0.962881440138 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 JES_down znunu 1.01567085709 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 JES_up znunu 0.991927851995 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 JES_down znunu 1.01685493129 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf JES_up znunu 0.981528055869 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf JES_down znunu 1.04415524337 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_up znunu 1.01015716033 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_down znunu 1.03913254996 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_up znunu 0.982052750732 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_down znunu 1.08718410958 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 JES_up znunu 0.988393174455 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 JES_down znunu 1.10103048095 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf JES_up znunu 0.983846986989 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf JES_down znunu 1.11050604397 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_up znunu 0.978748100177 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_down znunu 1.02610008273 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_up znunu 0.978601734388 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_down znunu 1.02672922627 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 JES_up znunu 0.96128582487 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 JES_down znunu 1.02123795045 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf JES_up znunu 0.958992008158 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf JES_down znunu 1.01754744415 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_up znunu 0.97115957339 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_down znunu 1.00096119562 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 JES_up znunu 0.987443032433 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 JES_down znunu 1.04412279768 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf JES_up znunu 0.969324803791 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf JES_down znunu 1.04500840091 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 JES_up znunu 0.97016488259 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 JES_down znunu 0.9696935539 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 JES_up znunu 1.01137353427 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 JES_down znunu 0.955987320833 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf JES_up znunu 0.980047387056 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf JES_down znunu 1.0033257555 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_up znunu 0.972269014508 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_down znunu 0.994943863059 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 JES_up znunu 0.981551508102 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 JES_down znunu 1.003687363 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf JES_up znunu 0.968546756503 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf JES_down znunu 0.989724055257 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_up znunu 1.02071430046 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_down znunu 0.996694577415 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 JES_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 JES_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf JES_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf JES_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 JES_up znunu 1.01420183243 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 JES_down znunu 0.955599601861 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 JES_up znunu 0.97306176107 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 JES_down znunu 0.985262921158 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf JES_up znunu 0.99463227978 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf JES_down znunu 1.05683891079 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 JES_up znunu 0.9802669964 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 JES_down znunu 1.00735773987 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 JES_up znunu 0.964686759329 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 JES_down znunu 0.993458245202 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf JES_up znunu 0.96168446205 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf JES_down znunu 1.00738088708 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_up znunu 1.0030894158 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 JES_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 JES_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf JES_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf JES_down znunu 1.00575551252 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_up znunu 0.996573776693 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_down znunu 0.892542578669 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_up znunu 1.0 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_down znunu 0.986160590983 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_up znunu 0.984212491388 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_down znunu 1.0 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_up znunu 1.0 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_down znunu 0.960077228646 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_up znunu 1.0 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_down znunu 0.951139709967 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_up znunu 1.00271876753 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_down znunu 0.996575107336 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_up znunu 0.997077780558 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_down znunu 1.0 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_up znunu 1.0 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_up znunu 1.02065029025 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_down znunu 0.951490661579 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_up znunu 1.01906355763 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_down znunu 0.969659875525 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_up znunu 1.02999542005 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_down znunu 0.973756056345 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_up znunu 1.02345895206 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_down znunu 0.969775680565 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_up znunu 1.01152405311 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_down znunu 0.966917406612 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_up znunu 1.01479662991 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_down znunu 0.980595326134 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_up znunu 1.01760848871 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_down znunu 0.99586028539 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_up znunu 1.03181718181 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_down znunu 0.97886332667 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 JES_up znunu 1.04618672307 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 JES_down znunu 0.962795475517 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 JES_up znunu 1.02667066403 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 JES_down znunu 0.997050848579 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf JES_up znunu 1.0592704585 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf JES_down znunu 0.998571262252 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_up znunu 1.01224063783 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_down znunu 0.967344795576 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_up znunu 1.03901622362 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_down znunu 0.975631008147 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_up znunu 0.991461281861 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_down znunu 0.995821335263 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 JES_up znunu 1.06038857741 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 JES_down znunu 0.973822793913 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 JES_up znunu 1.00353484525 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 JES_down znunu 0.744898404154 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf JES_up znunu 1.00088247369 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf JES_down znunu 1.18027912044 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 JES_up znunu 1.06345457154 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 JES_down znunu 0.942771130738 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 JES_up znunu 1.03232655248 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 JES_down znunu 0.968985818929 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf JES_up znunu 1.03680285297 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf JES_down znunu 0.981466044606 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 JES_up znunu 0.994222003157 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 JES_down znunu 1.01154772011 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 JES_up znunu 1.0410284583 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 JES_down znunu 0.998777034445 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf JES_up znunu 1.0215214456 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf JES_down znunu 0.956422505731 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 JES_up znunu 1.05151333178 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 JES_down znunu 0.917817647351 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 JES_up znunu 1.05328484299 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 JES_down znunu 0.944835086291 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 JES_up znunu 1.02602581188 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 JES_down znunu 0.957896641769 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 JES_up znunu 1.02207451396 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 JES_down znunu 0.983239693771 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf JES_up znunu 1.01348773772 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf JES_down znunu 0.974390087288 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 JES_up znunu 1.01831350349 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 JES_down znunu 0.95374930635 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 JES_up znunu 1.00000815403 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 JES_down znunu 0.965659576237 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 JES_up znunu 1.032638004 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 JES_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 JES_up znunu 1.07277435044 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 JES_down znunu 0.996388677277 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf JES_up znunu 1.00868359009 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf JES_down znunu 0.985945892323 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 JES_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 JES_down znunu 0.990906860962 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 JES_up znunu 0.943153002348 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 JES_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 JES_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 JES_down znunu 0.958743005242 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 JES_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 JES_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf JES_up znunu 0.981251477808 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf JES_down znunu 0.979317112601 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 JES_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 JES_down znunu 0.800561270292 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf JES_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf JES_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 JES_up znunu 1.02990926526 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 JES_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf JES_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf JES_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 JES_up znunu 0.999989595756 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 JES_down znunu 0.939834824473 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf JES_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf JES_down znunu 0.813083349201 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 JES_up znunu 1.02341210449 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 JES_down znunu 0.975532586443 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 JES_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 JES_down znunu 0.984273631039 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf JES_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_up znunu 1.01169710839 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_down znunu 1.00429511962 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_up znunu 1.09426318223 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 JES_up znunu 0.828083191718 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 JES_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf JES_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 JES_up znunu 1.01348711546 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 JES_down znunu 0.963595437479 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 JES_up znunu 1.05193290065 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 JES_down znunu 0.922328068518 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf JES_up znunu 1.02896374848 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 JES_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 JES_down znunu 0.999218718908 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 JES_up znunu 1.00463787408 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf JES_up znunu 2.1871019383 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_up znunu 1.04179111443 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_down znunu 0.910899644164 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 JES_up znunu 1.02732187974 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 JES_down znunu 0.985026455008 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 JES_up znunu 1.06600862808 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 JES_down znunu 0.985034565241 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 JES_up znunu 1.04048361439 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 JES_down znunu 0.978079989081 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf JES_up znunu 1.0248724777 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf JES_down znunu 0.95445811326 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_up znunu 1.01040868017 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_down znunu 0.959764369646 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 JES_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 JES_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 JES_down znunu 1.04688082352 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 JES_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf JES_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 JES_up znunu 0.999764441456 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 JES_up znunu 0.950949444939 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 JES_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf JES_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 JES_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf JES_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 JES_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 JES_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf JES_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 JES_up znunu 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 JES_down znunu 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 JES_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf JES_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 JES_up znunu 1.08245620083 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 JES_down znunu 0.906780671456 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf JES_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 JES_up znunu 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 JES_down znunu 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf JES_up znunu 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf JES_down znunu 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 JES_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 JES_down znunu 0.9407432802 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf JES_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 JES_up znunu 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 JES_down znunu 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf JES_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf JES_down znunu 1.0 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf JES_up znunu 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf JES_down znunu 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 JES_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 JES_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 JES_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 JES_down znunu 0.879699020647 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf JES_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf JES_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 JES_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 JES_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 JES_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 JES_down znunu 1.20675618141 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf JES_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf JES_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 JES_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 JES_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 JES_up znunu 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 JES_down znunu 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf JES_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf JES_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 JES_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 JES_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 JES_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 JES_down znunu 0.840906359274 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf JES_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf JES_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_up znunu 1.01773906999 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_down znunu 0.997342120783 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 JES_up znunu 1.01102114375 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 JES_down znunu 0.968644323564 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf JES_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf JES_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 JES_up znunu 1.08565844743 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 JES_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf JES_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf JES_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 JES_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 JES_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf JES_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf JES_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf JES_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf JES_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 JES_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 JES_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf JES_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf JES_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf JES_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf JES_down znunu 1.0 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf JES_up znunu 1.0 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf JES_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_up znunu 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_down znunu 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 JES_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 JES_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf JES_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf JES_down znunu 1.0 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf JES_up znunu 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf JES_down znunu 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_up znunu 0.995465220789 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_down znunu 1.00456771109 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_up znunu 0.995542599039 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_down znunu 1.00448930339 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_up znunu 0.99533602151 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_down znunu 1.00469993973 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_up znunu 0.995133300954 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_down znunu 1.00490617401 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_up znunu 0.990353803916 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_down znunu 1.00979405462 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_up znunu 0.990699242749 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_down znunu 1.00942662947 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_up znunu 0.989971540622 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_down znunu 1.01018504663 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_up znunu 0.990209404706 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_down znunu 1.00994299568 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_up znunu 0.994096389246 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_down znunu 1.00596063972 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_up znunu 0.994597279683 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_down znunu 1.00545796512 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 b_up znunu 0.994077287785 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 b_down znunu 1.00598102315 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf b_up znunu 0.993496789403 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf b_down znunu 1.00656624233 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 b_up znunu 0.986454616974 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 b_down znunu 1.01383889397 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 b_up znunu 0.987460550902 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 b_down znunu 1.01272979363 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 b_up znunu 0.987402333803 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 b_down znunu 1.01276750075 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf b_up znunu 0.992756894352 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf b_down znunu 1.00731415764 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_up znunu 1.06193269179 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_down znunu 0.937128329832 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 b_up znunu 1.06532500438 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 b_down znunu 0.933809910025 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 b_up znunu 1.07083141331 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 b_down znunu 0.928232029211 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf b_up znunu 1.06379439179 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf b_down znunu 0.934856847161 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_up znunu 1.03111048614 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_down znunu 0.968540608055 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 b_up znunu 1.03141684215 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 b_down znunu 0.968203609022 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 b_up znunu 1.02920311383 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 b_down znunu 0.970335521055 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf b_up znunu 1.02973516886 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf b_down znunu 0.969721876941 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_up znunu 1.05814417767 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_down znunu 0.940846638904 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_up znunu 1.06208355884 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_down znunu 0.936871207991 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 b_up znunu 1.0642851838 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 b_down znunu 0.93469608189 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf b_up znunu 1.06374844654 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf b_down znunu 0.935198752056 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_up znunu 1.03208447108 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_down znunu 0.967398424455 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_up znunu 1.03047152339 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_down znunu 0.969092412382 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 b_up znunu 1.03132310909 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 b_down znunu 0.968020641673 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf b_up znunu 1.03882728017 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf b_down znunu 0.960906226285 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_up znunu 1.05471356702 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_down znunu 0.944347508837 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 b_up znunu 1.06293153484 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 b_down znunu 0.935874922827 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf b_up znunu 1.05145638357 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf b_down znunu 0.947590912299 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 b_up znunu 1.09004241619 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 b_down znunu 0.913187535056 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 b_up znunu 1.09583364319 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 b_down znunu 0.907925231124 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf b_up znunu 1.14898164338 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf b_down znunu 0.862971897163 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_up znunu 1.05508931433 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_down znunu 0.946100521729 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 b_up znunu 1.06429394866 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 b_down znunu 0.936622783434 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf b_up znunu 1.07418965805 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf b_down znunu 0.929448054604 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_up znunu 1.06163035015 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_down znunu 0.939596890321 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 b_up znunu 1.06927348337 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 b_down znunu 0.934018394391 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf b_up znunu 1.06960127119 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf b_down znunu 0.930498135449 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 b_up znunu 1.08949953843 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 b_down znunu 0.913033818454 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 b_up znunu 1.10090174373 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 b_down znunu 0.904457768403 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf b_up znunu 1.10555514671 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf b_down znunu 0.901729545088 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 b_up znunu 1.06280412187 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 b_down znunu 0.939324104118 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 b_up znunu 1.05996753088 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 b_down znunu 0.941365862295 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf b_up znunu 1.06603990246 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf b_down znunu 0.935613229981 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_up znunu 1.03989072454 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_down znunu 0.9607214291 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 b_up znunu 1.07085402358 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 b_down znunu 0.930335656344 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf b_up znunu 1.14110467907 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf b_down znunu 0.868347037235 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_up znunu 1.0168974657 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_down znunu 0.982315634479 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_up znunu 1.02542769013 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_down znunu 0.973421040453 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_up znunu 1.02823560089 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_down znunu 0.970549682949 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_up znunu 1.0316838577 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_down znunu 0.967528185558 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_up znunu 1.04462794649 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_down znunu 0.956230518512 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_up znunu 1.04569490645 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_down znunu 0.955058067524 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_up znunu 1.06391492614 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_down znunu 0.937446804258 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_up znunu 1.05711287468 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_down znunu 0.944581167507 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_up znunu 1.0443305707 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_down znunu 0.954461064703 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_up znunu 1.04317167024 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_down znunu 0.955613421001 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_up znunu 1.0439772984 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_down znunu 0.954847505006 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_up znunu 1.04315125067 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_down znunu 0.955669981966 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_up znunu 1.07327955716 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_down znunu 0.929344524498 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_up znunu 1.08300969599 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_down znunu 0.920347296189 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_up znunu 1.07422899423 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_down znunu 0.929244343509 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_up znunu 1.07709420587 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_down znunu 0.925965131078 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 b_up znunu 1.02143394192 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 b_down znunu 0.977898375375 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 b_up znunu 1.03237381501 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 b_down znunu 0.966547483901 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf b_up znunu 1.01740001921 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf b_down znunu 0.981960562975 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_up znunu 1.02858172508 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_down znunu 0.970425931755 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_up znunu 1.03311298669 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_down znunu 0.965706200218 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_up znunu 1.03758747668 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_down znunu 0.960143417708 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 b_up znunu 1.03153422475 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 b_down znunu 0.967106558832 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 b_up znunu 1.08578335493 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 b_down znunu 0.912758641566 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf b_up znunu 1.02948572109 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf b_down znunu 0.968111127732 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 b_up znunu 1.03297700403 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 b_down znunu 0.966283118189 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 b_up znunu 1.02741097884 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 b_down znunu 0.971742182164 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf b_up znunu 1.03925117006 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf b_down znunu 0.959737440606 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 b_up znunu 1.05431162972 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 b_down znunu 0.944078827557 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 b_up znunu 1.02659757734 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 b_down znunu 0.971700179213 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf b_up znunu 1.04491052742 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf b_down znunu 0.95275735551 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 b_up znunu 1.01967637176 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 b_down znunu 0.979792464623 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 b_up znunu 1.01854115585 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 b_down znunu 0.9808622311 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 b_up znunu 1.018921971 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 b_down znunu 0.980449719672 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 b_up znunu 1.01893338824 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 b_down znunu 0.980410226282 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf b_up znunu 1.02530366384 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf b_down znunu 0.973961578047 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 b_up znunu 1.01785363725 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 b_down znunu 0.981116404892 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 b_up znunu 1.01831341549 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 b_down znunu 0.980837679268 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 b_up znunu 1.00771822803 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 b_down znunu 0.991510893944 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 b_up znunu 1.01591168143 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 b_down znunu 0.982986982816 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf b_up znunu 1.01773714486 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf b_down znunu 0.981461720031 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 b_up znunu 1.02844123156 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 b_down znunu 0.970942439514 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 b_up znunu 1.03535748575 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 b_down znunu 0.962254359012 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 b_up znunu 1.00594745833 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 b_down znunu 0.993298285916 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 b_up znunu 0.99430528273 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 b_down znunu 1.00524776505 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf b_up znunu 1.01323237109 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf b_down znunu 0.986093618255 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 b_up znunu 1.0182739069 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 b_down znunu 0.980698504 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf b_up znunu 1.02306296522 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf b_down znunu 0.943984792323 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 b_up znunu 1.01720991455 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 b_down znunu 0.982277946828 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf b_up znunu 0.99844797305 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf b_down znunu 1.00076631915 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 b_up znunu 1.0131701438 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 b_down znunu 0.985871474865 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf b_up znunu 0.999598215086 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf b_down znunu 1.00019722462 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 b_up znunu 1.05215721958 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 b_down znunu 0.949229418094 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 b_up znunu 1.03809845728 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 b_down znunu 0.962129759537 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf b_up znunu 1.04703608933 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf b_down znunu 0.953848047128 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_up znunu 1.06260427443 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_down znunu 0.938810355736 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_up znunu 1.08205839851 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_down znunu 0.917922106109 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_up znunu 1.07661259954 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_down znunu 0.923447306202 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 b_up znunu 1.07262705496 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 b_down znunu 0.929704326454 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 b_up znunu 1.07179252078 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 b_down znunu 0.928523118016 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf b_up znunu 1.04172086067 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf b_down znunu 0.958757694165 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 b_up znunu 1.05140960329 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 b_down znunu 0.949803798091 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 b_up znunu 1.05304374718 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 b_down znunu 0.94839787198 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf b_up znunu 1.03929183512 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf b_down znunu 0.960591188525 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 b_up znunu 1.11320345524 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 b_down znunu 0.890276888487 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 b_up znunu 1.07104840453 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 b_down znunu 0.931706243323 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf b_up znunu 1.13145050505 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf b_down znunu 0.880091455091 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_up znunu 1.03615994882 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_down znunu 0.964351793671 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 b_up znunu 1.04120280955 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 b_down znunu 0.959293035195 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 b_up znunu 1.05510158884 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 b_down znunu 0.946014073567 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 b_up znunu 1.04674779214 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 b_down znunu 0.953742133243 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf b_up znunu 1.05979780979 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf b_down znunu 0.941474368202 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_up znunu 1.04027714639 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_down znunu 0.960816923205 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 b_up znunu 1.0524226258 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 b_down znunu 0.948351150714 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 b_up znunu 1.03686320039 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 b_down znunu 0.962298680187 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 b_up znunu 1.04737367351 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 b_down znunu 0.95310812523 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf b_up znunu 1.05004639057 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf b_down znunu 0.951135334641 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_up znunu 1.03507240178 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_down znunu 0.964972977696 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 b_up znunu 1.04405247782 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 b_down znunu 0.95634771359 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 b_up znunu 1.04879027828 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 b_down znunu 0.951157167331 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 b_up znunu 1.03923213244 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 b_down znunu 0.959704804551 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf b_up znunu 1.07736454741 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf b_down znunu 0.922689629513 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 b_up znunu 1.03124930173 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 b_down znunu 0.966105489623 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf b_up znunu 1.03286365338 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf b_down znunu 0.966575567009 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 b_up znunu 1.02178794969 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 b_down znunu 0.978542070281 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 b_up znunu 1.01932228381 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 b_down znunu 0.979331950465 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf b_up znunu 1.07622848874 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf b_down znunu 0.925554795264 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 b_up znunu 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 b_down znunu 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 b_up znunu 1.05122791929 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 b_down znunu 0.946667603346 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf b_up znunu 1.03026110881 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf b_down znunu 0.965071397814 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 b_up znunu 1.03565287391 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 b_down znunu 0.964356456659 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf b_up znunu 1.05388605024 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf b_down znunu 0.946996581334 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 b_up znunu 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 b_down znunu 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf b_up znunu 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf b_down znunu 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_up znunu 1.06043268029 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_down znunu 0.940425148888 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 b_up znunu 1.02892508382 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 b_down znunu 0.971246924741 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf b_up znunu 1.03816560388 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf b_down znunu 0.962121796044 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 b_up znunu 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 b_down znunu 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf b_up znunu 1.06007212694 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf b_down znunu 0.940931852361 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf b_up znunu 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf b_down znunu 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 b_up znunu 1.10358400252 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 b_down znunu 0.904763833004 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 b_up znunu 1.10561806936 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 b_down znunu 0.900895677098 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf b_up znunu 1.11471782374 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf b_down znunu 0.894508248873 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 b_up znunu 1.06988955054 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 b_down znunu 0.932799213735 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 b_up znunu 1.08787459178 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 b_down znunu 0.916465561036 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf b_up znunu 1.07551817382 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf b_down znunu 0.925803622164 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 b_up znunu 1.56276309039 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 b_down znunu 0.509190277341 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 b_up znunu 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 b_down znunu 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf b_up znunu 1.18334367818 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf b_down znunu 0.82423865817 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 b_up znunu 1.09907022885 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 b_down znunu 0.904716725488 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 b_up znunu 1.08484934329 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 b_down znunu 0.919626787068 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf b_up znunu 1.25691341319 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf b_down znunu 0.782529575379 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_up znunu 1.0901574388 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_down znunu 0.914252967904 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 b_up znunu 1.07212660267 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 b_down znunu 0.930431859058 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf b_up znunu 1.1030937714 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf b_down znunu 0.905509218245 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_up znunu 1.08398080639 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_down znunu 0.918412889142 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 b_up znunu 1.06490375571 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 b_down znunu 0.937218226134 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf b_up znunu 1.14686947255 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf b_down znunu 0.862202909936 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_up znunu 1.16999516571 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_down znunu 0.835791604766 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 b_up znunu 1.11566704874 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 b_down znunu 0.88629404388 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf b_up znunu 1.13268105074 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf b_down znunu 0.872068346047 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf b_up znunu 1.04767719502 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf b_down znunu 0.953155311722 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 b_up znunu 1.03705070051 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 b_down znunu 0.96338910885 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf b_up znunu 1.05164267323 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf b_down znunu 0.949761527518 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf b_up znunu 1.13441630687 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf b_down znunu 0.865083061394 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf b_up znunu 1.05143882107 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf b_down znunu 0.945242538899 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_up znunu 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_down znunu 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 b_up znunu 1.14761138197 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 b_down znunu 0.859659170396 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf b_up znunu 1.08449260539 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf b_down znunu 0.918762019571 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf b_up znunu 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf b_down znunu 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restop_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restop_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restop_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restop_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restop_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restop_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restop_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restop_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restop_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restop_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restop_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restop_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restop_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restop_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restop_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restop_down znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restop_up znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restop_down znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restop_up znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restop_down znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_restop_up znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_restop_down znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_restop_up znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_restop_down znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_restop_up znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_restop_down znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_restop_up znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_restop_down znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_restop_up znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_restop_down znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_restop_up znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_restop_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restop_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restop_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_restop_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_restop_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_restop_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_restop_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_restop_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_restop_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restop_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restop_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_restop_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_restop_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_restop_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_restop_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_restop_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_restop_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restop_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restop_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restop_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restop_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_restop_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_restop_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_restop_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_restop_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restop_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restop_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restop_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restop_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_restop_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_restop_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_restop_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_restop_down znunu 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restop_up znunu 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restop_down znunu 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_restop_up znunu 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_restop_down znunu 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_restop_up znunu 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_restop_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_restop_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_restop_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_restop_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_restop_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_restop_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_restop_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restop_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restop_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_restop_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_restop_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_restop_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_restop_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restop_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restop_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_restop_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_restop_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_restop_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_restop_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_restop_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_restop_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_restop_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_restop_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_restop_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_restop_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_restop_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_restop_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_restop_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_restop_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_restop_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_restop_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restop_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restop_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_restop_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_restop_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_restop_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_restop_down znunu 1.0 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restop_up znunu 1.16762860794 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restop_down znunu 0.832093030269 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restop_up znunu 1.16918558864 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restop_down znunu 0.830588736111 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restop_up znunu 1.1918009382 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restop_down znunu 0.811751615974 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restop_up znunu 1.16257554828 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restop_down znunu 0.837212923096 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restop_up znunu 1.16465401127 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restop_down znunu 0.839246655457 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restop_up znunu 1.20777525997 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restop_down znunu 0.797026988649 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restop_up znunu 1.18723297349 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restop_down znunu 0.817494435403 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restop_up znunu 1.25491064174 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restop_down znunu 0.759477383059 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restop_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restop_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restop_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restop_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restop_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restop_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restop_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restop_down znunu 1.0 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restop_up znunu 1.0 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restop_down znunu 1.0 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restop_up znunu 1.0 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restop_down znunu 1.0 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restop_up znunu 1.0 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restop_down znunu 1.0 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restop_up znunu 1.0 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restop_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restop_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restop_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restop_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restop_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restop_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restop_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restop_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restop_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restop_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restop_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restop_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restop_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restop_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restop_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restop_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restop_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restop_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restop_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_restop_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_restop_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_restop_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_restop_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_restop_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_restop_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_restop_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_restop_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_restop_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_restop_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_restop_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_restop_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_restop_up znunu 1.07859858809 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_restop_down znunu 0.920956554813 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_restop_up znunu 1.07980000347 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_restop_down znunu 0.919783945212 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_restop_up znunu 1.08261766669 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_restop_down znunu 0.917607455025 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_restop_up znunu 1.07899644844 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_restop_down znunu 0.920656757502 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_restop_up znunu 1.07998026539 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_restop_down znunu 0.919680459795 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_restop_up znunu 1.12376654473 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_restop_down znunu 0.876257592218 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_restop_up znunu 1.12215345757 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_restop_down znunu 0.877589513282 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_restop_up znunu 1.1403895193 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_restop_down znunu 0.860085992822 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_restop_up znunu 1.12569212661 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_restop_down znunu 0.874103223057 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_restop_up znunu 1.11949984687 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_restop_down znunu 0.880170575111 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_restop_up znunu 1.14533659986 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_restop_down znunu 0.855814409444 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_restop_up znunu 1.19457755874 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_restop_down znunu 0.805253006431 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_restop_up znunu 1.18587598908 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_restop_down znunu 0.81402151931 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_restop_up znunu 1.08542037859 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_restop_down znunu 0.914418684372 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_restop_up znunu 1.1396075831 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_restop_down znunu 0.860175470627 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_restop_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_restop_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_restop_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_restop_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_restop_up znunu 1.08501951777 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_restop_down znunu 0.914339788953 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_restop_up znunu 1.13520422972 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_restop_down znunu 0.864557383241 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_restop_up znunu 1.09511315775 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_restop_down znunu 0.904550083181 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_restop_up znunu 1.06545740655 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_restop_down znunu 0.934305756224 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restop_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restop_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restop_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restop_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restop_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restop_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restop_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restop_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restop_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restop_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restop_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restop_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restop_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restop_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restop_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restop_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restop_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restop_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_restop_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_restop_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_restop_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_restop_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_restop_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_restop_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_restop_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_restop_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_restop_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_restop_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_restop_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_restop_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restop_up znunu 1.07982490714 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restop_down znunu 0.919701101278 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_restop_up znunu 1.08358001133 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_restop_down znunu 0.915987650699 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_restop_up znunu 1.08260961138 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_restop_down znunu 0.916959428517 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_restop_up znunu 1.08142111563 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_restop_down znunu 0.918079452759 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_restop_up znunu 1.0904544666 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_restop_down znunu 0.908964670232 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restop_up znunu 1.15756397102 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restop_down znunu 0.842196762311 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_restop_up znunu 1.10930666727 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_restop_down znunu 0.890493551115 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_restop_up znunu 1.14546152151 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_restop_down znunu 0.854377670544 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_restop_up znunu 1.13646355663 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_restop_down znunu 0.863216494014 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_restop_up znunu 1.09784418439 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_restop_down znunu 0.901847628093 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restop_up znunu 1.16135468168 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restop_down znunu 0.838445218301 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_restop_up znunu 1.1586197818 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_restop_down znunu 0.84104371401 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_restop_up znunu 1.164373832 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_restop_down znunu 0.835402928808 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_restop_up znunu 1.18650285135 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_restop_down znunu 0.813457504474 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_restop_up znunu 1.10318865639 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_restop_down znunu 0.896402336576 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_restop_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_restop_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_restop_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_restop_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_restop_up znunu 1.2263057733 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_restop_down znunu 0.773532532562 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_restop_up znunu 1.10740122161 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_restop_down znunu 0.891993047739 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_restop_up znunu 1.13506874744 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_restop_down znunu 0.864333090714 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_restop_up znunu 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_restop_down znunu 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_restop_up znunu 1.06712024657 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_restop_down znunu 0.932740954569 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_restop_up znunu 1.37000093001 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_restop_down znunu 0.629980995758 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_restop_up znunu 1.08527445894 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_restop_down znunu 0.914573901568 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_restop_up znunu 1.1190941293 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_restop_down znunu 0.880184796582 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_restop_up znunu 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_restop_down znunu 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_restop_up znunu 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_restop_down znunu 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restop_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restop_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_restop_up znunu 1.29974693046 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_restop_down znunu 0.753319083201 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_restop_up znunu 1.25079955246 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_restop_down znunu 0.796775158554 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_restop_up znunu 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_restop_down znunu 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_restop_up znunu 1.76999391782 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_restop_down znunu 0.448322428846 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restop_up znunu 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restop_down znunu 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_restop_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_restop_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_restop_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_restop_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_restop_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_restop_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_restop_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_restop_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_restop_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_restop_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_restop_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_restop_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_restop_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_restop_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_restop_up znunu 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_restop_down znunu 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_restop_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_restop_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_restop_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_restop_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_restop_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_restop_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_restop_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_restop_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restop_up znunu 1.11883523008 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restop_down znunu 0.880830084755 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_restop_up znunu 1.09991047037 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_restop_down znunu 0.899687887501 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_restop_up znunu 1.08682970645 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_restop_down znunu 0.912583037921 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restop_up znunu 1.16559991191 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restop_down znunu 0.83423516796 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_restop_up znunu 1.19240952478 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_restop_down znunu 0.80741475428 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_restop_up znunu 1.11925515077 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_restop_down znunu 0.880315420739 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restop_up znunu 1.21021013185 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restop_down znunu 0.789738162641 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_restop_up znunu 1.23142715584 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_restop_down znunu 0.768427095514 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_restop_up znunu 1.0929081935 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_restop_down znunu 0.907020234477 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_restop_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_restop_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_restop_up znunu 1.1848133559 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_restop_down znunu 0.815044245698 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_restop_up znunu 1.10524735266 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_restop_down znunu 0.894323648099 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_restop_up znunu 1.16419765674 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_restop_down znunu 0.835763060825 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_restop_up znunu 1.0 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_restop_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restop_up znunu 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restop_down znunu 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_restop_up znunu 1.1856455397 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_restop_down znunu 0.830047203129 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_restop_up znunu 1.35295879785 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_restop_down znunu 0.703942123029 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restop_up znunu 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restop_down znunu 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_down znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_up znunu 1.053415277 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_down znunu 0.946894348555 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_up znunu 1.05319686819 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_down znunu 0.947043603765 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ivfunc_up znunu 1.05340318512 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ivfunc_down znunu 0.946855856786 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ivfunc_up znunu 1.05412396828 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ivfunc_down znunu 0.946180529253 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ivfunc_up znunu 1.05248432356 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ivfunc_down znunu 0.947898640886 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ivfunc_up znunu 1.05309343526 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ivfunc_down znunu 0.947641325593 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ivfunc_up znunu 1.04772044173 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ivfunc_down znunu 0.95241327858 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ivfunc_up znunu 1.05352954775 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ivfunc_down znunu 0.946681089738 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ivfunc_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ivfunc_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ivfunc_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ivfunc_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ivfunc_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ivfunc_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ivfunc_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ivfunc_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ivfunc_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ivfunc_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ivfunc_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ivfunc_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ivfunc_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ivfunc_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ivfunc_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ivfunc_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ivfunc_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ivfunc_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ivfunc_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ivfunc_down znunu 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_up znunu 1.05292117906 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_down znunu 0.947416933078 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ivfunc_up znunu 1.05273521505 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ivfunc_down znunu 0.947563540277 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ivfunc_up znunu 1.053088368 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ivfunc_down znunu 0.947152923653 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ivfunc_up znunu 1.00372036802 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ivfunc_down znunu 0.996281439137 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ivfunc_up znunu 1.00135260537 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ivfunc_down znunu 0.998647295739 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ivfunc_up znunu 1.00746220257 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ivfunc_down znunu 0.992537690758 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_up znunu 1.00188831742 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_down znunu 0.998119202345 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ivfunc_up znunu 1.00317715709 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ivfunc_down znunu 0.996889796842 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ivfunc_up znunu 1.00087958123 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ivfunc_down znunu 0.99912050478 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_up znunu 1.00292119083 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_down znunu 0.99707886973 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ivfunc_up znunu 1.00084719172 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ivfunc_down znunu 0.999152915219 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ivfunc_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ivfunc_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ivfunc_up znunu 1.00240810541 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ivfunc_down znunu 0.997591987164 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ivfunc_up znunu 1.00307788082 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ivfunc_down znunu 0.996922003254 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ivfunc_up znunu 1.00281805728 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ivfunc_down znunu 0.997181859473 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ivfunc_up znunu 1.00559339804 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ivfunc_down znunu 0.994445135897 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ivfunc_up znunu 1.00103504014 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ivfunc_down znunu 0.99896486457 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ivfunc_up znunu 1.00521108461 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ivfunc_down znunu 0.994788915387 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_up znunu 1.0012057429 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_down znunu 0.998794257102 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ivfunc_up znunu 1.00242066953 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ivfunc_down znunu 0.997579330469 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ivfunc_up znunu 1.00218906209 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ivfunc_down znunu 0.997811022052 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_up znunu 1.00313737214 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_down znunu 0.996862693422 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_up znunu 1.00144315722 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_down znunu 0.998556744103 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_up znunu 1.00195897767 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_down znunu 0.998041125072 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_up znunu 1.00188517944 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_down znunu 0.998114820564 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_up znunu 1.00417086412 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_down znunu 0.995829198296 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_up znunu 1.00447947625 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_down znunu 0.995657031583 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_up znunu 1.00252655596 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_down znunu 0.997473444041 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_up znunu 1.00197623654 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_down znunu 0.998023872964 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_up znunu 1.00183117318 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_down znunu 0.998172662897 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_up znunu 1.00243858185 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_down znunu 0.997574673285 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_up znunu 1.00201874189 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_down znunu 0.997991427795 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_up znunu 1.00244594379 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_down znunu 0.99757893269 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_up znunu 1.00175091856 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_down znunu 0.998254153591 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_up znunu 1.00223526196 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_down znunu 0.997817149872 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_up znunu 1.00083484943 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_down znunu 0.99916515057 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_up znunu 1.00194839414 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_down znunu 0.998053621382 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_up znunu 1.0023654215 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_down znunu 0.997645278011 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_up znunu 1.00017156959 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_down znunu 0.999828430408 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_up znunu 1.00416624863 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_down znunu 0.99583385867 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_up znunu 1.00190044648 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_down znunu 0.998099664506 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_up znunu 1.00164891931 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_down znunu 0.998351016957 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_up znunu 1.00179417193 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_down znunu 0.998205894004 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_up znunu 1.00242841956 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_down znunu 0.997571479491 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_up znunu 0.996492745963 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_down znunu 1.00350718053 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ivfunc_up znunu 1.00062505033 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ivfunc_down znunu 0.999374949674 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ivfunc_up znunu 1.00043608609 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ivfunc_down znunu 0.999563913909 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ivfunc_up znunu 1.00123155629 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ivfunc_down znunu 0.998768443711 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ivfunc_up znunu 1.00098341396 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ivfunc_down znunu 0.999016490942 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ivfunc_up znunu 1.00120626402 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ivfunc_down znunu 0.998793829813 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ivfunc_up znunu 1.00444644458 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ivfunc_down znunu 0.995553634389 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ivfunc_up znunu 1.00254975192 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ivfunc_down znunu 0.997457743118 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ivfunc_up znunu 1.00357346565 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ivfunc_down znunu 0.996442805616 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ivfunc_up znunu 1.00360395134 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ivfunc_down znunu 0.99654688989 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ivfunc_up znunu 1.00181612612 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ivfunc_down znunu 0.998186629629 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ivfunc_up znunu 1.00230188025 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ivfunc_down znunu 0.997698027754 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ivfunc_up znunu 1.00270609616 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ivfunc_down znunu 0.997293903836 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ivfunc_up znunu 1.00201555168 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ivfunc_down znunu 0.997984536949 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ivfunc_up znunu 1.00252538563 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ivfunc_down znunu 0.997474614373 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ivfunc_up znunu 1.00657841267 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ivfunc_down znunu 0.993672627868 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ivfunc_up znunu 1.00512569471 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ivfunc_down znunu 0.994874305292 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ivfunc_up znunu 1.00236667519 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ivfunc_down znunu 0.997633324808 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ivfunc_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ivfunc_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ivfunc_up znunu 1.00018996289 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ivfunc_down znunu 0.999810037109 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ivfunc_up znunu 1.00652280113 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ivfunc_down znunu 0.99347729399 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ivfunc_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ivfunc_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ivfunc_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ivfunc_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ivfunc_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ivfunc_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ivfunc_up znunu 1.0046362874 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ivfunc_down znunu 0.995363597044 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ivfunc_up znunu 1.00977737267 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ivfunc_down znunu 0.990222627334 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ivfunc_up znunu 1.00173136655 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ivfunc_down znunu 0.998268696129 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ivfunc_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ivfunc_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_up znunu 1.00111163352 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_down znunu 0.998888436885 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_up znunu 1.00469629659 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_down znunu 0.995303703415 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ivfunc_up znunu 1.00139830644 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ivfunc_down znunu 0.998601606631 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ivfunc_up znunu 1.00008615424 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ivfunc_down znunu 0.999923110805 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ivfunc_up znunu 1.00128911263 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ivfunc_down znunu 0.998710887366 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ivfunc_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ivfunc_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ivfunc_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ivfunc_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ivfunc_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ivfunc_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_up znunu 1.00152851939 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_down znunu 0.99847162334 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ivfunc_up znunu 1.00288810897 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ivfunc_down znunu 0.997111803195 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ivfunc_up znunu 1.00061917044 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ivfunc_down znunu 0.999380829562 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ivfunc_up znunu 1.00413088116 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ivfunc_down znunu 0.995950205533 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ivfunc_up znunu 1.0034879472 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ivfunc_down znunu 0.99670435126 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_up znunu 1.00324441698 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_down znunu 0.996755521968 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ivfunc_up znunu 1.00100071877 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ivfunc_down znunu 0.998999281235 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ivfunc_up znunu 1.00072333416 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ivfunc_down znunu 0.999276605526 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ivfunc_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ivfunc_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ivfunc_up znunu 1.0008379286 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ivfunc_down znunu 0.999162071405 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ivfunc_up znunu 1.00036854419 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ivfunc_down znunu 0.999631455808 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ivfunc_up znunu 1.00005239844 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ivfunc_down znunu 0.999947601559 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ivfunc_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ivfunc_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ivfunc_up znunu 1.00037129377 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ivfunc_down znunu 0.999628610507 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ivfunc_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ivfunc_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ivfunc_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ivfunc_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ivfunc_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ivfunc_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ivfunc_up znunu 1.0171550431 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ivfunc_down znunu 0.982844956903 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ivfunc_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ivfunc_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ivfunc_up znunu 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ivfunc_down znunu 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ivfunc_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ivfunc_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ivfunc_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ivfunc_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ivfunc_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ivfunc_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ivfunc_up znunu 1.00066498154 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ivfunc_down znunu 0.999335018459 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ivfunc_up znunu 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ivfunc_down znunu 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ivfunc_up znunu 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ivfunc_down znunu 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_up znunu 1.02777471044 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_down znunu 0.972225386767 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ivfunc_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ivfunc_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ivfunc_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ivfunc_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ivfunc_up znunu 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ivfunc_down znunu 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ivfunc_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ivfunc_down znunu 1.0 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_up znunu 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_down znunu 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ivfunc_up znunu 1.00283712443 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ivfunc_down znunu 0.997162979936 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ivfunc_up znunu 1.0013812302 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ivfunc_down znunu 0.9986186642 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ivfunc_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ivfunc_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ivfunc_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ivfunc_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ivfunc_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ivfunc_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ivfunc_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ivfunc_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ivfunc_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ivfunc_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ivfunc_up znunu 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ivfunc_down znunu 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ivfunc_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ivfunc_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ivfunc_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ivfunc_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ivfunc_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ivfunc_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ivfunc_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ivfunc_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_up znunu 1.00108599348 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_down znunu 0.998913943494 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ivfunc_up znunu 1.00064705263 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ivfunc_down znunu 0.999352879917 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ivfunc_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ivfunc_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ivfunc_up znunu 1.00696651296 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ivfunc_down znunu 0.99303360246 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ivfunc_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ivfunc_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ivfunc_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ivfunc_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ivfunc_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ivfunc_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ivfunc_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ivfunc_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ivfunc_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ivfunc_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ivfunc_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ivfunc_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ivfunc_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ivfunc_down znunu 1.0 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ivfunc_up znunu 1.0 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ivfunc_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_up znunu 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_down znunu 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ivfunc_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ivfunc_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ivfunc_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ivfunc_down znunu 1.0 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_up znunu 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_down znunu 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_down znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_up znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_down znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_up znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_down znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_toptag_up znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_toptag_down znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_toptag_up znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_toptag_down znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_toptag_up znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_toptag_down znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_toptag_up znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_toptag_down znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_toptag_up znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_toptag_down znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_toptag_up znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_toptag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_toptag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_toptag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_toptag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_toptag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_toptag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_toptag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_toptag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_toptag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_toptag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_toptag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_toptag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_toptag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_toptag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_toptag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_toptag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_toptag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_toptag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_toptag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_toptag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_toptag_down znunu 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_up znunu 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_down znunu 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_toptag_up znunu 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_toptag_down znunu 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_toptag_up znunu 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_toptag_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_toptag_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_toptag_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_toptag_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_toptag_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_toptag_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_toptag_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_toptag_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_toptag_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_toptag_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_toptag_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_toptag_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_toptag_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_toptag_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_toptag_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_toptag_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_toptag_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_toptag_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_toptag_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_toptag_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_toptag_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_toptag_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_toptag_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_toptag_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_toptag_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_toptag_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_toptag_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_toptag_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_toptag_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_toptag_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_toptag_down znunu 1.0 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_up znunu 1.00021857236 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_down znunu 0.999781427643 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_up znunu 1.00089875391 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_down znunu 0.999101147411 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_up znunu 1.0 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_down znunu 1.0 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_up znunu 1.0 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_down znunu 1.0 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_up znunu 1.00029048249 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_down znunu 0.99970957993 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_up znunu 1.0003294766 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_down znunu 0.999670523403 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_up znunu 1.0 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_down znunu 1.0 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_up znunu 1.0 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_down znunu 1.0 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_up znunu 1.0 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_down znunu 1.0 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_up znunu 1.0 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_down znunu 1.0 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_up znunu 1.0 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_down znunu 1.0 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_up znunu 1.0 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_up znunu 1.08051440598 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_down znunu 0.91948559402 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_up znunu 1.07472245372 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_down znunu 0.925277546284 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_up znunu 1.06187158743 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_down znunu 0.93812851987 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_up znunu 1.06865891497 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_down znunu 0.931341196015 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_up znunu 1.06958544016 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_down znunu 0.930414496112 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_up znunu 1.06333464501 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_down znunu 0.936665354989 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_up znunu 1.05894850452 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_down znunu 0.941051495476 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_up znunu 1.05279229348 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_down znunu 0.947207706519 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_up znunu 1.05888448122 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_down znunu 0.941115445274 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_toptag_up znunu 1.08083657471 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_toptag_down znunu 0.919163493899 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_toptag_up znunu 1.04717002334 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_toptag_down znunu 0.952829890221 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_toptag_up znunu 1.08003240617 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_toptag_down znunu 0.919967478273 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_toptag_up znunu 1.08052226034 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_toptag_down znunu 0.919477681261 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_toptag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_toptag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_up znunu 1.07936643719 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_down znunu 0.920633633219 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_up znunu 1.06125366488 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_down znunu 0.938746406369 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_up znunu 1.06093354185 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_down znunu 0.939066458148 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_up znunu 1.06747501499 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_down znunu 0.932524896687 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_up znunu 1.06194433844 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_down znunu 0.938055661563 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_up znunu 1.05889189887 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_down znunu 0.941108009953 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_up znunu 1.06622604623 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_down znunu 0.933774049717 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_up znunu 1.05048561092 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_down znunu 0.94951438908 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_up znunu 1.07294714083 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_down znunu 0.927052859167 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_toptag_up znunu 1.10891040043 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_toptag_down znunu 0.891089525822 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_toptag_up znunu 1.07502337887 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_toptag_down znunu 0.924976621135 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_toptag_up znunu 1.08875502966 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_toptag_down znunu 0.911244970344 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_toptag_up znunu 1.06644116133 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_toptag_down znunu 0.933558770637 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_toptag_up znunu 1.07236317282 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_toptag_down znunu 0.927636827176 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_toptag_up znunu 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_toptag_down znunu 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_toptag_up znunu 1.04717011056 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_toptag_down znunu 0.9528299604 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_toptag_up znunu 1.05820020039 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_toptag_down znunu 0.941799883089 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_toptag_up znunu 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_toptag_down znunu 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_toptag_up znunu 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_toptag_down znunu 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_toptag_up znunu 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_toptag_down znunu 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_toptag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_toptag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_up znunu 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_down znunu 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_toptag_up znunu 1.07095211433 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_toptag_down znunu 0.929047990035 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_toptag_up znunu 1.08093470424 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_toptag_down znunu 0.919065295757 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_toptag_up znunu 1.06153164784 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_toptag_down znunu 0.938468271221 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_toptag_up znunu 1.07358389797 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_toptag_down znunu 0.92641603589 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_toptag_up znunu 1.07343875009 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_toptag_down znunu 0.926561249909 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_toptag_up znunu 1.06022046505 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_toptag_down znunu 0.939779445206 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_toptag_up znunu 1.05084158108 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_toptag_down znunu 0.949158354036 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_toptag_up znunu 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_toptag_down znunu 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_toptag_up znunu 1.0531980748 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_toptag_down znunu 0.946801984457 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_toptag_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_toptag_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_toptag_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_toptag_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_toptag_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_toptag_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_toptag_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_toptag_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_toptag_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_toptag_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_toptag_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_toptag_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_toptag_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_toptag_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_toptag_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_toptag_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_toptag_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_toptag_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_toptag_up znunu 1.07618869092 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_toptag_down znunu 0.923811309076 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_toptag_up znunu 1.09259153954 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_toptag_down znunu 0.907408460462 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_toptag_up znunu 1.07834069055 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_toptag_down znunu 0.921659415905 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_toptag_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_toptag_down znunu 1.0 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_toptag_up znunu 1.10287754276 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_toptag_down znunu 0.902141264226 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_up znunu 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_down znunu 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_toptag_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_toptag_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_toptag_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_toptag_down znunu 1.0 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_up znunu 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_down znunu 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_down znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_up znunu 1.0 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_down znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_up znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_down znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_up znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_down znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_wtag_up znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_wtag_down znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_wtag_up znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_wtag_down znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_wtag_up znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_wtag_down znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_wtag_up znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_wtag_down znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_wtag_up znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_wtag_down znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_wtag_up znunu 1.0 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_wtag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_wtag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_wtag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_wtag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_wtag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_wtag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_wtag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_wtag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_wtag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_wtag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_wtag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_wtag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_wtag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_wtag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_wtag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_wtag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_wtag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_wtag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_wtag_down znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_wtag_up znunu 1.0 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_wtag_down znunu 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_up znunu 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_down znunu 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_wtag_up znunu 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_wtag_down znunu 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_wtag_up znunu 1.0 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_wtag_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_wtag_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_wtag_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_wtag_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_wtag_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_wtag_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_wtag_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_wtag_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_wtag_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_wtag_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_wtag_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_wtag_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_wtag_down znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_wtag_up znunu 1.0 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_wtag_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_wtag_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_wtag_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_wtag_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_wtag_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_wtag_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_wtag_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_wtag_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_wtag_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_wtag_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_wtag_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_wtag_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_wtag_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_wtag_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_wtag_down znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_wtag_up znunu 1.0 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_wtag_down znunu 1.0 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_up znunu 1.00069682231 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_down znunu 0.999303177691 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_up znunu 1.0 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_down znunu 1.0 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_up znunu 1.00290266099 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_down znunu 0.99709744175 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_up znunu 1.00007643302 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_down znunu 0.999923566984 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_up znunu 1.000330803 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_down znunu 0.999669196998 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_up znunu 1.00019733055 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_down znunu 0.999802669447 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_up znunu 1.00177931698 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_down znunu 0.99822068302 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_up znunu 1.0 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_down znunu 1.0 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_up znunu 1.0 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_down znunu 1.0 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_up znunu 1.0 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_down znunu 1.0 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_up znunu 1.0 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_down znunu 1.0 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_up znunu 1.0 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_wtag_up znunu 1.11209519907 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_wtag_down znunu 0.888031646491 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_wtag_up znunu 1.11036203185 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_wtag_down znunu 0.88970910674 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_wtag_up znunu 1.11427875608 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_wtag_down znunu 0.885904926545 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_wtag_up znunu 1.09073113561 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_wtag_down znunu 0.909776119978 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_wtag_up znunu 1.10413644595 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_wtag_down znunu 0.89586355405 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_wtag_up znunu 1.0904226215 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_wtag_down znunu 0.90957745747 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_wtag_up znunu 1.14877312599 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_wtag_down znunu 0.851226942621 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_wtag_up znunu 1.13708345845 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_wtag_down znunu 0.862916455108 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_wtag_up znunu 1.0 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_wtag_down znunu 1.0 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_wtag_up znunu 1.11398432607 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_wtag_down znunu 0.886015673931 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_wtag_up znunu 1.10397541755 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_wtag_down znunu 0.896024582446 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_wtag_up znunu 1.1006325109 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_wtag_down znunu 0.899367489102 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_wtag_up znunu 1.11801437168 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_wtag_down znunu 0.881985521828 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_wtag_up znunu 1.11219313579 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_wtag_down znunu 0.88780686421 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_wtag_up znunu 1.14383934639 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_wtag_down znunu 0.856160653609 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_wtag_up znunu 1.04654497524 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_wtag_down znunu 0.953455133839 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_wtag_up znunu 1.0672959869 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_wtag_down znunu 0.932703903904 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_wtag_up znunu 1.136642172 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_wtag_down znunu 0.863357754255 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_wtag_up znunu 1.13455228522 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_wtag_down znunu 0.865447640215 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_wtag_up znunu 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_wtag_down znunu 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_wtag_up znunu 1.13012499111 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_wtag_down znunu 0.86987493766 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_wtag_up znunu 1.05008346142 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_wtag_down znunu 0.949916538584 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_wtag_up znunu 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_wtag_down znunu 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_wtag_up znunu 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_wtag_down znunu 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_up znunu 1.32629401466 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_down znunu 0.719304247562 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_wtag_up znunu 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_wtag_down znunu 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_wtag_up znunu 1.0 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_wtag_down znunu 1.0 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_up znunu 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_down znunu 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_wtag_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_wtag_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_wtag_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_wtag_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_wtag_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_wtag_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_wtag_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_wtag_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_wtag_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_wtag_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_wtag_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_wtag_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_wtag_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_wtag_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_wtag_up znunu 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_wtag_down znunu 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_wtag_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_wtag_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_wtag_up znunu 1.14346112463 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_wtag_down znunu 0.856538875367 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_wtag_up znunu 1.15019483105 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_wtag_down znunu 0.849805110665 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_wtag_up znunu 1.0690986866 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_wtag_down znunu 0.930901392966 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_wtag_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_wtag_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_wtag_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_wtag_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_wtag_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_wtag_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_wtag_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_wtag_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_wtag_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_wtag_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_wtag_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_wtag_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_wtag_up znunu 1.16685273713 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_wtag_down znunu 0.833147348391 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_wtag_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_wtag_down znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_wtag_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_wtag_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_wtag_up znunu 1.06656247886 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_wtag_down znunu 0.933437618615 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_wtag_up znunu 1.0 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_wtag_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_up znunu 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_down znunu 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_wtag_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_wtag_down znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_wtag_up znunu 1.0 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_wtag_down znunu 1.0 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_up znunu 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_down znunu 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_up znunu 1.00128290308 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_down znunu 0.998218077417 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_up znunu 1.00134971833 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_down znunu 0.997920644976 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_up znunu 1.00135129246 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_down znunu 0.99791947374 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_up znunu 1.00131636918 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_down znunu 0.997954373387 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_up znunu 1.00141058902 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_down znunu 0.99812427051 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_up znunu 1.00157511631 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_down znunu 0.997701663686 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_up znunu 1.00163119018 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_down znunu 0.997647753516 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_up znunu 1.00156179589 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_down znunu 0.997716458872 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_up znunu 1.00112013235 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_down znunu 0.99838239424 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_up znunu 1.00107394794 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_down znunu 0.998191333088 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 trigger_err_up znunu 1.0010589619 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 trigger_err_down znunu 0.99820649704 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf trigger_err_up znunu 1.00106237467 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf trigger_err_down znunu 0.998205559399 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 trigger_err_up znunu 1.00115397695 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 trigger_err_down znunu 0.998420516906 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 trigger_err_up znunu 1.00137032589 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 trigger_err_down znunu 0.997896847655 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 trigger_err_up znunu 1.00147601286 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 trigger_err_down znunu 0.997786085293 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf trigger_err_up znunu 1.00106410088 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf trigger_err_down znunu 0.998206223407 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_up znunu 1.00127402703 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_down znunu 0.998607111898 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 trigger_err_up znunu 1.00118794142 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 trigger_err_down znunu 0.998557363328 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 trigger_err_up znunu 1.00147410703 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 trigger_err_down znunu 0.997791342015 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf trigger_err_up znunu 1.00161748131 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf trigger_err_down znunu 0.997660993526 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_up znunu 1.00126501264 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_down znunu 0.99861995417 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 trigger_err_up znunu 1.00122483392 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 trigger_err_down znunu 0.998519177989 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 trigger_err_up znunu 1.00146009236 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 trigger_err_down znunu 0.997799063552 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf trigger_err_up znunu 1.00162039642 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf trigger_err_down znunu 0.997654226988 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_up znunu 1.00119234602 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_down znunu 0.998317001266 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_up znunu 1.00127924309 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_down znunu 0.997974949493 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 trigger_err_up znunu 1.00120074906 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 trigger_err_down znunu 0.99806354915 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf trigger_err_up znunu 1.00128825009 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf trigger_err_down znunu 0.997974568679 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_up znunu 1.00113383145 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_down znunu 0.998384504264 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_up znunu 1.00138896022 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_down znunu 0.99787436315 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 trigger_err_up znunu 1.00130497004 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 trigger_err_down znunu 0.997953926404 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf trigger_err_up znunu 1.00146356538 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf trigger_err_down znunu 0.997831664414 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_up znunu 1.00123487585 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_down znunu 0.998650451925 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 trigger_err_up znunu 1.00110082835 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 trigger_err_down znunu 0.998648206077 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf trigger_err_up znunu 1.00102244898 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf trigger_err_down znunu 0.998237685042 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 trigger_err_up znunu 1.00128104721 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 trigger_err_down znunu 0.998595953282 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 trigger_err_up znunu 1.00116610049 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 trigger_err_down znunu 0.998580051138 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf trigger_err_up znunu 1.0009319753 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf trigger_err_down znunu 0.998287307386 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_up znunu 1.00127855024 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_down znunu 0.99860151429 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 trigger_err_up znunu 1.00116157067 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 trigger_err_down znunu 0.998584738911 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf trigger_err_up znunu 1.0016091537 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf trigger_err_down znunu 0.997666348672 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_up znunu 1.00136482512 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_down znunu 0.998491534578 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 trigger_err_up znunu 1.00157364633 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 trigger_err_down znunu 0.998155898249 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf trigger_err_up znunu 1.00085633511 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf trigger_err_down znunu 0.99837031157 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 trigger_err_up znunu 1.00141220344 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 trigger_err_down znunu 0.998119654132 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 trigger_err_up znunu 1.00121202425 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 trigger_err_down znunu 0.998048936566 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf trigger_err_up znunu 1.00129718379 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf trigger_err_down znunu 0.99796806174 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 trigger_err_up znunu 1.00127845133 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 trigger_err_down znunu 0.99826277069 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 trigger_err_up znunu 1.00120036831 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 trigger_err_down znunu 0.998048365209 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf trigger_err_up znunu 1.00137988139 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf trigger_err_down znunu 0.997898857558 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_up znunu 1.00133889762 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_down znunu 0.99837198794 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 trigger_err_up znunu 1.00184409177 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 trigger_err_down znunu 0.997425420145 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf trigger_err_up znunu 1.00123686426 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf trigger_err_down znunu 0.997985961898 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_up znunu 1.00221312706 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_down znunu 0.99759786751 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_up znunu 1.00133145438 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_down znunu 0.998549244619 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_up znunu 1.00143930971 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_down znunu 0.998295719222 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_up znunu 1.00226522418 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_down znunu 0.997053239685 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_up znunu 1.00225676305 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_down znunu 0.997545254475 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_up znunu 1.00126491873 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_down znunu 0.998628782862 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_up znunu 1.00141121856 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_down znunu 0.998325301314 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_up znunu 1.00163874216 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_down znunu 0.997623632228 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_up znunu 1.0017804517 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_down znunu 0.998069685512 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_up znunu 1.00143524814 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_down znunu 0.998343470852 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_up znunu 1.00158503482 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_down znunu 0.997945664221 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_up znunu 1.00176464516 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_down znunu 0.997506437248 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_up znunu 1.00175537382 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_down znunu 0.998095134955 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_up znunu 1.00143747001 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_down znunu 0.998339608926 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_up znunu 1.0016079304 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_down znunu 0.997945964089 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_up znunu 1.00177040763 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_down znunu 0.997498963942 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_up znunu 1.00151136823 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_down znunu 0.998233999979 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_up znunu 1.00170790352 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_down znunu 0.99757458014 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_up znunu 1.00150427897 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_down znunu 0.997757262661 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_up znunu 1.00163574025 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_down znunu 0.998125191732 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_up znunu 1.00219993993 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_down znunu 0.997123871231 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_up znunu 1.00158087047 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_down znunu 0.997679794344 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_up znunu 1.00172625028 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_down znunu 0.998063078746 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_up znunu 1.00257765446 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_down znunu 0.996688473802 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_up znunu 1.00129280007 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_down znunu 0.997929035296 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 trigger_err_up znunu 1.0018645532 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 trigger_err_down znunu 0.9979685045 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 trigger_err_up znunu 1.00162440901 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 trigger_err_down znunu 0.998145348756 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf trigger_err_up znunu 1.00245924557 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf trigger_err_down znunu 0.997006099272 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 trigger_err_up znunu 1.00191195606 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 trigger_err_down znunu 0.997914774404 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 trigger_err_up znunu 1.00172185368 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 trigger_err_down znunu 0.998033909755 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf trigger_err_up znunu 1.00273058193 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf trigger_err_down znunu 0.996642345254 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 trigger_err_up znunu 1.00181652506 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 trigger_err_down znunu 0.998032362824 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 trigger_err_up znunu 1.00143019489 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 trigger_err_down znunu 0.998352953521 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 trigger_err_up znunu 1.0016324434 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 trigger_err_down znunu 0.997929059849 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 trigger_err_up znunu 1.00193057591 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 trigger_err_down znunu 0.997351292564 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf trigger_err_up znunu 1.00204954001 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf trigger_err_down znunu 0.997244680064 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 trigger_err_up znunu 1.00180061597 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 trigger_err_down znunu 0.998047206344 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 trigger_err_up znunu 1.00147277702 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 trigger_err_down znunu 0.998299441972 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 trigger_err_up znunu 1.0015885685 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 trigger_err_down znunu 0.997949274066 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 trigger_err_up znunu 1.00199315726 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 trigger_err_down znunu 0.997286879398 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf trigger_err_up znunu 1.00158930097 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf trigger_err_down znunu 0.997676230383 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 trigger_err_up znunu 1.00171017553 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 trigger_err_down znunu 0.998138639589 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 trigger_err_up znunu 1.00143785831 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 trigger_err_down znunu 0.998338774828 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 trigger_err_up znunu 1.00161875871 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 trigger_err_down znunu 0.997846007343 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 trigger_err_up znunu 1.00281801521 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 trigger_err_down znunu 0.996530341959 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf trigger_err_up znunu 1.00234025846 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf trigger_err_down znunu 0.996954835107 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 trigger_err_up znunu 1.00190836016 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 trigger_err_down znunu 0.997887946959 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf trigger_err_up znunu 1.00363794499 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf trigger_err_down znunu 0.995681868984 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 trigger_err_up znunu 1.00149620281 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 trigger_err_down znunu 0.99823709684 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf trigger_err_up znunu 1.00203604258 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf trigger_err_down znunu 0.997293647166 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 trigger_err_up znunu 1.00178808848 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 trigger_err_down znunu 0.99798370758 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf trigger_err_up znunu 1.00245535225 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf trigger_err_down znunu 0.996840423796 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_up znunu 1.00149668157 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_down znunu 0.998232186582 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_up znunu 1.00098312072 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_down znunu 0.998220934828 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_up znunu 1.00133383104 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_down znunu 0.997895125776 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_up znunu 1.00161813341 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_down znunu 0.998160874788 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_up znunu 1.00141755592 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_down znunu 0.997882421789 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_up znunu 1.00163304681 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_down znunu 0.997634771952 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_up znunu 1.00179264704 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_down znunu 0.998004811862 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_up znunu 1.00122611548 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_down znunu 0.99797132548 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_up znunu 1.0016944247 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_down znunu 0.997597340124 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 trigger_err_up znunu 1.00173855955 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 trigger_err_down znunu 0.99810487533 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 trigger_err_up znunu 1.00173426668 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 trigger_err_down znunu 0.998034426764 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf trigger_err_up znunu 1.00240003208 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf trigger_err_down znunu 0.99705613465 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 trigger_err_up znunu 1.00133995973 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 trigger_err_down znunu 0.998554374947 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 trigger_err_up znunu 1.00131885829 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 trigger_err_down znunu 0.998481965859 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf trigger_err_up znunu 1.00285165165 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf trigger_err_down znunu 0.996606497406 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_up znunu 1.00175902117 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_down znunu 0.998096683293 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 trigger_err_up znunu 1.00143939908 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 trigger_err_down znunu 0.998342148156 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 trigger_err_up znunu 1.00165154396 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 trigger_err_down znunu 0.997939621757 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 trigger_err_up znunu 1.00196175886 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 trigger_err_down znunu 0.997340384778 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf trigger_err_up znunu 1.00157695814 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf trigger_err_down znunu 0.997696755286 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_up znunu 1.00175741034 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_down znunu 0.99809984777 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 trigger_err_up znunu 1.00155057087 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 trigger_err_down znunu 0.998222573097 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 trigger_err_up znunu 1.00174518238 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 trigger_err_down znunu 0.997850505673 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 trigger_err_up znunu 1.00196031472 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 trigger_err_down znunu 0.99733503119 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf trigger_err_up znunu 1.00209259194 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf trigger_err_down znunu 0.997209112999 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_up znunu 1.00174130699 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_down znunu 0.998123597784 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 trigger_err_up znunu 1.0014562209 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 trigger_err_down znunu 0.998311250608 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 trigger_err_up znunu 1.00094083273 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 trigger_err_down znunu 0.998639277981 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 trigger_err_up znunu 1.00280567298 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 trigger_err_down znunu 0.996471904454 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf trigger_err_up znunu 1.00228586404 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf trigger_err_down znunu 0.997068320256 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 trigger_err_up znunu 1.00182089467 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 trigger_err_down znunu 0.997961559595 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf trigger_err_up znunu 1.00363794679 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf trigger_err_down znunu 0.995681900098 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 trigger_err_up znunu 1.00167863849 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 trigger_err_down znunu 0.998163691097 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 trigger_err_up znunu 1.00113145015 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 trigger_err_down znunu 0.99867348866 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf trigger_err_up znunu 1.0016059365 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf trigger_err_down znunu 0.997778947985 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 trigger_err_up znunu 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 trigger_err_down znunu 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 trigger_err_up znunu 1.00182098992 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 trigger_err_down znunu 0.99796165788 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf trigger_err_up znunu 1.00169179834 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf trigger_err_down znunu 0.997941040097 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 trigger_err_up znunu 1.00171853345 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 trigger_err_down znunu 0.998115439465 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf trigger_err_up znunu 1.00187625599 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf trigger_err_down znunu 0.997541465149 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 trigger_err_up znunu 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 trigger_err_down znunu 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf trigger_err_up znunu 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf trigger_err_down znunu 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_up znunu 1.00237742617 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_down znunu 0.997354483982 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 trigger_err_up znunu 1.00158734881 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 trigger_err_down znunu 0.998242473481 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf trigger_err_up znunu 1.0024287281 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf trigger_err_down znunu 0.997112175146 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 trigger_err_up znunu 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 trigger_err_down znunu 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf trigger_err_up znunu 1.00363805682 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf trigger_err_down znunu 0.995681917264 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_up znunu 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_down znunu 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 trigger_err_up znunu 1.00188355423 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 trigger_err_down znunu 0.997938818928 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 trigger_err_up znunu 1.00157690448 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 trigger_err_down znunu 0.998149383848 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf trigger_err_up znunu 1.00107986894 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf trigger_err_down znunu 0.998116259199 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 trigger_err_up znunu 1.00146882338 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 trigger_err_down znunu 0.99841854125 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 trigger_err_up znunu 1.00141502744 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 trigger_err_down znunu 0.998208533274 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf trigger_err_up znunu 1.00081772048 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf trigger_err_down znunu 0.998389866009 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 trigger_err_up znunu 1.00202514846 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 trigger_err_down znunu 0.997849050206 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 trigger_err_up znunu 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 trigger_err_down znunu 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf trigger_err_up znunu 1.0 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf trigger_err_down znunu 0.999135275873 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 trigger_err_up znunu 1.00163439041 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 trigger_err_down znunu 0.998228811258 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 trigger_err_up znunu 1.0020882624 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 trigger_err_down znunu 0.997622740645 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf trigger_err_up znunu 1.00120744898 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf trigger_err_down znunu 0.997989202816 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_up znunu 1.00175366201 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_down znunu 0.99809639147 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 trigger_err_up znunu 1.00139009732 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 trigger_err_down znunu 0.998362738295 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf trigger_err_up znunu 1.00222446619 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf trigger_err_down znunu 0.997127462343 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_up znunu 1.00185600965 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_down znunu 0.997987607453 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 trigger_err_up znunu 1.00123021971 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 trigger_err_down znunu 0.998324735992 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf trigger_err_up znunu 1.00111536727 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf trigger_err_down znunu 0.998136604671 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_up znunu 1.00174648182 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_down znunu 0.998123740791 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 trigger_err_up znunu 1.00153803006 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 trigger_err_down znunu 0.998244405909 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf trigger_err_up znunu 1.00363801386 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf trigger_err_down znunu 0.995681901415 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf trigger_err_up znunu 1.00182099626 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf trigger_err_down znunu 0.997961619857 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 trigger_err_up znunu 1.002320534 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 trigger_err_down znunu 0.997413961451 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf trigger_err_up znunu 1.00102800141 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf trigger_err_down znunu 0.998375870613 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf trigger_err_up znunu 1.0024991622 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf trigger_err_down znunu 0.997103042215 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf trigger_err_up znunu 1.0011566343 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf trigger_err_down znunu 0.998768330562 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_up znunu 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_down znunu 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 trigger_err_up znunu 1.00204833259 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 trigger_err_down znunu 0.997730894816 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf trigger_err_up znunu 1.00105497351 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf trigger_err_down znunu 0.998694594757 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_up znunu 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_down znunu 1 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_up znunu 0.996092563339 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_down znunu 1.00369236462 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_up znunu 0.996395901484 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_down znunu 1.0034615893 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_up znunu 0.996427170686 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_down znunu 1.00350126112 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_up znunu 0.997085029071 -bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_down znunu 1.00275537034 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_up znunu 0.997395605475 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_down znunu 1.00256384435 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_up znunu 0.996523636832 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_down znunu 1.00319759048 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_up znunu 1.0001561154 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_down znunu 0.999587130052 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_up znunu 1.0014664943 -bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_down znunu 0.998191631781 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_up znunu 1.01468725385 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_down znunu 0.985575566232 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_up znunu 1.01180021667 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_down znunu 0.988366626335 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PU_Weight_up znunu 1.01399877653 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PU_Weight_down znunu 0.98626477122 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PU_Weight_up znunu 1.01313257819 -bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PU_Weight_down znunu 0.98685666714 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PU_Weight_up znunu 1.02501282271 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PU_Weight_down znunu 0.97311989115 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PU_Weight_up znunu 0.99301257597 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PU_Weight_down znunu 1.01072119455 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PU_Weight_up znunu 1.01077835887 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PU_Weight_down znunu 0.988175652711 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PU_Weight_up znunu 1.01850793718 -bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PU_Weight_down znunu 0.979923958342 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_up znunu 1.0080845978 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_down znunu 0.992277639725 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PU_Weight_up znunu 1.00862329898 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PU_Weight_down znunu 0.99169802944 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PU_Weight_up znunu 1.01823437494 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PU_Weight_down znunu 0.981637627535 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PU_Weight_up znunu 1.01339415338 -bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PU_Weight_down znunu 0.986133401597 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_up znunu 1.0025596999 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_down znunu 0.997539332963 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PU_Weight_up znunu 1.00517791935 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PU_Weight_down znunu 0.996198791298 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PU_Weight_up znunu 1.00255495581 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PU_Weight_down znunu 0.997391276317 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PU_Weight_up znunu 1.00411880042 -bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PU_Weight_down znunu 0.991288292628 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_up znunu 1.00694877755 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_down znunu 0.993847201623 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_up znunu 1.00985089032 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_down znunu 0.990392226025 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PU_Weight_up znunu 1.009864269 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PU_Weight_down znunu 0.991587944526 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PU_Weight_up znunu 1.01118876806 -bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PU_Weight_down znunu 0.988966619258 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_up znunu 1.00043316719 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_down znunu 1.00039179205 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_up znunu 1.00457494816 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_down znunu 0.995477419829 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PU_Weight_up znunu 1.00129016839 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PU_Weight_down znunu 1.00014240213 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PU_Weight_up znunu 1.00079666453 -bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PU_Weight_down znunu 0.998798703994 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PU_Weight_up znunu 1.01103650223 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PU_Weight_down znunu 0.987712151381 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PU_Weight_up znunu 1.03341761401 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PU_Weight_down znunu 0.967563601285 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PU_Weight_up znunu 1.02485131359 -bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PU_Weight_down znunu 0.975742155769 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PU_Weight_up znunu 1.0027467631 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PU_Weight_down znunu 0.997018419656 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PU_Weight_up znunu 1.0034445058 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PU_Weight_down znunu 0.996573294242 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PU_Weight_up znunu 0.985895673382 -bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PU_Weight_down znunu 1.01368970055 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_up znunu 0.997420720985 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_down znunu 1.00298686925 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PU_Weight_up znunu 0.997474207669 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PU_Weight_down znunu 1.00171076241 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PU_Weight_up znunu 1.0307313263 -bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PU_Weight_down znunu 0.978923595906 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_up znunu 1.00433906354 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_down znunu 0.997628723846 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PU_Weight_up znunu 0.998261235771 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PU_Weight_down znunu 0.999370541469 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PU_Weight_up znunu 0.995104734164 -bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PU_Weight_down znunu 1.00643392496 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PU_Weight_up znunu 1.01046308053 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PU_Weight_down znunu 0.991768025011 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PU_Weight_up znunu 0.99712916608 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PU_Weight_down znunu 1.0046635401 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PU_Weight_up znunu 1.0098663223 -bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PU_Weight_down znunu 0.989576243305 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PU_Weight_up znunu 0.996800509288 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PU_Weight_down znunu 1.00350925658 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PU_Weight_up znunu 0.998073235903 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PU_Weight_down znunu 0.999041954192 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PU_Weight_up znunu 0.993435691018 -bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PU_Weight_down znunu 1.00809004333 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_up znunu 0.98376209689 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_down znunu 1.01748944445 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PU_Weight_up znunu 1.04156379529 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PU_Weight_down znunu 0.952065430638 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PU_Weight_up znunu 1.00099275628 -bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PU_Weight_down znunu 0.99426678621 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_up znunu 0.991427164728 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_down znunu 1.0076856308 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_up znunu 0.998171902178 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_down znunu 1.00069419563 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_up znunu 1.02161687217 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_down znunu 0.981281370921 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_up znunu 0.99720045149 -bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_down znunu 1.00478923015 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_up znunu 0.98368535766 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_down znunu 1.01656929824 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_up znunu 0.99942198222 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_down znunu 0.997816036229 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_up znunu 1.01920833774 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_down znunu 0.982379958166 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_up znunu 0.995278692388 -bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_down znunu 1.00417531574 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_up znunu 1.00623925312 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_down znunu 0.994055101937 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_up znunu 1.00875859908 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_down znunu 0.991397058158 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_up znunu 1.00310468456 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_down znunu 0.996642090332 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_up znunu 1.00338497013 -bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_down znunu 0.996497537258 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_up znunu 1.01243793047 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_down znunu 0.987659605531 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_up znunu 1.00460970318 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_down znunu 0.996222053979 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_up znunu 1.00567547345 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_down znunu 0.99515713642 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_up znunu 1.00950243313 -bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_down znunu 0.99094904485 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_up znunu 1.00819557712 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_down znunu 0.991868537008 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_up znunu 0.997737058595 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_down znunu 1.00191474399 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_up znunu 1.00788654653 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_down znunu 0.992381710655 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_up znunu 1.00217625151 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_down znunu 0.998167922088 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_up znunu 1.01684366648 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_down znunu 0.982094188071 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_up znunu 1.00561085056 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_down znunu 0.995793312659 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_up znunu 1.01919518439 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_down znunu 0.982371169955 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_up znunu 1.01510109166 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_down znunu 0.978179602122 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_up znunu 1.04949402024 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_down znunu 0.937396779798 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PU_Weight_up znunu 1.00288150276 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PU_Weight_down znunu 0.998170845559 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PU_Weight_up znunu 1.01433905287 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PU_Weight_down znunu 0.985099316855 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PU_Weight_up znunu 1.0088034838 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PU_Weight_down znunu 0.992767023681 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PU_Weight_up znunu 1.00397188545 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PU_Weight_down znunu 0.993644279552 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PU_Weight_up znunu 0.981007065314 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PU_Weight_down znunu 1.02466901864 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PU_Weight_up znunu 1.01145772044 -bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PU_Weight_down znunu 0.992126962939 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PU_Weight_up znunu 1.00196453317 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PU_Weight_down znunu 0.997948403239 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PU_Weight_up znunu 1.00185502283 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PU_Weight_down znunu 0.998192804827 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PU_Weight_up znunu 1.00056715748 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PU_Weight_down znunu 0.998576854848 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PU_Weight_up znunu 1.00527390487 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PU_Weight_down znunu 0.995715754259 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PU_Weight_up znunu 1.01459875234 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PU_Weight_down znunu 0.984537973573 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_up znunu 0.999690472436 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_down znunu 1.00164004783 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_up znunu 0.99020426461 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_down znunu 1.00937810734 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_up znunu 0.999668903198 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_down znunu 1.00195774037 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_up znunu 1.00913651574 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_down znunu 0.989248143006 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_up znunu 1.00418644855 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_down znunu 0.997009338309 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PU_Weight_up znunu 0.978032357051 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PU_Weight_down znunu 1.02135026836 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PU_Weight_up znunu 1.03563438954 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PU_Weight_down znunu 0.972944886598 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PU_Weight_up znunu 1.01919106242 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PU_Weight_down znunu 0.974548212287 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PU_Weight_up znunu 1.01967131938 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PU_Weight_down znunu 0.995571377861 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PU_Weight_up znunu 1.00929837335 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PU_Weight_down znunu 0.992270842411 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PU_Weight_up znunu 0.944817545991 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PU_Weight_down znunu 1.06233009156 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PU_Weight_up znunu 0.986038942011 -bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PU_Weight_down znunu 1.00690973571 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PU_Weight_up znunu 1.01685620148 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PU_Weight_down znunu 0.976274531261 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PU_Weight_up znunu 0.984742294965 -bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PU_Weight_down znunu 1.01337326774 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PU_Weight_up znunu 0.988651100371 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PU_Weight_down znunu 1.01011292554 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PU_Weight_up znunu 1.03348029467 -bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PU_Weight_down znunu 0.962500179462 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_up znunu 1.00271223371 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_down znunu 0.996529568719 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_up znunu 0.984806303202 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_down znunu 1.01867252483 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_up znunu 0.998787446616 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_down znunu 1.00519038621 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_up znunu 1.00818358607 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_down znunu 0.995759024251 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_up znunu 1.0085721029 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_down znunu 1.00090368866 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_up znunu 0.992010744737 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_down znunu 1.00878590127 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_up znunu 1.02362179945 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_down znunu 0.971782119891 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_up znunu 0.961315105113 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_down znunu 1.03909664898 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_up znunu 1.0526952227 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_down znunu 0.949617166957 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PU_Weight_up znunu 1.02966070053 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PU_Weight_down znunu 0.967459144633 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PU_Weight_up znunu 1.06245276959 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PU_Weight_down znunu 0.946831547488 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PU_Weight_up znunu 1.00907990387 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PU_Weight_down znunu 0.989926924184 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PU_Weight_up znunu 1.02181378118 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PU_Weight_down znunu 0.989307399696 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PU_Weight_up znunu 1.0351305409 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PU_Weight_down znunu 0.976017852963 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PU_Weight_up znunu 1.06085143325 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PU_Weight_down znunu 0.987685503686 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_up znunu 1.00099765166 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_down znunu 0.998803888444 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PU_Weight_up znunu 1.0081996646 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PU_Weight_down znunu 0.99098203786 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PU_Weight_up znunu 1.00913937 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PU_Weight_down znunu 0.989918098556 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PU_Weight_up znunu 1.0001182603 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PU_Weight_down znunu 1.00030959085 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PU_Weight_up znunu 1.00905131527 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PU_Weight_down znunu 0.989721444047 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_up znunu 1.00513724285 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_down znunu 0.995066796246 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_up znunu 1.01388339928 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_down znunu 0.98702264525 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_up znunu 0.995927445338 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_down znunu 1.00709997833 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_up znunu 1.01474657214 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_down znunu 0.984953319107 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_up znunu 1.00597258227 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_down znunu 0.991166268055 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_up znunu 0.982553417055 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_down znunu 1.01529822987 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PU_Weight_up znunu 1.00862285674 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PU_Weight_down znunu 0.992927071344 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PU_Weight_up znunu 0.976163933514 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PU_Weight_down znunu 1.0283752374 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PU_Weight_up znunu 0.998175658395 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PU_Weight_down znunu 0.99831587111 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PU_Weight_up znunu 0.992540335723 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PU_Weight_down znunu 1.004775418 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PU_Weight_up znunu 1.05352650116 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PU_Weight_down znunu 0.939560042881 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PU_Weight_up znunu 1.00236868057 -bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PU_Weight_down znunu 0.991707008351 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PU_Weight_up znunu 0.971764403446 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PU_Weight_down znunu 1.02334654705 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PU_Weight_up znunu 0.959854543 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PU_Weight_down znunu 1.04050462268 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PU_Weight_up znunu 0.946353316807 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PU_Weight_down znunu 1.05244236705 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PU_Weight_up znunu 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PU_Weight_down znunu 1 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PU_Weight_up znunu 0.959415455281 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PU_Weight_down znunu 1.0383671691 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PU_Weight_up znunu 1.07234886059 -bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PU_Weight_down znunu 0.920781261036 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PU_Weight_up znunu 1.00115257412 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PU_Weight_down znunu 0.996555596851 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PU_Weight_up znunu 0.966328738258 -bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PU_Weight_down znunu 0.986727141869 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PU_Weight_up znunu 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PU_Weight_down znunu 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PU_Weight_up znunu 1 -bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PU_Weight_down znunu 1 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_up znunu 0.85287942878 -bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_down znunu 1.16547276934 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PU_Weight_up znunu 1.01439214564 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PU_Weight_down znunu 0.990807749082 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PU_Weight_up znunu 0.964041050318 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PU_Weight_down znunu 1.03988775676 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PU_Weight_up znunu 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PU_Weight_down znunu 1 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PU_Weight_up znunu 0.998526712805 -bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PU_Weight_down znunu 0.995092009102 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_up znunu 1 -bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_down znunu 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PU_Weight_up znunu 1.08270909117 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PU_Weight_down znunu 0.923615134183 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PU_Weight_up znunu 1.03925692772 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PU_Weight_down znunu 0.959371979549 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PU_Weight_up znunu 0.980409548916 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PU_Weight_down znunu 1.01768971339 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PU_Weight_up znunu 1.00709735089 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PU_Weight_down znunu 1.00953974597 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PU_Weight_up znunu 1.00409657027 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PU_Weight_down znunu 0.997012324508 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PU_Weight_up znunu 0.989746097431 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PU_Weight_down znunu 1.01065603223 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PU_Weight_up znunu 0.954916863095 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PU_Weight_down znunu 1.0454766959 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PU_Weight_up znunu 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PU_Weight_down znunu 1 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PU_Weight_up znunu 1.10442432734 -bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PU_Weight_down znunu 0.879966015488 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PU_Weight_up znunu 0.997135274271 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PU_Weight_down znunu 1.01272544764 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PU_Weight_up znunu 0.986422039311 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PU_Weight_down znunu 1.01112504219 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PU_Weight_up znunu 1.18559515595 -bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PU_Weight_down znunu 0.819640411573 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_up znunu 1.00822802359 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_down znunu 0.989404977052 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PU_Weight_up znunu 1.02093969418 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PU_Weight_down znunu 0.981478590801 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PU_Weight_up znunu 1.00189243063 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PU_Weight_down znunu 1.00267778934 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_up znunu 1.01801427233 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_down znunu 0.982310301963 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PU_Weight_up znunu 1.04955480566 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PU_Weight_down znunu 0.939873026184 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PU_Weight_up znunu 1.03907422994 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PU_Weight_down znunu 0.957995388728 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_up znunu 1.0292453181 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_down znunu 0.963934623149 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PU_Weight_up znunu 0.946146934658 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PU_Weight_down znunu 1.06511556565 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PU_Weight_up znunu 0.924618224344 -bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PU_Weight_down znunu 1.07792044562 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PU_Weight_up znunu 1.10088707506 -bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PU_Weight_down znunu 0.892629206799 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PU_Weight_up znunu 1.04564047406 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PU_Weight_down znunu 0.948360175533 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PU_Weight_up znunu 1.05705615398 -bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PU_Weight_down znunu 0.944562546386 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PU_Weight_up znunu 1.79249555368 -bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PU_Weight_down znunu 0.547545198682 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PU_Weight_up znunu 1.00402754813 -bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PU_Weight_down znunu 0.982678313047 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_up znunu 1 -bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_down znunu 1 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PU_Weight_up znunu 0.986038945528 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PU_Weight_down znunu 1.00690972147 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PU_Weight_up znunu 1.22229071215 -bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PU_Weight_down znunu 0.78848682283 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_up znunu 1 -bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_down znunu 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_Up znunu 1.01098045876 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 JES_Down znunu 0.988827645916 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_Up znunu 1.01116821802 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 JES_Down znunu 0.988650446441 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_Up znunu 1.00912875295 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 JES_Down znunu 0.99091650862 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_Up znunu 1.00740679209 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf JES_Down znunu 0.992195146316 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_Up znunu 0.999304559285 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 JES_Down znunu 1.00180205817 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_Up znunu 0.997965091802 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 JES_Down znunu 1.00150041863 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_Up znunu 0.999366910277 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 JES_Down znunu 1.00216256223 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_Up znunu 0.997563647701 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf JES_Down znunu 1.00110777829 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_Up znunu 1.01118574487 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 JES_Down znunu 0.991960724012 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_Up znunu 1.00893598596 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 JES_Down znunu 0.991592812152 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 JES_Up znunu 1.00447571756 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 JES_Down znunu 0.989770936982 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf JES_Up znunu 1.00990711142 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf JES_Down znunu 0.989703569411 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 JES_Up znunu 1.00420163908 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 JES_Down znunu 0.988018314156 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 JES_Up znunu 1.0091701961 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 JES_Down znunu 0.99937387481 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 JES_Up znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 JES_Down znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf JES_Up znunu 0.98250564123 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf JES_Down znunu 0.983186702425 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_Up znunu 0.994173040662 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 JES_Down znunu 1.01720303425 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 JES_Up znunu 0.987591084419 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 JES_Down znunu 1.07399348917 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 JES_Up znunu 0.989110066858 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 JES_Down znunu 1.14202966833 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf JES_Up znunu 0.967022222392 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf JES_Down znunu 1.14193240416 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_Up znunu 0.974293465734 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 JES_Down znunu 1.02511607286 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 JES_Up znunu 0.962881440138 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 JES_Down znunu 1.01567085709 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 JES_Up znunu 0.991927851995 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 JES_Down znunu 1.01685493129 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf JES_Up znunu 0.981528055869 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf JES_Down znunu 1.04415524337 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_Up znunu 1.01015716033 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 JES_Down znunu 1.03913254996 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_Up znunu 0.982052750732 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 JES_Down znunu 1.08718410958 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 JES_Up znunu 0.988393174455 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 JES_Down znunu 1.10103048095 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf JES_Up znunu 0.983846986989 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf JES_Down znunu 1.11050604397 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_Up znunu 0.978748100177 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 JES_Down znunu 1.02610008273 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_Up znunu 0.978601734388 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 JES_Down znunu 1.02672922627 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 JES_Up znunu 0.96128582487 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 JES_Down znunu 1.02123795045 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf JES_Up znunu 0.958992008158 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf JES_Down znunu 1.01754744415 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_Up znunu 0.97115957339 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 JES_Down znunu 1.00096119562 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 JES_Up znunu 0.987443032433 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 JES_Down znunu 1.04412279768 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf JES_Up znunu 0.969324803791 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf JES_Down znunu 1.04500840091 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 JES_Up znunu 0.97016488259 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 JES_Down znunu 0.9696935539 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 JES_Up znunu 1.01137353427 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 JES_Down znunu 0.955987320833 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf JES_Up znunu 0.980047387056 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf JES_Down znunu 1.0033257555 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_Up znunu 0.972269014508 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 JES_Down znunu 0.994943863059 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 JES_Up znunu 0.981551508102 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 JES_Down znunu 1.003687363 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf JES_Up znunu 0.968546756503 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf JES_Down znunu 0.989724055257 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_Up znunu 1.02071430046 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 JES_Down znunu 0.996694577415 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 JES_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 JES_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf JES_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf JES_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 JES_Up znunu 1.01420183243 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 JES_Down znunu 0.955599601861 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 JES_Up znunu 0.97306176107 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 JES_Down znunu 0.985262921158 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf JES_Up znunu 0.99463227978 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf JES_Down znunu 1.05683891079 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 JES_Up znunu 0.9802669964 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 JES_Down znunu 1.00735773987 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 JES_Up znunu 0.964686759329 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 JES_Down znunu 0.993458245202 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf JES_Up znunu 0.96168446205 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf JES_Down znunu 1.00738088708 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_Up znunu 1.0030894158 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 JES_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 JES_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 JES_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf JES_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf JES_Down znunu 1.00575551252 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Up znunu 0.996573776693 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Down znunu 0.892542578669 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Up znunu 1.0 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Down znunu 0.986160590983 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Up znunu 0.984212491388 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Down znunu 1.0 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Up znunu 1.0 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Down znunu 0.960077228646 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Up znunu 1.0 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 JES_Down znunu 0.951139709967 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Up znunu 1.00271876753 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 JES_Down znunu 0.996575107336 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Up znunu 0.997077780558 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 JES_Down znunu 1.0 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Up znunu 1.0 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf JES_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_Up znunu 1.02065029025 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_Down znunu 0.951490661579 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_Up znunu 1.01906355763 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_Down znunu 0.969659875525 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_Up znunu 1.02999542005 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_Down znunu 0.973756056345 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_Up znunu 1.02345895206 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_Down znunu 0.969775680565 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_Up znunu 1.01152405311 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 JES_Down znunu 0.966917406612 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_Up znunu 1.01479662991 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 JES_Down znunu 0.980595326134 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_Up znunu 1.01760848871 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 JES_Down znunu 0.99586028539 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_Up znunu 1.03181718181 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf JES_Down znunu 0.97886332667 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 JES_Up znunu 1.04618672307 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 JES_Down znunu 0.962795475517 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 JES_Up znunu 1.02667066403 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 JES_Down znunu 0.997050848579 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf JES_Up znunu 1.0592704585 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf JES_Down znunu 0.998571262252 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_Up znunu 1.01224063783 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_Down znunu 0.967344795576 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_Up znunu 1.03901622362 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_Down znunu 0.975631008147 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_Up znunu 0.991461281861 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_Down znunu 0.995821335263 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 JES_Up znunu 1.06038857741 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 JES_Down znunu 0.973822793913 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 JES_Up znunu 1.00353484525 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 JES_Down znunu 0.744898404154 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf JES_Up znunu 1.00088247369 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf JES_Down znunu 1.18027912044 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 JES_Up znunu 1.06345457154 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 JES_Down znunu 0.942771130738 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 JES_Up znunu 1.03232655248 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 JES_Down znunu 0.968985818929 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf JES_Up znunu 1.03680285297 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf JES_Down znunu 0.981466044606 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 JES_Up znunu 0.994222003157 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 JES_Down znunu 1.01154772011 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 JES_Up znunu 1.0410284583 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 JES_Down znunu 0.998777034445 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf JES_Up znunu 1.0215214456 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf JES_Down znunu 0.956422505731 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 JES_Up znunu 1.05151333178 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 JES_Down znunu 0.917817647351 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 JES_Up znunu 1.05328484299 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 JES_Down znunu 0.944835086291 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 JES_Up znunu 1.02602581188 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 JES_Down znunu 0.957896641769 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 JES_Up znunu 1.02207451396 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 JES_Down znunu 0.983239693771 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf JES_Up znunu 1.01348773772 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf JES_Down znunu 0.974390087288 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 JES_Up znunu 1.01831350349 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 JES_Down znunu 0.95374930635 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 JES_Up znunu 1.00000815403 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 JES_Down znunu 0.965659576237 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 JES_Up znunu 1.032638004 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 JES_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 JES_Up znunu 1.07277435044 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 JES_Down znunu 0.996388677277 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf JES_Up znunu 1.00868359009 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf JES_Down znunu 0.985945892323 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 JES_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 JES_Down znunu 0.990906860962 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 JES_Up znunu 0.943153002348 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 JES_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 JES_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 JES_Down znunu 0.958743005242 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 JES_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 JES_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf JES_Up znunu 0.981251477808 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf JES_Down znunu 0.979317112601 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 JES_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 JES_Down znunu 0.800561270292 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf JES_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf JES_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 JES_Up znunu 1.02990926526 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 JES_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf JES_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf JES_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 JES_Up znunu 0.999989595756 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 JES_Down znunu 0.939834824473 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf JES_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf JES_Down znunu 0.813083349201 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 JES_Up znunu 1.02341210449 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 JES_Down znunu 0.975532586443 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 JES_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 JES_Down znunu 0.984273631039 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf JES_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_Up znunu 1.01169710839 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 JES_Down znunu 1.00429511962 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_Up znunu 1.09426318223 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 JES_Up znunu 0.828083191718 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 JES_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf JES_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 JES_Up znunu 1.01348711546 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 JES_Down znunu 0.963595437479 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 JES_Up znunu 1.05193290065 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 JES_Down znunu 0.922328068518 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf JES_Up znunu 1.02896374848 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 JES_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 JES_Down znunu 0.999218718908 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 JES_Up znunu 1.00463787408 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf JES_Up znunu 2.1871019383 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_Up znunu 1.04179111443 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_Down znunu 0.910899644164 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 JES_Up znunu 1.02732187974 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 JES_Down znunu 0.985026455008 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 JES_Up znunu 1.06600862808 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 JES_Down znunu 0.985034565241 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 JES_Up znunu 1.04048361439 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 JES_Down znunu 0.978079989081 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf JES_Up znunu 1.0248724777 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf JES_Down znunu 0.95445811326 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_Up znunu 1.01040868017 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_Down znunu 0.959764369646 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 JES_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 JES_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 JES_Down znunu 1.04688082352 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 JES_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf JES_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 JES_Up znunu 0.999764441456 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 JES_Up znunu 0.950949444939 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 JES_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf JES_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 JES_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf JES_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 JES_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 JES_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf JES_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 JES_Up znunu 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 JES_Down znunu 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 JES_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf JES_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 JES_Up znunu 1.08245620083 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 JES_Down znunu 0.906780671456 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf JES_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 JES_Up znunu 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 JES_Down znunu 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf JES_Up znunu 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf JES_Down znunu 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 JES_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 JES_Down znunu 0.9407432802 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf JES_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 JES_Up znunu 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 JES_Down znunu 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf JES_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf JES_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf JES_Up znunu 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf JES_Down znunu 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 JES_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 JES_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 JES_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 JES_Down znunu 0.879699020647 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf JES_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf JES_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 JES_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 JES_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 JES_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 JES_Down znunu 1.20675618141 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf JES_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf JES_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 JES_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 JES_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 JES_Up znunu 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 JES_Down znunu 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf JES_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf JES_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 JES_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 JES_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 JES_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 JES_Down znunu 0.840906359274 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf JES_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf JES_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_Up znunu 1.01773906999 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 JES_Down znunu 0.997342120783 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 JES_Up znunu 1.01102114375 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 JES_Down znunu 0.968644323564 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf JES_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf JES_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 JES_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 JES_Up znunu 1.08565844743 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 JES_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf JES_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf JES_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 JES_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 JES_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 JES_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf JES_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf JES_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf JES_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf JES_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 JES_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 JES_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf JES_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf JES_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf JES_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf JES_Down znunu 1.0 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf JES_Up znunu 1.0 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf JES_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_Up znunu 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf JES_Down znunu 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 JES_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 JES_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf JES_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf JES_Down znunu 1.0 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf JES_Up znunu 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf JES_Down znunu 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_Up znunu 0.995465220789 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 b_Down znunu 1.00456771109 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_Up znunu 0.995542599039 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 b_Down znunu 1.00448930339 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_Up znunu 0.99533602151 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 b_Down znunu 1.00469993973 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_Up znunu 0.995133300954 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf b_Down znunu 1.00490617401 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_Up znunu 0.990353803916 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 b_Down znunu 1.00979405462 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_Up znunu 0.990699242749 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 b_Down znunu 1.00942662947 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_Up znunu 0.989971540622 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 b_Down znunu 1.01018504663 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_Up znunu 0.990209404706 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf b_Down znunu 1.00994299568 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_Up znunu 0.994096389246 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 b_Down znunu 1.00596063972 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_Up znunu 0.994597279683 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 b_Down znunu 1.00545796512 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 b_Up znunu 0.994077287785 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 b_Down znunu 1.00598102315 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf b_Up znunu 0.993496789403 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf b_Down znunu 1.00656624233 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 b_Up znunu 0.986454616974 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 b_Down znunu 1.01383889397 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 b_Up znunu 0.987460550902 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 b_Down znunu 1.01272979363 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 b_Up znunu 0.987402333803 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 b_Down znunu 1.01276750075 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf b_Up znunu 0.992756894352 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf b_Down znunu 1.00731415764 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_Up znunu 1.06193269179 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 b_Down znunu 0.937128329832 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 b_Up znunu 1.06532500438 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 b_Down znunu 0.933809910025 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 b_Up znunu 1.07083141331 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 b_Down znunu 0.928232029211 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf b_Up znunu 1.06379439179 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf b_Down znunu 0.934856847161 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_Up znunu 1.03111048614 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 b_Down znunu 0.968540608055 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 b_Up znunu 1.03141684215 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 b_Down znunu 0.968203609022 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 b_Up znunu 1.02920311383 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 b_Down znunu 0.970335521055 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf b_Up znunu 1.02973516886 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf b_Down znunu 0.969721876941 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_Up znunu 1.05814417767 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 b_Down znunu 0.940846638904 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_Up znunu 1.06208355884 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 b_Down znunu 0.936871207991 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 b_Up znunu 1.0642851838 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 b_Down znunu 0.93469608189 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf b_Up znunu 1.06374844654 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf b_Down znunu 0.935198752056 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_Up znunu 1.03208447108 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 b_Down znunu 0.967398424455 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_Up znunu 1.03047152339 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 b_Down znunu 0.969092412382 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 b_Up znunu 1.03132310909 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 b_Down znunu 0.968020641673 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf b_Up znunu 1.03882728017 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf b_Down znunu 0.960906226285 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_Up znunu 1.05471356702 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 b_Down znunu 0.944347508837 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 b_Up znunu 1.06293153484 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 b_Down znunu 0.935874922827 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf b_Up znunu 1.05145638357 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf b_Down znunu 0.947590912299 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 b_Up znunu 1.09004241619 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 b_Down znunu 0.913187535056 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 b_Up znunu 1.09583364319 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 b_Down znunu 0.907925231124 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf b_Up znunu 1.14898164338 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf b_Down znunu 0.862971897163 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_Up znunu 1.05508931433 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 b_Down znunu 0.946100521729 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 b_Up znunu 1.06429394866 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 b_Down znunu 0.936622783434 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf b_Up znunu 1.07418965805 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf b_Down znunu 0.929448054604 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_Up znunu 1.06163035015 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 b_Down znunu 0.939596890321 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 b_Up znunu 1.06927348337 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 b_Down znunu 0.934018394391 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf b_Up znunu 1.06960127119 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf b_Down znunu 0.930498135449 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 b_Up znunu 1.08949953843 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 b_Down znunu 0.913033818454 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 b_Up znunu 1.10090174373 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 b_Down znunu 0.904457768403 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf b_Up znunu 1.10555514671 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf b_Down znunu 0.901729545088 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 b_Up znunu 1.06280412187 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 b_Down znunu 0.939324104118 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 b_Up znunu 1.05996753088 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 b_Down znunu 0.941365862295 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf b_Up znunu 1.06603990246 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf b_Down znunu 0.935613229981 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_Up znunu 1.03989072454 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 b_Down znunu 0.9607214291 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 b_Up znunu 1.07085402358 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 b_Down znunu 0.930335656344 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf b_Up znunu 1.14110467907 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf b_Down znunu 0.868347037235 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Up znunu 1.0168974657 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Down znunu 0.982315634479 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Up znunu 1.02542769013 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Down znunu 0.973421040453 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Up znunu 1.02823560089 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Down znunu 0.970549682949 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Up znunu 1.0316838577 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Down znunu 0.967528185558 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Up znunu 1.04462794649 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 b_Down znunu 0.956230518512 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Up znunu 1.04569490645 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 b_Down znunu 0.955058067524 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Up znunu 1.06391492614 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 b_Down znunu 0.937446804258 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Up znunu 1.05711287468 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf b_Down znunu 0.944581167507 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_Up znunu 1.0443305707 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_Down znunu 0.954461064703 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_Up znunu 1.04317167024 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_Down znunu 0.955613421001 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_Up znunu 1.0439772984 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_Down znunu 0.954847505006 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_Up znunu 1.04315125067 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_Down znunu 0.955669981966 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_Up znunu 1.07327955716 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 b_Down znunu 0.929344524498 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_Up znunu 1.08300969599 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 b_Down znunu 0.920347296189 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_Up znunu 1.07422899423 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 b_Down znunu 0.929244343509 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_Up znunu 1.07709420587 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf b_Down znunu 0.925965131078 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 b_Up znunu 1.02143394192 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 b_Down znunu 0.977898375375 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 b_Up znunu 1.03237381501 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 b_Down znunu 0.966547483901 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf b_Up znunu 1.01740001921 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf b_Down znunu 0.981960562975 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_Up znunu 1.02858172508 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_Down znunu 0.970425931755 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_Up znunu 1.03311298669 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_Down znunu 0.965706200218 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_Up znunu 1.03758747668 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_Down znunu 0.960143417708 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 b_Up znunu 1.03153422475 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 b_Down znunu 0.967106558832 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 b_Up znunu 1.08578335493 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 b_Down znunu 0.912758641566 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf b_Up znunu 1.02948572109 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf b_Down znunu 0.968111127732 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 b_Up znunu 1.03297700403 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 b_Down znunu 0.966283118189 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 b_Up znunu 1.02741097884 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 b_Down znunu 0.971742182164 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf b_Up znunu 1.03925117006 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf b_Down znunu 0.959737440606 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 b_Up znunu 1.05431162972 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 b_Down znunu 0.944078827557 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 b_Up znunu 1.02659757734 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 b_Down znunu 0.971700179213 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf b_Up znunu 1.04491052742 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf b_Down znunu 0.95275735551 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 b_Up znunu 1.01967637176 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 b_Down znunu 0.979792464623 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 b_Up znunu 1.01854115585 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 b_Down znunu 0.9808622311 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 b_Up znunu 1.018921971 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 b_Down znunu 0.980449719672 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 b_Up znunu 1.01893338824 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 b_Down znunu 0.980410226282 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf b_Up znunu 1.02530366384 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf b_Down znunu 0.973961578047 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 b_Up znunu 1.01785363725 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 b_Down znunu 0.981116404892 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 b_Up znunu 1.01831341549 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 b_Down znunu 0.980837679268 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 b_Up znunu 1.00771822803 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 b_Down znunu 0.991510893944 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 b_Up znunu 1.01591168143 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 b_Down znunu 0.982986982816 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf b_Up znunu 1.01773714486 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf b_Down znunu 0.981461720031 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 b_Up znunu 1.02844123156 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 b_Down znunu 0.970942439514 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 b_Up znunu 1.03535748575 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 b_Down znunu 0.962254359012 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 b_Up znunu 1.00594745833 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 b_Down znunu 0.993298285916 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 b_Up znunu 0.99430528273 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 b_Down znunu 1.00524776505 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf b_Up znunu 1.01323237109 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf b_Down znunu 0.986093618255 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 b_Up znunu 1.0182739069 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 b_Down znunu 0.980698504 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf b_Up znunu 1.02306296522 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf b_Down znunu 0.943984792323 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 b_Up znunu 1.01720991455 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 b_Down znunu 0.982277946828 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf b_Up znunu 0.99844797305 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf b_Down znunu 1.00076631915 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 b_Up znunu 1.0131701438 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 b_Down znunu 0.985871474865 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf b_Up znunu 0.999598215086 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf b_Down znunu 1.00019722462 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 b_Up znunu 1.05215721958 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 b_Down znunu 0.949229418094 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 b_Up znunu 1.03809845728 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 b_Down znunu 0.962129759537 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf b_Up znunu 1.04703608933 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf b_Down znunu 0.953848047128 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_Up znunu 1.06260427443 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 b_Down znunu 0.938810355736 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_Up znunu 1.08205839851 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 b_Down znunu 0.917922106109 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_Up znunu 1.07661259954 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf b_Down znunu 0.923447306202 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 b_Up znunu 1.07262705496 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 b_Down znunu 0.929704326454 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 b_Up znunu 1.07179252078 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 b_Down znunu 0.928523118016 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf b_Up znunu 1.04172086067 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf b_Down znunu 0.958757694165 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 b_Up znunu 1.05140960329 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 b_Down znunu 0.949803798091 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 b_Up znunu 1.05304374718 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 b_Down znunu 0.94839787198 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf b_Up znunu 1.03929183512 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf b_Down znunu 0.960591188525 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 b_Up znunu 1.11320345524 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 b_Down znunu 0.890276888487 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 b_Up znunu 1.07104840453 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 b_Down znunu 0.931706243323 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf b_Up znunu 1.13145050505 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf b_Down znunu 0.880091455091 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_Up znunu 1.03615994882 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_Down znunu 0.964351793671 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 b_Up znunu 1.04120280955 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 b_Down znunu 0.959293035195 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 b_Up znunu 1.05510158884 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 b_Down znunu 0.946014073567 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 b_Up znunu 1.04674779214 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 b_Down znunu 0.953742133243 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf b_Up znunu 1.05979780979 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf b_Down znunu 0.941474368202 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_Up znunu 1.04027714639 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_Down znunu 0.960816923205 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 b_Up znunu 1.0524226258 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 b_Down znunu 0.948351150714 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 b_Up znunu 1.03686320039 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 b_Down znunu 0.962298680187 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 b_Up znunu 1.04737367351 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 b_Down znunu 0.95310812523 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf b_Up znunu 1.05004639057 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf b_Down znunu 0.951135334641 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_Up znunu 1.03507240178 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_Down znunu 0.964972977696 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 b_Up znunu 1.04405247782 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 b_Down znunu 0.95634771359 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 b_Up znunu 1.04879027828 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 b_Down znunu 0.951157167331 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 b_Up znunu 1.03923213244 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 b_Down znunu 0.959704804551 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf b_Up znunu 1.07736454741 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf b_Down znunu 0.922689629513 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 b_Up znunu 1.03124930173 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 b_Down znunu 0.966105489623 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf b_Up znunu 1.03286365338 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf b_Down znunu 0.966575567009 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 b_Up znunu 1.02178794969 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 b_Down znunu 0.978542070281 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 b_Up znunu 1.01932228381 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 b_Down znunu 0.979331950465 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf b_Up znunu 1.07622848874 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf b_Down znunu 0.925554795264 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 b_Up znunu 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 b_Down znunu 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 b_Up znunu 1.05122791929 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 b_Down znunu 0.946667603346 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf b_Up znunu 1.03026110881 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf b_Down znunu 0.965071397814 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 b_Up znunu 1.03565287391 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 b_Down znunu 0.964356456659 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf b_Up znunu 1.05388605024 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf b_Down znunu 0.946996581334 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 b_Up znunu 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 b_Down znunu 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf b_Up znunu 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf b_Down znunu 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_Up znunu 1.06043268029 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_Down znunu 0.940425148888 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 b_Up znunu 1.02892508382 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 b_Down znunu 0.971246924741 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf b_Up znunu 1.03816560388 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf b_Down znunu 0.962121796044 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 b_Up znunu 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 b_Down znunu 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf b_Up znunu 1.06007212694 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf b_Down znunu 0.940931852361 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf b_Up znunu 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf b_Down znunu 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 b_Up znunu 1.10358400252 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 b_Down znunu 0.904763833004 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 b_Up znunu 1.10561806936 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 b_Down znunu 0.900895677098 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf b_Up znunu 1.11471782374 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf b_Down znunu 0.894508248873 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 b_Up znunu 1.06988955054 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 b_Down znunu 0.932799213735 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 b_Up znunu 1.08787459178 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 b_Down znunu 0.916465561036 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf b_Up znunu 1.07551817382 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf b_Down znunu 0.925803622164 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 b_Up znunu 1.56276309039 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 b_Down znunu 0.509190277341 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 b_Up znunu 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 b_Down znunu 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf b_Up znunu 1.18334367818 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf b_Down znunu 0.82423865817 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 b_Up znunu 1.09907022885 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 b_Down znunu 0.904716725488 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 b_Up znunu 1.08484934329 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 b_Down znunu 0.919626787068 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf b_Up znunu 1.25691341319 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf b_Down znunu 0.782529575379 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_Up znunu 1.0901574388 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 b_Down znunu 0.914252967904 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 b_Up znunu 1.07212660267 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 b_Down znunu 0.930431859058 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf b_Up znunu 1.1030937714 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf b_Down znunu 0.905509218245 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_Up znunu 1.08398080639 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 b_Down znunu 0.918412889142 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 b_Up znunu 1.06490375571 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 b_Down znunu 0.937218226134 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf b_Up znunu 1.14686947255 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf b_Down znunu 0.862202909936 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_Up znunu 1.16999516571 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 b_Down znunu 0.835791604766 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 b_Up znunu 1.11566704874 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 b_Down znunu 0.88629404388 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf b_Up znunu 1.13268105074 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf b_Down znunu 0.872068346047 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf b_Up znunu 1.04767719502 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf b_Down znunu 0.953155311722 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 b_Up znunu 1.03705070051 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 b_Down znunu 0.96338910885 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf b_Up znunu 1.05164267323 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf b_Down znunu 0.949761527518 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf b_Up znunu 1.13441630687 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf b_Down znunu 0.865083061394 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf b_Up znunu 1.05143882107 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf b_Down znunu 0.945242538899 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_Up znunu 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf b_Down znunu 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 b_Up znunu 1.14761138197 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 b_Down znunu 0.859659170396 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf b_Up znunu 1.08449260539 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf b_Down znunu 0.918762019571 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf b_Up znunu 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf b_Down znunu 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restoptag_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_restoptag_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restoptag_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_restoptag_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restoptag_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_restoptag_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restoptag_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_restoptag_Down znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Up znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_restoptag_Down znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Up znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_restoptag_Down znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Up znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_restoptag_Down znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Up znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_restoptag_Down znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_restoptag_Up znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_restoptag_Down znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_restoptag_Up znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_restoptag_Down znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_restoptag_Up znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_restoptag_Down znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_restoptag_Up znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_restoptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restoptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_restoptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_restoptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_restoptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_restoptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_restoptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_restoptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_restoptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restoptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_restoptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_restoptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_restoptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_restoptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_restoptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_restoptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_restoptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restoptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_restoptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restoptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_restoptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_restoptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_restoptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_restoptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_restoptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restoptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_restoptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restoptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_restoptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_restoptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_restoptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_restoptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_restoptag_Down znunu 1.0 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restoptag_Up znunu 1.0 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_restoptag_Down znunu 1.0 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_restoptag_Up znunu 1.0 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_restoptag_Down znunu 1.0 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_restoptag_Up znunu 1.0 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_restoptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_restoptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_restoptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_restoptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_restoptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_restoptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_restoptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restoptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_restoptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_restoptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_restoptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_restoptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_restoptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restoptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_restoptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_restoptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_restoptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_restoptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_restoptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_restoptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_restoptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_restoptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_restoptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_restoptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_restoptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_restoptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_restoptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_restoptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_restoptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_restoptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_restoptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restoptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_restoptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_restoptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_restoptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_restoptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_restoptag_Down znunu 1.0 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Up znunu 1.16762860794 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Down znunu 0.832093030269 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Up znunu 1.16918558864 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Down znunu 0.830588736111 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Up znunu 1.1918009382 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Down znunu 0.811751615974 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Up znunu 1.16257554828 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Down znunu 0.837212923096 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Up znunu 1.16465401127 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_restoptag_Down znunu 0.839246655457 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Up znunu 1.20777525997 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_restoptag_Down znunu 0.797026988649 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Up znunu 1.18723297349 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_restoptag_Down znunu 0.817494435403 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Up znunu 1.25491064174 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_restoptag_Down znunu 0.759477383059 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restoptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restoptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restoptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restoptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restoptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restoptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restoptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restoptag_Down znunu 1.0 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restoptag_Up znunu 1.0 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_restoptag_Down znunu 1.0 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restoptag_Up znunu 1.0 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_restoptag_Down znunu 1.0 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restoptag_Up znunu 1.0 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_restoptag_Down znunu 1.0 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restoptag_Up znunu 1.0 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_restoptag_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restoptag_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restoptag_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restoptag_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restoptag_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restoptag_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restoptag_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restoptag_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restoptag_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restoptag_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restoptag_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restoptag_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restoptag_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restoptag_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restoptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_restoptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_restoptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_restoptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_restoptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_restoptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_restoptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_restoptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_restoptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_restoptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_restoptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_restoptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_restoptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Up znunu 1.07859858809 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Down znunu 0.920956554813 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_restoptag_Up znunu 1.07980000347 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_restoptag_Down znunu 0.919783945212 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_restoptag_Up znunu 1.08261766669 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_restoptag_Down znunu 0.917607455025 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_restoptag_Up znunu 1.07899644844 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_restoptag_Down znunu 0.920656757502 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_restoptag_Up znunu 1.07998026539 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_restoptag_Down znunu 0.919680459795 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Up znunu 1.12376654473 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Down znunu 0.876257592218 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_restoptag_Up znunu 1.12215345757 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_restoptag_Down znunu 0.877589513282 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_restoptag_Up znunu 1.1403895193 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_restoptag_Down znunu 0.860085992822 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Up znunu 1.12569212661 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Down znunu 0.874103223057 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Up znunu 1.11949984687 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Down znunu 0.880170575111 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Up znunu 1.14533659986 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Down znunu 0.855814409444 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_restoptag_Up znunu 1.19457755874 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_restoptag_Down znunu 0.805253006431 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_restoptag_Up znunu 1.18587598908 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_restoptag_Down znunu 0.81402151931 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_restoptag_Up znunu 1.08542037859 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_restoptag_Down znunu 0.914418684372 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_restoptag_Up znunu 1.1396075831 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_restoptag_Down znunu 0.860175470627 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_restoptag_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_restoptag_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_restoptag_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_restoptag_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_restoptag_Up znunu 1.08501951777 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_restoptag_Down znunu 0.914339788953 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_restoptag_Up znunu 1.13520422972 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_restoptag_Down znunu 0.864557383241 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_restoptag_Up znunu 1.09511315775 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_restoptag_Down znunu 0.904550083181 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_restoptag_Up znunu 1.06545740655 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_restoptag_Down znunu 0.934305756224 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restoptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_restoptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restoptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_restoptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restoptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_restoptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restoptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_restoptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restoptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_restoptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restoptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_restoptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restoptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_restoptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_restoptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_restoptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_restoptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_restoptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_restoptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_restoptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_restoptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_restoptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_restoptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_restoptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_restoptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_restoptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Up znunu 1.07982490714 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Down znunu 0.919701101278 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_restoptag_Up znunu 1.08358001133 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_restoptag_Down znunu 0.915987650699 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_restoptag_Up znunu 1.08260961138 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_restoptag_Down znunu 0.916959428517 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_restoptag_Up znunu 1.08142111563 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_restoptag_Down znunu 0.918079452759 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_restoptag_Up znunu 1.0904544666 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_restoptag_Down znunu 0.908964670232 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Up znunu 1.15756397102 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Down znunu 0.842196762311 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_restoptag_Up znunu 1.10930666727 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_restoptag_Down znunu 0.890493551115 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_restoptag_Up znunu 1.14546152151 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_restoptag_Down znunu 0.854377670544 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Up znunu 1.13646355663 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_restoptag_Down znunu 0.863216494014 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Up znunu 1.09784418439 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_restoptag_Down znunu 0.901847628093 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Up znunu 1.16135468168 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Down znunu 0.838445218301 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_restoptag_Up znunu 1.1586197818 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_restoptag_Down znunu 0.84104371401 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_restoptag_Up znunu 1.164373832 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_restoptag_Down znunu 0.835402928808 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_restoptag_Up znunu 1.18650285135 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_restoptag_Down znunu 0.813457504474 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_restoptag_Up znunu 1.10318865639 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_restoptag_Down znunu 0.896402336576 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_restoptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_restoptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_restoptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_restoptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_restoptag_Up znunu 1.2263057733 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_restoptag_Down znunu 0.773532532562 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_restoptag_Up znunu 1.10740122161 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_restoptag_Down znunu 0.891993047739 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_restoptag_Up znunu 1.13506874744 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_restoptag_Down znunu 0.864333090714 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_restoptag_Up znunu 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_restoptag_Down znunu 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_restoptag_Up znunu 1.06712024657 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_restoptag_Down znunu 0.932740954569 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_restoptag_Up znunu 1.37000093001 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_restoptag_Down znunu 0.629980995758 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_restoptag_Up znunu 1.08527445894 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_restoptag_Down znunu 0.914573901568 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_restoptag_Up znunu 1.1190941293 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_restoptag_Down znunu 0.880184796582 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_restoptag_Up znunu 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_restoptag_Down znunu 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_restoptag_Up znunu 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_restoptag_Down znunu 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restoptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restoptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_restoptag_Up znunu 1.29974693046 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_restoptag_Down znunu 0.753319083201 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_restoptag_Up znunu 1.25079955246 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_restoptag_Down znunu 0.796775158554 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_restoptag_Up znunu 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_restoptag_Down znunu 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_restoptag_Up znunu 1.76999391782 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_restoptag_Down znunu 0.448322428846 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restoptag_Up znunu 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restoptag_Down znunu 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_restoptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_restoptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_restoptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_restoptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_restoptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_restoptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_restoptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_restoptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_restoptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_restoptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_restoptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_restoptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_restoptag_Up znunu 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_restoptag_Down znunu 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_restoptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_restoptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_restoptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_restoptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_restoptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_restoptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_restoptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_restoptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Up znunu 1.11883523008 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_restoptag_Down znunu 0.880830084755 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_restoptag_Up znunu 1.09991047037 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_restoptag_Down znunu 0.899687887501 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_restoptag_Up znunu 1.08682970645 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_restoptag_Down znunu 0.912583037921 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Up znunu 1.16559991191 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_restoptag_Down znunu 0.83423516796 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_restoptag_Up znunu 1.19240952478 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_restoptag_Down znunu 0.80741475428 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_restoptag_Up znunu 1.11925515077 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_restoptag_Down znunu 0.880315420739 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Up znunu 1.21021013185 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_restoptag_Down znunu 0.789738162641 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_restoptag_Up znunu 1.23142715584 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_restoptag_Down znunu 0.768427095514 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_restoptag_Up znunu 1.0929081935 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_restoptag_Down znunu 0.907020234477 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_restoptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_restoptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_restoptag_Up znunu 1.1848133559 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_restoptag_Down znunu 0.815044245698 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_restoptag_Up znunu 1.10524735266 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_restoptag_Down znunu 0.894323648099 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_restoptag_Up znunu 1.16419765674 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_restoptag_Down znunu 0.835763060825 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_restoptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_restoptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restoptag_Up znunu 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_restoptag_Down znunu 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_restoptag_Up znunu 1.1856455397 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_restoptag_Down znunu 0.830047203129 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_restoptag_Up znunu 1.35295879785 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_restoptag_Down znunu 0.703942123029 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restoptag_Up znunu 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_restoptag_Down znunu 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 ivfunc_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 ivfunc_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 ivfunc_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf ivfunc_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 ivfunc_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 ivfunc_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 ivfunc_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf ivfunc_Down znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_Up znunu 1.053415277 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 ivfunc_Down znunu 0.946894348555 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_Up znunu 1.05319686819 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 ivfunc_Down znunu 0.947043603765 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ivfunc_Up znunu 1.05340318512 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 ivfunc_Down znunu 0.946855856786 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ivfunc_Up znunu 1.05412396828 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf ivfunc_Down znunu 0.946180529253 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ivfunc_Up znunu 1.05248432356 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 ivfunc_Down znunu 0.947898640886 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ivfunc_Up znunu 1.05309343526 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 ivfunc_Down znunu 0.947641325593 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ivfunc_Up znunu 1.04772044173 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 ivfunc_Down znunu 0.95241327858 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ivfunc_Up znunu 1.05352954775 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf ivfunc_Down znunu 0.946681089738 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 ivfunc_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ivfunc_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 ivfunc_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ivfunc_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 ivfunc_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ivfunc_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf ivfunc_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 ivfunc_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ivfunc_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 ivfunc_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ivfunc_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 ivfunc_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ivfunc_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf ivfunc_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 ivfunc_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 ivfunc_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ivfunc_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 ivfunc_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ivfunc_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf ivfunc_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 ivfunc_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 ivfunc_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ivfunc_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 ivfunc_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ivfunc_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf ivfunc_Down znunu 1.0 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_Up znunu 1.05292117906 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 ivfunc_Down znunu 0.947416933078 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ivfunc_Up znunu 1.05273521505 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 ivfunc_Down znunu 0.947563540277 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ivfunc_Up znunu 1.053088368 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf ivfunc_Down znunu 0.947152923653 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ivfunc_Up znunu 1.00372036802 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 ivfunc_Down znunu 0.996281439137 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ivfunc_Up znunu 1.00135260537 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 ivfunc_Down znunu 0.998647295739 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ivfunc_Up znunu 1.00746220257 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf ivfunc_Down znunu 0.992537690758 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_Up znunu 1.00188831742 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 ivfunc_Down znunu 0.998119202345 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ivfunc_Up znunu 1.00317715709 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 ivfunc_Down znunu 0.996889796842 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ivfunc_Up znunu 1.00087958123 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf ivfunc_Down znunu 0.99912050478 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_Up znunu 1.00292119083 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 ivfunc_Down znunu 0.99707886973 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ivfunc_Up znunu 1.00084719172 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 ivfunc_Down znunu 0.999152915219 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ivfunc_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf ivfunc_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ivfunc_Up znunu 1.00240810541 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 ivfunc_Down znunu 0.997591987164 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ivfunc_Up znunu 1.00307788082 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 ivfunc_Down znunu 0.996922003254 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ivfunc_Up znunu 1.00281805728 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf ivfunc_Down znunu 0.997181859473 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ivfunc_Up znunu 1.00559339804 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 ivfunc_Down znunu 0.994445135897 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ivfunc_Up znunu 1.00103504014 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 ivfunc_Down znunu 0.99896486457 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ivfunc_Up znunu 1.00521108461 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf ivfunc_Down znunu 0.994788915387 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_Up znunu 1.0012057429 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 ivfunc_Down znunu 0.998794257102 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ivfunc_Up znunu 1.00242066953 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 ivfunc_Down znunu 0.997579330469 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ivfunc_Up znunu 1.00218906209 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf ivfunc_Down znunu 0.997811022052 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Up znunu 1.00313737214 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Down znunu 0.996862693422 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Up znunu 1.00144315722 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Down znunu 0.998556744103 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Up znunu 1.00195897767 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Down znunu 0.998041125072 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Up znunu 1.00188517944 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Down znunu 0.998114820564 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Up znunu 1.00417086412 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 ivfunc_Down znunu 0.995829198296 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Up znunu 1.00447947625 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 ivfunc_Down znunu 0.995657031583 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Up znunu 1.00252655596 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 ivfunc_Down znunu 0.997473444041 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Up znunu 1.00197623654 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf ivfunc_Down znunu 0.998023872964 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_Up znunu 1.00183117318 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_Down znunu 0.998172662897 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_Up znunu 1.00243858185 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_Down znunu 0.997574673285 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_Up znunu 1.00201874189 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_Down znunu 0.997991427795 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_Up znunu 1.00244594379 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_Down znunu 0.99757893269 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_Up znunu 1.00175091856 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 ivfunc_Down znunu 0.998254153591 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_Up znunu 1.00223526196 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 ivfunc_Down znunu 0.997817149872 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_Up znunu 1.00083484943 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 ivfunc_Down znunu 0.99916515057 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_Up znunu 1.00194839414 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf ivfunc_Down znunu 0.998053621382 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_Up znunu 1.0023654215 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_Down znunu 0.997645278011 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_Up znunu 1.00017156959 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_Down znunu 0.999828430408 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_Up znunu 1.00416624863 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_Down znunu 0.99583385867 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_Up znunu 1.00190044648 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_Down znunu 0.998099664506 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_Up znunu 1.00164891931 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_Down znunu 0.998351016957 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_Up znunu 1.00179417193 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_Down znunu 0.998205894004 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_Up znunu 1.00242841956 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_Down znunu 0.997571479491 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_Up znunu 0.996492745963 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_Down znunu 1.00350718053 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ivfunc_Up znunu 1.00062505033 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 ivfunc_Down znunu 0.999374949674 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ivfunc_Up znunu 1.00043608609 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 ivfunc_Down znunu 0.999563913909 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ivfunc_Up znunu 1.00123155629 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf ivfunc_Down znunu 0.998768443711 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ivfunc_Up znunu 1.00098341396 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 ivfunc_Down znunu 0.999016490942 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ivfunc_Up znunu 1.00120626402 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 ivfunc_Down znunu 0.998793829813 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ivfunc_Up znunu 1.00444644458 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf ivfunc_Down znunu 0.995553634389 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ivfunc_Up znunu 1.00254975192 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 ivfunc_Down znunu 0.997457743118 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ivfunc_Up znunu 1.00357346565 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 ivfunc_Down znunu 0.996442805616 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ivfunc_Up znunu 1.00360395134 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 ivfunc_Down znunu 0.99654688989 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ivfunc_Up znunu 1.00181612612 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 ivfunc_Down znunu 0.998186629629 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ivfunc_Up znunu 1.00230188025 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf ivfunc_Down znunu 0.997698027754 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Up znunu 1.00270609616 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Down znunu 0.997293903836 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ivfunc_Up znunu 1.00201555168 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 ivfunc_Down znunu 0.997984536949 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ivfunc_Up znunu 1.00252538563 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 ivfunc_Down znunu 0.997474614373 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ivfunc_Up znunu 1.00657841267 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 ivfunc_Down znunu 0.993672627868 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ivfunc_Up znunu 1.00512569471 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf ivfunc_Down znunu 0.994874305292 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ivfunc_Up znunu 1.00236667519 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 ivfunc_Down znunu 0.997633324808 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ivfunc_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 ivfunc_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ivfunc_Up znunu 1.00018996289 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 ivfunc_Down znunu 0.999810037109 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ivfunc_Up znunu 1.00652280113 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 ivfunc_Down znunu 0.99347729399 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ivfunc_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf ivfunc_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ivfunc_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 ivfunc_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ivfunc_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf ivfunc_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ivfunc_Up znunu 1.0046362874 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 ivfunc_Down znunu 0.995363597044 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ivfunc_Up znunu 1.00977737267 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf ivfunc_Down znunu 0.990222627334 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ivfunc_Up znunu 1.00173136655 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 ivfunc_Down znunu 0.998268696129 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ivfunc_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf ivfunc_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_Up znunu 1.00111163352 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 ivfunc_Down znunu 0.998888436885 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 ivfunc_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf ivfunc_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_Up znunu 1.00469629659 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 ivfunc_Down znunu 0.995303703415 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 ivfunc_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf ivfunc_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 ivfunc_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 ivfunc_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf ivfunc_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ivfunc_Up znunu 1.00139830644 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 ivfunc_Down znunu 0.998601606631 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ivfunc_Up znunu 1.00008615424 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 ivfunc_Down znunu 0.999923110805 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ivfunc_Up znunu 1.00128911263 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf ivfunc_Down znunu 0.998710887366 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ivfunc_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 ivfunc_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ivfunc_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 ivfunc_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ivfunc_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf ivfunc_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_Up znunu 1.00152851939 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_Down znunu 0.99847162334 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ivfunc_Up znunu 1.00288810897 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 ivfunc_Down znunu 0.997111803195 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ivfunc_Up znunu 1.00061917044 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 ivfunc_Down znunu 0.999380829562 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ivfunc_Up znunu 1.00413088116 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 ivfunc_Down znunu 0.995950205533 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ivfunc_Up znunu 1.0034879472 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf ivfunc_Down znunu 0.99670435126 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Up znunu 1.00324441698 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Down znunu 0.996755521968 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ivfunc_Up znunu 1.00100071877 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 ivfunc_Down znunu 0.998999281235 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ivfunc_Up znunu 1.00072333416 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 ivfunc_Down znunu 0.999276605526 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ivfunc_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 ivfunc_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ivfunc_Up znunu 1.0008379286 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf ivfunc_Down znunu 0.999162071405 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ivfunc_Up znunu 1.00036854419 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 ivfunc_Down znunu 0.999631455808 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ivfunc_Up znunu 1.00005239844 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 ivfunc_Down znunu 0.999947601559 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ivfunc_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 ivfunc_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ivfunc_Up znunu 1.00037129377 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf ivfunc_Down znunu 0.999628610507 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ivfunc_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 ivfunc_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ivfunc_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf ivfunc_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ivfunc_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 ivfunc_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ivfunc_Up znunu 1.0171550431 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 ivfunc_Down znunu 0.982844956903 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ivfunc_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf ivfunc_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ivfunc_Up znunu 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 ivfunc_Down znunu 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ivfunc_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 ivfunc_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ivfunc_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf ivfunc_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ivfunc_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 ivfunc_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ivfunc_Up znunu 1.00066498154 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf ivfunc_Down znunu 0.999335018459 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ivfunc_Up znunu 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 ivfunc_Down znunu 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ivfunc_Up znunu 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf ivfunc_Down znunu 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_Up znunu 1.02777471044 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_Down znunu 0.972225386767 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ivfunc_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 ivfunc_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ivfunc_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf ivfunc_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ivfunc_Up znunu 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 ivfunc_Down znunu 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ivfunc_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf ivfunc_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_Up znunu 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_Down znunu 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ivfunc_Up znunu 1.00283712443 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 ivfunc_Down znunu 0.997162979936 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ivfunc_Up znunu 1.0013812302 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 ivfunc_Down znunu 0.9986186642 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ivfunc_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf ivfunc_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ivfunc_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 ivfunc_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ivfunc_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 ivfunc_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ivfunc_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf ivfunc_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ivfunc_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 ivfunc_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ivfunc_Up znunu 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 ivfunc_Down znunu 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ivfunc_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf ivfunc_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ivfunc_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 ivfunc_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ivfunc_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 ivfunc_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ivfunc_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf ivfunc_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_Up znunu 1.00108599348 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 ivfunc_Down znunu 0.998913943494 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ivfunc_Up znunu 1.00064705263 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 ivfunc_Down znunu 0.999352879917 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ivfunc_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf ivfunc_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 ivfunc_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ivfunc_Up znunu 1.00696651296 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 ivfunc_Down znunu 0.99303360246 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ivfunc_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf ivfunc_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 ivfunc_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ivfunc_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 ivfunc_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ivfunc_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf ivfunc_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ivfunc_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf ivfunc_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ivfunc_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 ivfunc_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ivfunc_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf ivfunc_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ivfunc_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf ivfunc_Down znunu 1.0 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ivfunc_Up znunu 1.0 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf ivfunc_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_Up znunu 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf ivfunc_Down znunu 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ivfunc_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 ivfunc_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ivfunc_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf ivfunc_Down znunu 1.0 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_Up znunu 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf ivfunc_Down znunu 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_toptag_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_toptag_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_toptag_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_toptag_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_toptag_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_toptag_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_toptag_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_toptag_Down znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_Up znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_toptag_Down znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_Up znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_toptag_Down znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_toptag_Up znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_toptag_Down znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_toptag_Up znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_toptag_Down znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_toptag_Up znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_toptag_Down znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_toptag_Up znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_toptag_Down znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_toptag_Up znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_toptag_Down znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_toptag_Up znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_toptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_toptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_toptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_toptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_toptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_toptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_toptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_toptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_toptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_toptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_toptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_toptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_toptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_toptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_toptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_toptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_toptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_toptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_toptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_toptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_toptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_toptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_toptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_toptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_toptag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_toptag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_toptag_Down znunu 1.0 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_Up znunu 1.0 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_toptag_Down znunu 1.0 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_toptag_Up znunu 1.0 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_toptag_Down znunu 1.0 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_toptag_Up znunu 1.0 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_toptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_toptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_toptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_toptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_toptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_toptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_toptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_toptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_toptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_toptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_toptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_toptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_toptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_toptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_toptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_toptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_toptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_toptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_toptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_toptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_toptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_toptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_toptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_toptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_toptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_toptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_toptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_toptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_toptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_toptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_toptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_toptag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_toptag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_toptag_Down znunu 1.0 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Up znunu 1.00021857236 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Down znunu 0.999781427643 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Up znunu 1.00089875391 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Down znunu 0.999101147411 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Up znunu 1.0 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Down znunu 1.0 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Up znunu 1.0 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Down znunu 1.0 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Up znunu 1.00029048249 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_toptag_Down znunu 0.99970957993 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Up znunu 1.0003294766 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_toptag_Down znunu 0.999670523403 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Up znunu 1.0 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_toptag_Down znunu 1.0 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Up znunu 1.0 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_Down znunu 1.0 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_Up znunu 1.0 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_toptag_Down znunu 1.0 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_Up znunu 1.0 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_toptag_Down znunu 1.0 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_Up znunu 1.0 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_toptag_Down znunu 1.0 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_Up znunu 1.0 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_Up znunu 1.08051440598 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_Down znunu 0.91948559402 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_Up znunu 1.07472245372 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_Down znunu 0.925277546284 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_Up znunu 1.06187158743 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_Down znunu 0.93812851987 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_Up znunu 1.06865891497 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_Down znunu 0.931341196015 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Up znunu 1.06958544016 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Down znunu 0.930414496112 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Up znunu 1.06333464501 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Down znunu 0.936665354989 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_Up znunu 1.05894850452 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_Down znunu 0.941051495476 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_Up znunu 1.05279229348 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_Down znunu 0.947207706519 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_Up znunu 1.05888448122 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_Down znunu 0.941115445274 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_toptag_Up znunu 1.08083657471 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_toptag_Down znunu 0.919163493899 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_toptag_Up znunu 1.04717002334 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_toptag_Down znunu 0.952829890221 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_toptag_Up znunu 1.08003240617 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_toptag_Down znunu 0.919967478273 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_toptag_Up znunu 1.08052226034 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_toptag_Down znunu 0.919477681261 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_toptag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_toptag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_Up znunu 1.07936643719 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_toptag_Down znunu 0.920633633219 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_Up znunu 1.06125366488 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_toptag_Down znunu 0.938746406369 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_Up znunu 1.06093354185 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_toptag_Down znunu 0.939066458148 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_Up znunu 1.06747501499 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_toptag_Down znunu 0.932524896687 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Up znunu 1.06194433844 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Down znunu 0.938055661563 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Up znunu 1.05889189887 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Down znunu 0.941108009953 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_Up znunu 1.06622604623 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_toptag_Down znunu 0.933774049717 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_Up znunu 1.05048561092 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_toptag_Down znunu 0.94951438908 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_Up znunu 1.07294714083 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_toptag_Down znunu 0.927052859167 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_toptag_Up znunu 1.10891040043 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_toptag_Down znunu 0.891089525822 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_toptag_Up znunu 1.07502337887 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_toptag_Down znunu 0.924976621135 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_toptag_Up znunu 1.08875502966 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_toptag_Down znunu 0.911244970344 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_toptag_Up znunu 1.06644116133 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_toptag_Down znunu 0.933558770637 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_toptag_Up znunu 1.07236317282 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_toptag_Down znunu 0.927636827176 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_toptag_Up znunu 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_toptag_Down znunu 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_toptag_Up znunu 1.04717011056 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_toptag_Down znunu 0.9528299604 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_toptag_Up znunu 1.05820020039 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_toptag_Down znunu 0.941799883089 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_toptag_Up znunu 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_toptag_Down znunu 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_toptag_Up znunu 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_toptag_Down znunu 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_toptag_Up znunu 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_toptag_Down znunu 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_toptag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_toptag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_Up znunu 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_Down znunu 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_toptag_Up znunu 1.07095211433 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_toptag_Down znunu 0.929047990035 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_toptag_Up znunu 1.08093470424 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_toptag_Down znunu 0.919065295757 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_toptag_Up znunu 1.06153164784 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_toptag_Down znunu 0.938468271221 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Up znunu 1.07358389797 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Down znunu 0.92641603589 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_toptag_Up znunu 1.07343875009 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_toptag_Down znunu 0.926561249909 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_toptag_Up znunu 1.06022046505 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_toptag_Down znunu 0.939779445206 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_toptag_Up znunu 1.05084158108 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_toptag_Down znunu 0.949158354036 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_toptag_Up znunu 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_toptag_Down znunu 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_toptag_Up znunu 1.0531980748 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_toptag_Down znunu 0.946801984457 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_toptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_toptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_toptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_toptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_toptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_toptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_toptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_toptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_toptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_toptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_toptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_toptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_toptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_toptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_toptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_toptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_toptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_toptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_toptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_toptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_toptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_toptag_Up znunu 1.07618869092 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_toptag_Down znunu 0.923811309076 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_toptag_Up znunu 1.09259153954 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_toptag_Down znunu 0.907408460462 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_toptag_Up znunu 1.07834069055 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_toptag_Down znunu 0.921659415905 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_toptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_toptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_toptag_Up znunu 1.10287754276 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_toptag_Down znunu 0.902141264226 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_Up znunu 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_toptag_Down znunu 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_toptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_toptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_toptag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_toptag_Down znunu 1.0 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_Up znunu 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_toptag_Down znunu 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 eff_wtag_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 eff_wtag_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 eff_wtag_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf eff_wtag_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 eff_wtag_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 eff_wtag_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 eff_wtag_Down znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_Up znunu 1.0 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf eff_wtag_Down znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_Up znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 eff_wtag_Down znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_Up znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 eff_wtag_Down znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_wtag_Up znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 eff_wtag_Down znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_wtag_Up znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf eff_wtag_Down znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_wtag_Up znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 eff_wtag_Down znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_wtag_Up znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 eff_wtag_Down znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_wtag_Up znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 eff_wtag_Down znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_wtag_Up znunu 1.0 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf eff_wtag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 eff_wtag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_wtag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 eff_wtag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_wtag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 eff_wtag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_wtag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf eff_wtag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 eff_wtag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_wtag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 eff_wtag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_wtag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 eff_wtag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_wtag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf eff_wtag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 eff_wtag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 eff_wtag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_wtag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 eff_wtag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_wtag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf eff_wtag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 eff_wtag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 eff_wtag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_wtag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 eff_wtag_Down znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_wtag_Up znunu 1.0 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf eff_wtag_Down znunu 1.0 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_Up znunu 1.0 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 eff_wtag_Down znunu 1.0 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_wtag_Up znunu 1.0 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 eff_wtag_Down znunu 1.0 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_wtag_Up znunu 1.0 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf eff_wtag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_wtag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 eff_wtag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_wtag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 eff_wtag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_wtag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf eff_wtag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 eff_wtag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_wtag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 eff_wtag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_wtag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf eff_wtag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 eff_wtag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_wtag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 eff_wtag_Down znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_wtag_Up znunu 1.0 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf eff_wtag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_wtag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 eff_wtag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_wtag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 eff_wtag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_wtag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf eff_wtag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_wtag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 eff_wtag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_wtag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 eff_wtag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_wtag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf eff_wtag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 eff_wtag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_wtag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 eff_wtag_Down znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_wtag_Up znunu 1.0 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf eff_wtag_Down znunu 1.0 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Up znunu 1.00069682231 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Down znunu 0.999303177691 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Up znunu 1.0 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Down znunu 1.0 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Up znunu 1.00290266099 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Down znunu 0.99709744175 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Up znunu 1.00007643302 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Down znunu 0.999923566984 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Up znunu 1.000330803 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 eff_wtag_Down znunu 0.999669196998 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Up znunu 1.00019733055 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 eff_wtag_Down znunu 0.999802669447 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Up znunu 1.00177931698 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 eff_wtag_Down znunu 0.99822068302 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Up znunu 1.0 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_Down znunu 1.0 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_Up znunu 1.0 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 eff_wtag_Down znunu 1.0 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_Up znunu 1.0 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 eff_wtag_Down znunu 1.0 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_Up znunu 1.0 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 eff_wtag_Down znunu 1.0 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_Up znunu 1.0 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_wtag_Up znunu 1.11209519907 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 eff_wtag_Down znunu 0.888031646491 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_wtag_Up znunu 1.11036203185 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 eff_wtag_Down znunu 0.88970910674 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_wtag_Up znunu 1.11427875608 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf eff_wtag_Down znunu 0.885904926545 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_wtag_Up znunu 1.09073113561 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 eff_wtag_Down znunu 0.909776119978 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_wtag_Up znunu 1.10413644595 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 eff_wtag_Down znunu 0.89586355405 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_wtag_Up znunu 1.0904226215 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf eff_wtag_Down znunu 0.90957745747 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_wtag_Up znunu 1.14877312599 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 eff_wtag_Down znunu 0.851226942621 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_wtag_Up znunu 1.13708345845 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf eff_wtag_Down znunu 0.862916455108 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_wtag_Up znunu 1.0 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf eff_wtag_Down znunu 1.0 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_wtag_Up znunu 1.11398432607 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 eff_wtag_Down znunu 0.886015673931 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_wtag_Up znunu 1.10397541755 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf eff_wtag_Down znunu 0.896024582446 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_wtag_Up znunu 1.1006325109 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 eff_wtag_Down znunu 0.899367489102 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_wtag_Up znunu 1.11801437168 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 eff_wtag_Down znunu 0.881985521828 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_wtag_Up znunu 1.11219313579 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf eff_wtag_Down znunu 0.88780686421 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_wtag_Up znunu 1.14383934639 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 eff_wtag_Down znunu 0.856160653609 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_wtag_Up znunu 1.04654497524 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 eff_wtag_Down znunu 0.953455133839 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_wtag_Up znunu 1.0672959869 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf eff_wtag_Down znunu 0.932703903904 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_wtag_Up znunu 1.136642172 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 eff_wtag_Down znunu 0.863357754255 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_wtag_Up znunu 1.13455228522 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf eff_wtag_Down znunu 0.865447640215 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_wtag_Up znunu 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 eff_wtag_Down znunu 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_wtag_Up znunu 1.13012499111 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 eff_wtag_Down znunu 0.86987493766 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_wtag_Up znunu 1.05008346142 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf eff_wtag_Down znunu 0.949916538584 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_wtag_Up znunu 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 eff_wtag_Down znunu 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_wtag_Up znunu 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf eff_wtag_Down znunu 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_Up znunu 1.32629401466 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_Down znunu 0.719304247562 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_wtag_Up znunu 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 eff_wtag_Down znunu 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_wtag_Up znunu 1.0 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf eff_wtag_Down znunu 1.0 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_Up znunu 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_Down znunu 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_wtag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 eff_wtag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_wtag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 eff_wtag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_wtag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf eff_wtag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_wtag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 eff_wtag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_wtag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf eff_wtag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_wtag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 eff_wtag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_wtag_Up znunu 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 eff_wtag_Down znunu 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_wtag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf eff_wtag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_wtag_Up znunu 1.14346112463 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 eff_wtag_Down znunu 0.856538875367 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_wtag_Up znunu 1.15019483105 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 eff_wtag_Down znunu 0.849805110665 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_wtag_Up znunu 1.0690986866 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf eff_wtag_Down znunu 0.930901392966 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 eff_wtag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_wtag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 eff_wtag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_wtag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf eff_wtag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 eff_wtag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_wtag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 eff_wtag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_wtag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf eff_wtag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 eff_wtag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_wtag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 eff_wtag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_wtag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf eff_wtag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_wtag_Up znunu 1.16685273713 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf eff_wtag_Down znunu 0.833147348391 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_wtag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 eff_wtag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_wtag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf eff_wtag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_wtag_Up znunu 1.06656247886 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf eff_wtag_Down znunu 0.933437618615 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_wtag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf eff_wtag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_Up znunu 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf eff_wtag_Down znunu 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_wtag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 eff_wtag_Down znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_wtag_Up znunu 1.0 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf eff_wtag_Down znunu 1.0 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_Up znunu 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf eff_wtag_Down znunu 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_Up znunu 1.00128290308 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 trigger_err_Down znunu 0.998218077417 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_Up znunu 1.00134971833 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 trigger_err_Down znunu 0.997920644976 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_Up znunu 1.00135129246 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 trigger_err_Down znunu 0.99791947374 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_Up znunu 1.00131636918 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf trigger_err_Down znunu 0.997954373387 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_Up znunu 1.00141058902 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 trigger_err_Down znunu 0.99812427051 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_Up znunu 1.00157511631 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 trigger_err_Down znunu 0.997701663686 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_Up znunu 1.00163119018 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 trigger_err_Down znunu 0.997647753516 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_Up znunu 1.00156179589 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf trigger_err_Down znunu 0.997716458872 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_Up znunu 1.00112013235 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 trigger_err_Down znunu 0.99838239424 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_Up znunu 1.00107394794 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 trigger_err_Down znunu 0.998191333088 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 trigger_err_Up znunu 1.0010589619 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 trigger_err_Down znunu 0.99820649704 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf trigger_err_Up znunu 1.00106237467 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf trigger_err_Down znunu 0.998205559399 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 trigger_err_Up znunu 1.00115397695 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 trigger_err_Down znunu 0.998420516906 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 trigger_err_Up znunu 1.00137032589 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 trigger_err_Down znunu 0.997896847655 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 trigger_err_Up znunu 1.00147601286 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 trigger_err_Down znunu 0.997786085293 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf trigger_err_Up znunu 1.00106410088 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf trigger_err_Down znunu 0.998206223407 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_Up znunu 1.00127402703 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 trigger_err_Down znunu 0.998607111898 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 trigger_err_Up znunu 1.00118794142 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 trigger_err_Down znunu 0.998557363328 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 trigger_err_Up znunu 1.00147410703 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 trigger_err_Down znunu 0.997791342015 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf trigger_err_Up znunu 1.00161748131 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf trigger_err_Down znunu 0.997660993526 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_Up znunu 1.00126501264 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 trigger_err_Down znunu 0.99861995417 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 trigger_err_Up znunu 1.00122483392 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 trigger_err_Down znunu 0.998519177989 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 trigger_err_Up znunu 1.00146009236 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 trigger_err_Down znunu 0.997799063552 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf trigger_err_Up znunu 1.00162039642 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf trigger_err_Down znunu 0.997654226988 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_Up znunu 1.00119234602 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 trigger_err_Down znunu 0.998317001266 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_Up znunu 1.00127924309 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 trigger_err_Down znunu 0.997974949493 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 trigger_err_Up znunu 1.00120074906 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 trigger_err_Down znunu 0.99806354915 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf trigger_err_Up znunu 1.00128825009 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf trigger_err_Down znunu 0.997974568679 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_Up znunu 1.00113383145 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 trigger_err_Down znunu 0.998384504264 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_Up znunu 1.00138896022 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 trigger_err_Down znunu 0.99787436315 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 trigger_err_Up znunu 1.00130497004 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 trigger_err_Down znunu 0.997953926404 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf trigger_err_Up znunu 1.00146356538 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf trigger_err_Down znunu 0.997831664414 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_Up znunu 1.00123487585 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 trigger_err_Down znunu 0.998650451925 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 trigger_err_Up znunu 1.00110082835 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 trigger_err_Down znunu 0.998648206077 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf trigger_err_Up znunu 1.00102244898 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf trigger_err_Down znunu 0.998237685042 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 trigger_err_Up znunu 1.00128104721 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 trigger_err_Down znunu 0.998595953282 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 trigger_err_Up znunu 1.00116610049 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 trigger_err_Down znunu 0.998580051138 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf trigger_err_Up znunu 1.0009319753 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf trigger_err_Down znunu 0.998287307386 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_Up znunu 1.00127855024 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 trigger_err_Down znunu 0.99860151429 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 trigger_err_Up znunu 1.00116157067 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 trigger_err_Down znunu 0.998584738911 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf trigger_err_Up znunu 1.0016091537 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf trigger_err_Down znunu 0.997666348672 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_Up znunu 1.00136482512 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 trigger_err_Down znunu 0.998491534578 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 trigger_err_Up znunu 1.00157364633 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 trigger_err_Down znunu 0.998155898249 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf trigger_err_Up znunu 1.00085633511 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf trigger_err_Down znunu 0.99837031157 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 trigger_err_Up znunu 1.00141220344 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 trigger_err_Down znunu 0.998119654132 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 trigger_err_Up znunu 1.00121202425 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 trigger_err_Down znunu 0.998048936566 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf trigger_err_Up znunu 1.00129718379 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf trigger_err_Down znunu 0.99796806174 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 trigger_err_Up znunu 1.00127845133 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 trigger_err_Down znunu 0.99826277069 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 trigger_err_Up znunu 1.00120036831 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 trigger_err_Down znunu 0.998048365209 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf trigger_err_Up znunu 1.00137988139 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf trigger_err_Down znunu 0.997898857558 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_Up znunu 1.00133889762 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 trigger_err_Down znunu 0.99837198794 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 trigger_err_Up znunu 1.00184409177 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 trigger_err_Down znunu 0.997425420145 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf trigger_err_Up znunu 1.00123686426 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf trigger_err_Down znunu 0.997985961898 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Up znunu 1.00221312706 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Down znunu 0.99759786751 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Up znunu 1.00133145438 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Down znunu 0.998549244619 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Up znunu 1.00143930971 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Down znunu 0.998295719222 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Up znunu 1.00226522418 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Down znunu 0.997053239685 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Up znunu 1.00225676305 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 trigger_err_Down znunu 0.997545254475 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Up znunu 1.00126491873 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 trigger_err_Down znunu 0.998628782862 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Up znunu 1.00141121856 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 trigger_err_Down znunu 0.998325301314 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Up znunu 1.00163874216 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf trigger_err_Down znunu 0.997623632228 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_Up znunu 1.0017804517 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_Down znunu 0.998069685512 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_Up znunu 1.00143524814 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_Down znunu 0.998343470852 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_Up znunu 1.00158503482 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_Down znunu 0.997945664221 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_Up znunu 1.00176464516 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_Down znunu 0.997506437248 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_Up znunu 1.00175537382 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 trigger_err_Down znunu 0.998095134955 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_Up znunu 1.00143747001 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 trigger_err_Down znunu 0.998339608926 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_Up znunu 1.0016079304 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 trigger_err_Down znunu 0.997945964089 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_Up znunu 1.00177040763 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf trigger_err_Down znunu 0.997498963942 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_Up znunu 1.00151136823 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_Down znunu 0.998233999979 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_Up znunu 1.00170790352 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_Down znunu 0.99757458014 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_Up znunu 1.00150427897 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_Down znunu 0.997757262661 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_Up znunu 1.00163574025 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_Down znunu 0.998125191732 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_Up znunu 1.00219993993 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_Down znunu 0.997123871231 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_Up znunu 1.00158087047 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_Down znunu 0.997679794344 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_Up znunu 1.00172625028 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_Down znunu 0.998063078746 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_Up znunu 1.00257765446 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_Down znunu 0.996688473802 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_Up znunu 1.00129280007 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_Down znunu 0.997929035296 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 trigger_err_Up znunu 1.0018645532 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 trigger_err_Down znunu 0.9979685045 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 trigger_err_Up znunu 1.00162440901 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 trigger_err_Down znunu 0.998145348756 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf trigger_err_Up znunu 1.00245924557 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf trigger_err_Down znunu 0.997006099272 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 trigger_err_Up znunu 1.00191195606 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 trigger_err_Down znunu 0.997914774404 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 trigger_err_Up znunu 1.00172185368 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 trigger_err_Down znunu 0.998033909755 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf trigger_err_Up znunu 1.00273058193 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf trigger_err_Down znunu 0.996642345254 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 trigger_err_Up znunu 1.00181652506 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 trigger_err_Down znunu 0.998032362824 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 trigger_err_Up znunu 1.00143019489 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 trigger_err_Down znunu 0.998352953521 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 trigger_err_Up znunu 1.0016324434 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 trigger_err_Down znunu 0.997929059849 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 trigger_err_Up znunu 1.00193057591 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 trigger_err_Down znunu 0.997351292564 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf trigger_err_Up znunu 1.00204954001 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf trigger_err_Down znunu 0.997244680064 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Up znunu 1.00180061597 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Down znunu 0.998047206344 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 trigger_err_Up znunu 1.00147277702 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 trigger_err_Down znunu 0.998299441972 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 trigger_err_Up znunu 1.0015885685 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 trigger_err_Down znunu 0.997949274066 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 trigger_err_Up znunu 1.00199315726 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 trigger_err_Down znunu 0.997286879398 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf trigger_err_Up znunu 1.00158930097 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf trigger_err_Down znunu 0.997676230383 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 trigger_err_Up znunu 1.00171017553 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 trigger_err_Down znunu 0.998138639589 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 trigger_err_Up znunu 1.00143785831 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 trigger_err_Down znunu 0.998338774828 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 trigger_err_Up znunu 1.00161875871 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 trigger_err_Down znunu 0.997846007343 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 trigger_err_Up znunu 1.00281801521 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 trigger_err_Down znunu 0.996530341959 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf trigger_err_Up znunu 1.00234025846 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf trigger_err_Down znunu 0.996954835107 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 trigger_err_Up znunu 1.00190836016 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 trigger_err_Down znunu 0.997887946959 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf trigger_err_Up znunu 1.00363794499 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf trigger_err_Down znunu 0.995681868984 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 trigger_err_Up znunu 1.00149620281 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 trigger_err_Down znunu 0.99823709684 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf trigger_err_Up znunu 1.00203604258 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf trigger_err_Down znunu 0.997293647166 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 trigger_err_Up znunu 1.00178808848 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 trigger_err_Down znunu 0.99798370758 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf trigger_err_Up znunu 1.00245535225 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf trigger_err_Down znunu 0.996840423796 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_Up znunu 1.00149668157 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 trigger_err_Down znunu 0.998232186582 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_Up znunu 1.00098312072 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 trigger_err_Down znunu 0.998220934828 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_Up znunu 1.00133383104 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf trigger_err_Down znunu 0.997895125776 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_Up znunu 1.00161813341 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 trigger_err_Down znunu 0.998160874788 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_Up znunu 1.00141755592 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 trigger_err_Down znunu 0.997882421789 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_Up znunu 1.00163304681 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf trigger_err_Down znunu 0.997634771952 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_Up znunu 1.00179264704 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 trigger_err_Down znunu 0.998004811862 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_Up znunu 1.00122611548 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 trigger_err_Down znunu 0.99797132548 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_Up znunu 1.0016944247 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf trigger_err_Down znunu 0.997597340124 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 trigger_err_Up znunu 1.00173855955 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 trigger_err_Down znunu 0.99810487533 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 trigger_err_Up znunu 1.00173426668 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 trigger_err_Down znunu 0.998034426764 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf trigger_err_Up znunu 1.00240003208 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf trigger_err_Down znunu 0.99705613465 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 trigger_err_Up znunu 1.00133995973 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 trigger_err_Down znunu 0.998554374947 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 trigger_err_Up znunu 1.00131885829 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 trigger_err_Down znunu 0.998481965859 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf trigger_err_Up znunu 1.00285165165 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf trigger_err_Down znunu 0.996606497406 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_Up znunu 1.00175902117 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_Down znunu 0.998096683293 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 trigger_err_Up znunu 1.00143939908 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 trigger_err_Down znunu 0.998342148156 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 trigger_err_Up znunu 1.00165154396 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 trigger_err_Down znunu 0.997939621757 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 trigger_err_Up znunu 1.00196175886 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 trigger_err_Down znunu 0.997340384778 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf trigger_err_Up znunu 1.00157695814 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf trigger_err_Down znunu 0.997696755286 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Up znunu 1.00175741034 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Down znunu 0.99809984777 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 trigger_err_Up znunu 1.00155057087 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 trigger_err_Down znunu 0.998222573097 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 trigger_err_Up znunu 1.00174518238 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 trigger_err_Down znunu 0.997850505673 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 trigger_err_Up znunu 1.00196031472 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 trigger_err_Down znunu 0.99733503119 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf trigger_err_Up znunu 1.00209259194 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf trigger_err_Down znunu 0.997209112999 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_Up znunu 1.00174130699 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_Down znunu 0.998123597784 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 trigger_err_Up znunu 1.0014562209 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 trigger_err_Down znunu 0.998311250608 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 trigger_err_Up znunu 1.00094083273 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 trigger_err_Down znunu 0.998639277981 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 trigger_err_Up znunu 1.00280567298 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 trigger_err_Down znunu 0.996471904454 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf trigger_err_Up znunu 1.00228586404 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf trigger_err_Down znunu 0.997068320256 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 trigger_err_Up znunu 1.00182089467 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 trigger_err_Down znunu 0.997961559595 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf trigger_err_Up znunu 1.00363794679 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf trigger_err_Down znunu 0.995681900098 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 trigger_err_Up znunu 1.00167863849 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 trigger_err_Down znunu 0.998163691097 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 trigger_err_Up znunu 1.00113145015 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 trigger_err_Down znunu 0.99867348866 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf trigger_err_Up znunu 1.0016059365 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf trigger_err_Down znunu 0.997778947985 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 trigger_err_Up znunu 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 trigger_err_Down znunu 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 trigger_err_Up znunu 1.00182098992 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 trigger_err_Down znunu 0.99796165788 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf trigger_err_Up znunu 1.00169179834 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf trigger_err_Down znunu 0.997941040097 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 trigger_err_Up znunu 1.00171853345 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 trigger_err_Down znunu 0.998115439465 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf trigger_err_Up znunu 1.00187625599 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf trigger_err_Down znunu 0.997541465149 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 trigger_err_Up znunu 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 trigger_err_Down znunu 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf trigger_err_Up znunu 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf trigger_err_Down znunu 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_Up znunu 1.00237742617 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_Down znunu 0.997354483982 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 trigger_err_Up znunu 1.00158734881 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 trigger_err_Down znunu 0.998242473481 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf trigger_err_Up znunu 1.0024287281 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf trigger_err_Down znunu 0.997112175146 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 trigger_err_Up znunu 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 trigger_err_Down znunu 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf trigger_err_Up znunu 1.00363805682 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf trigger_err_Down znunu 0.995681917264 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_Up znunu 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_Down znunu 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 trigger_err_Up znunu 1.00188355423 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 trigger_err_Down znunu 0.997938818928 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 trigger_err_Up znunu 1.00157690448 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 trigger_err_Down znunu 0.998149383848 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf trigger_err_Up znunu 1.00107986894 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf trigger_err_Down znunu 0.998116259199 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 trigger_err_Up znunu 1.00146882338 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 trigger_err_Down znunu 0.99841854125 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 trigger_err_Up znunu 1.00141502744 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 trigger_err_Down znunu 0.998208533274 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf trigger_err_Up znunu 1.00081772048 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf trigger_err_Down znunu 0.998389866009 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 trigger_err_Up znunu 1.00202514846 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 trigger_err_Down znunu 0.997849050206 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 trigger_err_Up znunu 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 trigger_err_Down znunu 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf trigger_err_Up znunu 1.0 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf trigger_err_Down znunu 0.999135275873 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 trigger_err_Up znunu 1.00163439041 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 trigger_err_Down znunu 0.998228811258 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 trigger_err_Up znunu 1.0020882624 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 trigger_err_Down znunu 0.997622740645 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf trigger_err_Up znunu 1.00120744898 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf trigger_err_Down znunu 0.997989202816 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_Up znunu 1.00175366201 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 trigger_err_Down znunu 0.99809639147 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 trigger_err_Up znunu 1.00139009732 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 trigger_err_Down znunu 0.998362738295 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf trigger_err_Up znunu 1.00222446619 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf trigger_err_Down znunu 0.997127462343 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Up znunu 1.00185600965 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 trigger_err_Down znunu 0.997987607453 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 trigger_err_Up znunu 1.00123021971 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 trigger_err_Down znunu 0.998324735992 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf trigger_err_Up znunu 1.00111536727 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf trigger_err_Down znunu 0.998136604671 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_Up znunu 1.00174648182 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 trigger_err_Down znunu 0.998123740791 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 trigger_err_Up znunu 1.00153803006 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 trigger_err_Down znunu 0.998244405909 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf trigger_err_Up znunu 1.00363801386 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf trigger_err_Down znunu 0.995681901415 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf trigger_err_Up znunu 1.00182099626 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf trigger_err_Down znunu 0.997961619857 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 trigger_err_Up znunu 1.002320534 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 trigger_err_Down znunu 0.997413961451 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf trigger_err_Up znunu 1.00102800141 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf trigger_err_Down znunu 0.998375870613 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf trigger_err_Up znunu 1.0024991622 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf trigger_err_Down znunu 0.997103042215 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf trigger_err_Up znunu 1.0011566343 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf trigger_err_Down znunu 0.998768330562 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_Up znunu 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf trigger_err_Down znunu 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 trigger_err_Up znunu 1.00204833259 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 trigger_err_Down znunu 0.997730894816 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf trigger_err_Up znunu 1.00105497351 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf trigger_err_Down znunu 0.998694594757 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_Up znunu 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf trigger_err_Down znunu 1 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_Up znunu 0.996092563339 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt450to550 PU_Weight_Down znunu 1.00369236462 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_Up znunu 0.996395901484 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt550to650 PU_Weight_Down znunu 1.0034615893 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_Up znunu 0.996427170686 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt650to750 PU_Weight_Down znunu 1.00350126112 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_Up znunu 0.997085029071 +bin_lm_nb0_nivf0_highptisr_nj2to5_MET_pt750toinf PU_Weight_Down znunu 1.00275537034 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_Up znunu 0.997395605475 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt450to550 PU_Weight_Down znunu 1.00256384435 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_Up znunu 0.996523636832 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt550to650 PU_Weight_Down znunu 1.00319759048 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_Up znunu 1.0001561154 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt650to750 PU_Weight_Down znunu 0.999587130052 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_Up znunu 1.0014664943 +bin_lm_nb0_nivf0_highptisr_nj6_MET_pt750toinf PU_Weight_Down znunu 0.998191631781 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_Up znunu 1.01468725385 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt450to550 PU_Weight_Down znunu 0.985575566232 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_Up znunu 1.01180021667 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt550to650 PU_Weight_Down znunu 0.988366626335 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PU_Weight_Up znunu 1.01399877653 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt650to750 PU_Weight_Down znunu 0.98626477122 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PU_Weight_Up znunu 1.01313257819 +bin_lm_nb0_nivf1_highptisr_nj2to5_MET_pt750toinf PU_Weight_Down znunu 0.98685666714 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PU_Weight_Up znunu 1.02501282271 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt450to550 PU_Weight_Down znunu 0.97311989115 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PU_Weight_Up znunu 0.99301257597 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt550to650 PU_Weight_Down znunu 1.01072119455 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PU_Weight_Up znunu 1.01077835887 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt650to750 PU_Weight_Down znunu 0.988175652711 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PU_Weight_Up znunu 1.01850793718 +bin_lm_nb0_nivf1_highptisr_nj6_MET_pt750toinf PU_Weight_Down znunu 0.979923958342 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_Up znunu 1.0080845978 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt300to400 PU_Weight_Down znunu 0.992277639725 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PU_Weight_Up znunu 1.00862329898 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt400to500 PU_Weight_Down znunu 0.99169802944 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PU_Weight_Up znunu 1.01823437494 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt500to600 PU_Weight_Down znunu 0.981637627535 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PU_Weight_Up znunu 1.01339415338 +bin_lm_nb1_nivf0_lowmtb_lowptisr_lowptb_MET_pt600toinf PU_Weight_Down znunu 0.986133401597 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_Up znunu 1.0025596999 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt300to400 PU_Weight_Down znunu 0.997539332963 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PU_Weight_Up znunu 1.00517791935 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt400to500 PU_Weight_Down znunu 0.996198791298 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PU_Weight_Up znunu 1.00255495581 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt500to600 PU_Weight_Down znunu 0.997391276317 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PU_Weight_Up znunu 1.00411880042 +bin_lm_nb1_nivf0_lowmtb_lowptisr_medptb_MET_pt600toinf PU_Weight_Down znunu 0.991288292628 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_Up znunu 1.00694877755 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt450to550 PU_Weight_Down znunu 0.993847201623 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_Up znunu 1.00985089032 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt550to650 PU_Weight_Down znunu 0.990392226025 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PU_Weight_Up znunu 1.009864269 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt650to750 PU_Weight_Down znunu 0.991587944526 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PU_Weight_Up znunu 1.01118876806 +bin_lm_nb1_nivf0_lowmtb_highptisr_lowptb_MET_pt750toinf PU_Weight_Down znunu 0.988966619258 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_Up znunu 1.00043316719 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt450to550 PU_Weight_Down znunu 1.00039179205 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_Up znunu 1.00457494816 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt550to650 PU_Weight_Down znunu 0.995477419829 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PU_Weight_Up znunu 1.00129016839 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt650to750 PU_Weight_Down znunu 1.00014240213 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PU_Weight_Up znunu 1.00079666453 +bin_lm_nb1_nivf0_lowmtb_highptisr_medptb_MET_pt750toinf PU_Weight_Down znunu 0.998798703994 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PU_Weight_Up znunu 1.01103650223 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt300to400 PU_Weight_Down znunu 0.987712151381 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PU_Weight_Up znunu 1.03341761401 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt400to500 PU_Weight_Down znunu 0.967563601285 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PU_Weight_Up znunu 1.02485131359 +bin_lm_nb1_nivf1_lowmtb_medptisr_lowptb_MET_pt500toinf PU_Weight_Down znunu 0.975742155769 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PU_Weight_Up znunu 1.0027467631 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt300to400 PU_Weight_Down znunu 0.997018419656 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PU_Weight_Up znunu 1.0034445058 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt400to500 PU_Weight_Down znunu 0.996573294242 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PU_Weight_Up znunu 0.985895673382 +bin_lm_nb2_lowmtb_lowptisr_lowptb12_MET_pt500toinf PU_Weight_Down znunu 1.01368970055 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_Up znunu 0.997420720985 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt300to400 PU_Weight_Down znunu 1.00298686925 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PU_Weight_Up znunu 0.997474207669 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt400to500 PU_Weight_Down znunu 1.00171076241 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PU_Weight_Up znunu 1.0307313263 +bin_lm_nb2_lowmtb_lowptisr_medptb12_MET_pt500toinf PU_Weight_Down znunu 0.978923595906 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_Up znunu 1.00433906354 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt300to400 PU_Weight_Down znunu 0.997628723846 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PU_Weight_Up znunu 0.998261235771 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt400to500 PU_Weight_Down znunu 0.999370541469 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PU_Weight_Up znunu 0.995104734164 +bin_lm_nb2_lowmtb_lowptisr_highptb12_nj7_MET_pt500toinf PU_Weight_Down znunu 1.00643392496 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PU_Weight_Up znunu 1.01046308053 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt450to550 PU_Weight_Down znunu 0.991768025011 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PU_Weight_Up znunu 0.99712916608 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt550to650 PU_Weight_Down znunu 1.0046635401 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PU_Weight_Up znunu 1.0098663223 +bin_lm_nb2_lowmtb_highptisr_lowptb12_MET_pt650toinf PU_Weight_Down znunu 0.989576243305 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PU_Weight_Up znunu 0.996800509288 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt450to550 PU_Weight_Down znunu 1.00350925658 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PU_Weight_Up znunu 0.998073235903 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt550to650 PU_Weight_Down znunu 0.999041954192 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PU_Weight_Up znunu 0.993435691018 +bin_lm_nb2_lowmtb_highptisr_medptb12_MET_pt650toinf PU_Weight_Down znunu 1.00809004333 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_Up znunu 0.98376209689 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt450to550 PU_Weight_Down znunu 1.01748944445 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PU_Weight_Up znunu 1.04156379529 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt550to650 PU_Weight_Down znunu 0.952065430638 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PU_Weight_Up znunu 1.00099275628 +bin_lm_nb2_lowmtb_highptisr_highptb12_nj7_MET_pt650toinf PU_Weight_Down znunu 0.99426678621 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Up znunu 0.991427164728 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Down znunu 1.0076856308 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Up znunu 0.998171902178 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Down znunu 1.00069419563 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Up znunu 1.02161687217 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Down znunu 0.981281370921 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Up znunu 0.99720045149 +bin_hm_nb1_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Down znunu 1.00478923015 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Up znunu 0.98368535766 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt250to300 PU_Weight_Down znunu 1.01656929824 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Up znunu 0.99942198222 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt300to400 PU_Weight_Down znunu 0.997816036229 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Up znunu 1.01920833774 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt400to500 PU_Weight_Down znunu 0.982379958166 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Up znunu 0.995278692388 +bin_hm_nb2_lowmtb_nj7_nrtgeq1_MET_pt500toinf PU_Weight_Down znunu 1.00417531574 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_Up znunu 1.00623925312 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_Down znunu 0.994055101937 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_Up znunu 1.00875859908 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_Down znunu 0.991397058158 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_Up znunu 1.00310468456 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_Down znunu 0.996642090332 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_Up znunu 1.00338497013 +bin_hm_nb1_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_Down znunu 0.996497537258 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_Up znunu 1.01243793047 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt250to350 PU_Weight_Down znunu 0.987659605531 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_Up znunu 1.00460970318 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt350to450 PU_Weight_Down znunu 0.996222053979 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_Up znunu 1.00567547345 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt450to550 PU_Weight_Down znunu 0.99515713642 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_Up znunu 1.00950243313 +bin_hm_nb2_highmtb_nt0_nrt0_nw0_htgt1000_MET_pt550toinf PU_Weight_Down znunu 0.99094904485 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_Up znunu 1.00819557712 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_Down znunu 0.991868537008 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_Up znunu 0.997737058595 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_Down znunu 1.00191474399 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_Up znunu 1.00788654653 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_Down znunu 0.992381710655 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_Up znunu 1.00217625151 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_Down znunu 0.998167922088 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Up znunu 1.01684366648 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Down znunu 0.982094188071 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Up znunu 1.00561085056 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Down znunu 0.995793312659 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_Up znunu 1.01919518439 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_Down znunu 0.982371169955 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_Up znunu 1.01510109166 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_Down znunu 0.978179602122 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_Up znunu 1.04949402024 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_Down znunu 0.937396779798 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PU_Weight_Up znunu 1.00288150276 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt250to350 PU_Weight_Down znunu 0.998170845559 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PU_Weight_Up znunu 1.01433905287 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt350to450 PU_Weight_Down znunu 0.985099316855 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PU_Weight_Up znunu 1.0088034838 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htlt1300_MET_pt450toinf PU_Weight_Down znunu 0.992767023681 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PU_Weight_Up znunu 1.00397188545 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt250to350 PU_Weight_Down znunu 0.993644279552 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PU_Weight_Up znunu 0.981007065314 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt350to450 PU_Weight_Down znunu 1.02466901864 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PU_Weight_Up znunu 1.01145772044 +bin_hm_nb1_highmtb_nt0_nrt0_nwgeq1_htgt1300_MET_pt450toinf PU_Weight_Down znunu 0.992126962939 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PU_Weight_Up znunu 1.00196453317 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt250to350 PU_Weight_Down znunu 0.997948403239 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PU_Weight_Up znunu 1.00185502283 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt350to450 PU_Weight_Down znunu 0.998192804827 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PU_Weight_Up znunu 1.00056715748 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt450to550 PU_Weight_Down znunu 0.998576854848 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PU_Weight_Up znunu 1.00527390487 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt550to650 PU_Weight_Down znunu 0.995715754259 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PU_Weight_Up znunu 1.01459875234 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htlt1000_MET_pt650toinf PU_Weight_Down znunu 0.984537973573 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Up znunu 0.999690472436 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Down znunu 1.00164004783 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_Up znunu 0.99020426461 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_Down znunu 1.00937810734 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_Up znunu 0.999668903198 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_Down znunu 1.00195774037 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Up znunu 1.00913651574 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Down znunu 0.989248143006 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Up znunu 1.00418644855 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Down znunu 0.997009338309 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PU_Weight_Up znunu 0.978032357051 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt250to350 PU_Weight_Down znunu 1.02135026836 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PU_Weight_Up znunu 1.03563438954 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt350to450 PU_Weight_Down znunu 0.972944886598 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PU_Weight_Up znunu 1.01919106242 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt450to550 PU_Weight_Down znunu 0.974548212287 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PU_Weight_Up znunu 1.01967131938 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt550to650 PU_Weight_Down znunu 0.995571377861 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PU_Weight_Up znunu 1.00929837335 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nw0_htgt1500_MET_pt650toinf PU_Weight_Down znunu 0.992270842411 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PU_Weight_Up znunu 0.944817545991 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt250to550 PU_Weight_Down znunu 1.06233009156 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PU_Weight_Up znunu 0.986038942011 +bin_hm_nb1_highmtb_ntgeq1_nrt0_nwgeq1_MET_pt550toinf PU_Weight_Down znunu 1.00690973571 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PU_Weight_Up znunu 1.01685620148 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt250to550 PU_Weight_Down znunu 0.976274531261 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PU_Weight_Up znunu 0.984742294965 +bin_hm_nb1_highmtb_ntgeq1_nrtgeq1_nw0_MET_pt550toinf PU_Weight_Down znunu 1.01337326774 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PU_Weight_Up znunu 0.988651100371 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt250to550 PU_Weight_Down znunu 1.01011292554 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PU_Weight_Up znunu 1.03348029467 +bin_hm_nb1_highmtb_nt0_nrtgeq1_nwgeq1_MET_pt550toinf PU_Weight_Down znunu 0.962500179462 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_Up znunu 1.00271223371 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to550 PU_Weight_Down znunu 0.996529568719 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_Up znunu 0.984806303202 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550to650 PU_Weight_Down znunu 1.01867252483 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_Up znunu 0.998787446616 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt650toinf PU_Weight_Down znunu 1.00519038621 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_Up znunu 1.00818358607 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to550 PU_Weight_Down znunu 0.995759024251 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Up znunu 1.0085721029 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Down znunu 1.00090368866 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Up znunu 0.992010744737 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Down znunu 1.00878590127 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_Up znunu 1.02362179945 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to550 PU_Weight_Down znunu 0.971782119891 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_Up znunu 0.961315105113 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550to650 PU_Weight_Down znunu 1.03909664898 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_Up znunu 1.0526952227 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt650toinf PU_Weight_Down znunu 0.949617166957 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PU_Weight_Up znunu 1.02966070053 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt250to350 PU_Weight_Down znunu 0.967459144633 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PU_Weight_Up znunu 1.06245276959 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt350to450 PU_Weight_Down znunu 0.946831547488 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PU_Weight_Up znunu 1.00907990387 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htlt1300_MET_pt450toinf PU_Weight_Down znunu 0.989926924184 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PU_Weight_Up znunu 1.02181378118 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt250to350 PU_Weight_Down znunu 0.989307399696 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PU_Weight_Up znunu 1.0351305409 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt350to450 PU_Weight_Down znunu 0.976017852963 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PU_Weight_Up znunu 1.06085143325 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw1_htgt1300_MET_pt450toinf PU_Weight_Down znunu 0.987685503686 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_Up znunu 1.00099765166 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_Down znunu 0.998803888444 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PU_Weight_Up znunu 1.0081996646 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to450 PU_Weight_Down znunu 0.99098203786 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PU_Weight_Up znunu 1.00913937 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt450to550 PU_Weight_Down znunu 0.989918098556 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PU_Weight_Up znunu 1.0001182603 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550to650 PU_Weight_Down znunu 1.00030959085 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PU_Weight_Up znunu 1.00905131527 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt650toinf PU_Weight_Down znunu 0.989721444047 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Up znunu 1.00513724285 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Down znunu 0.995066796246 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_Up znunu 1.01388339928 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to450 PU_Weight_Down znunu 0.98702264525 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_Up znunu 0.995927445338 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt450to550 PU_Weight_Down znunu 1.00709997833 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Up znunu 1.01474657214 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550to650 PU_Weight_Down znunu 0.984953319107 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Up znunu 1.00597258227 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt650toinf PU_Weight_Down znunu 0.991166268055 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_Up znunu 0.982553417055 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_Down znunu 1.01529822987 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PU_Weight_Up znunu 1.00862285674 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to450 PU_Weight_Down znunu 0.992927071344 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PU_Weight_Up znunu 0.976163933514 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt450to550 PU_Weight_Down znunu 1.0283752374 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PU_Weight_Up znunu 0.998175658395 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550to650 PU_Weight_Down znunu 0.99831587111 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PU_Weight_Up znunu 0.992540335723 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt650toinf PU_Weight_Down znunu 1.004775418 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PU_Weight_Up znunu 1.05352650116 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt250to550 PU_Weight_Down znunu 0.939560042881 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PU_Weight_Up znunu 1.00236868057 +bin_hm_nbeq2_highmtb_nt1_nrt0_nw1_MET_pt550toinf PU_Weight_Down znunu 0.991707008351 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PU_Weight_Up znunu 0.971764403446 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt250to350 PU_Weight_Down znunu 1.02334654705 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PU_Weight_Up znunu 0.959854543 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt350to450 PU_Weight_Down znunu 1.04050462268 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PU_Weight_Up znunu 0.946353316807 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htlt1300_MET_pt450toinf PU_Weight_Down znunu 1.05244236705 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PU_Weight_Up znunu 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt250to350 PU_Weight_Down znunu 1 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PU_Weight_Up znunu 0.959415455281 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt350to450 PU_Weight_Down znunu 1.0383671691 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PU_Weight_Up znunu 1.07234886059 +bin_hm_nbeq2_highmtb_nt1_nrt1_nw0_htgt1300_MET_pt450toinf PU_Weight_Down znunu 0.920781261036 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PU_Weight_Up znunu 1.00115257412 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt250to550 PU_Weight_Down znunu 0.996555596851 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PU_Weight_Up znunu 0.966328738258 +bin_hm_nbeq2_highmtb_nt0_nrt1_nw1_MET_pt550toinf PU_Weight_Down znunu 0.986727141869 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PU_Weight_Up znunu 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt250to450 PU_Weight_Down znunu 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PU_Weight_Up znunu 1 +bin_hm_nbeq2_highmtb_nt2_nrt0_nw0_MET_pt450toinf PU_Weight_Down znunu 1 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_Up znunu 0.85287942878 +bin_hm_nbeq2_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_Down znunu 1.16547276934 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PU_Weight_Up znunu 1.01439214564 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt250to450 PU_Weight_Down znunu 0.990807749082 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PU_Weight_Up znunu 0.964041050318 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htlt1300_MET_pt450toinf PU_Weight_Down znunu 1.03988775676 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PU_Weight_Up znunu 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt250to450 PU_Weight_Down znunu 1 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PU_Weight_Up znunu 0.998526712805 +bin_hm_nbeq2_highmtb_nt0_nrt2_nw0_htgt1300_MET_pt450toinf PU_Weight_Down znunu 0.995092009102 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_Up znunu 1 +bin_hm_nbeq2_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_Down znunu 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PU_Weight_Up znunu 1.08270909117 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt250to350 PU_Weight_Down znunu 0.923615134183 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PU_Weight_Up znunu 1.03925692772 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt350to550 PU_Weight_Down znunu 0.959371979549 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PU_Weight_Up znunu 0.980409548916 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htlt1000_MET_pt550toinf PU_Weight_Down znunu 1.01768971339 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Up znunu 1.00709735089 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Down znunu 1.00953974597 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PU_Weight_Up znunu 1.00409657027 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt350to550 PU_Weight_Down znunu 0.997012324508 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PU_Weight_Up znunu 0.989746097431 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_ht1000to1500_MET_pt550toinf PU_Weight_Down znunu 1.01065603223 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PU_Weight_Up znunu 0.954916863095 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt250to350 PU_Weight_Down znunu 1.0454766959 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PU_Weight_Up znunu 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt350to550 PU_Weight_Down znunu 1 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PU_Weight_Up znunu 1.10442432734 +bin_hm_nb3_highmtb_nt1_nrt0_nw0_htgt1500_MET_pt550toinf PU_Weight_Down znunu 0.879966015488 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PU_Weight_Up znunu 0.997135274271 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt250to350 PU_Weight_Down znunu 1.01272544764 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PU_Weight_Up znunu 0.986422039311 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt350to550 PU_Weight_Down znunu 1.01112504219 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PU_Weight_Up znunu 1.18559515595 +bin_hm_nb3_highmtb_nt0_nrt0_nw1_MET_pt550toinf PU_Weight_Down znunu 0.819640411573 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_Up znunu 1.00822802359 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt250to350 PU_Weight_Down znunu 0.989404977052 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PU_Weight_Up znunu 1.02093969418 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt350to550 PU_Weight_Down znunu 0.981478590801 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PU_Weight_Up znunu 1.00189243063 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htlt1000_MET_pt550toinf PU_Weight_Down znunu 1.00267778934 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Up znunu 1.01801427233 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt250to350 PU_Weight_Down znunu 0.982310301963 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PU_Weight_Up znunu 1.04955480566 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt350to550 PU_Weight_Down znunu 0.939873026184 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PU_Weight_Up znunu 1.03907422994 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_ht1000to1500_MET_pt550toinf PU_Weight_Down znunu 0.957995388728 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_Up znunu 1.0292453181 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt250to350 PU_Weight_Down znunu 0.963934623149 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PU_Weight_Up znunu 0.946146934658 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt350to550 PU_Weight_Down znunu 1.06511556565 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PU_Weight_Up znunu 0.924618224344 +bin_hm_nb3_highmtb_nt0_nrt1_nw0_htgt1500_MET_pt550toinf PU_Weight_Down znunu 1.07792044562 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PU_Weight_Up znunu 1.10088707506 +bin_hm_nb3_highmtb_nt1_nrt0_nw1_MET_pt250toinf PU_Weight_Down znunu 0.892629206799 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PU_Weight_Up znunu 1.04564047406 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt250to350 PU_Weight_Down znunu 0.948360175533 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PU_Weight_Up znunu 1.05705615398 +bin_hm_nb3_highmtb_nt1_nrt1_nw0_MET_pt350toinf PU_Weight_Down znunu 0.944562546386 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PU_Weight_Up znunu 1.79249555368 +bin_hm_nb3_highmtb_nt0_nrt1_nw1_MET_pt250toinf PU_Weight_Down znunu 0.547545198682 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PU_Weight_Up znunu 1.00402754813 +bin_hm_nb3_highmtb_nt2_nrt0_nw0_MET_pt250toinf PU_Weight_Down znunu 0.982678313047 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_Up znunu 1 +bin_hm_nb3_highmtb_nt0_nrt0_nw2_MET_pt250toinf PU_Weight_Down znunu 1 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PU_Weight_Up znunu 0.986038945528 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt250to350 PU_Weight_Down znunu 1.00690972147 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PU_Weight_Up znunu 1.22229071215 +bin_hm_nb3_highmtb_nt0_nrt2_nw0_MET_pt350toinf PU_Weight_Down znunu 0.78848682283 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_Up znunu 1 +bin_hm_nb3_highmtb_nrtntnwgeq3_MET_pt250toinf PU_Weight_Down znunu 1 diff --git a/dc_SUSY19Nano_setup_Local.conf b/dc_SUSY19Nano_setup_Local.conf index f9cd46e..809baa7 100644 --- a/dc_SUSY19Nano_setup_Local.conf +++ b/dc_SUSY19Nano_setup_Local.conf @@ -1,6 +1,6 @@ [signals] # Names given to signal samples -samples: T2tt_1000_0, T2tt_1000_100, T2tt_1000_150, T2tt_1000_200, T2tt_1000_250, T2tt_1000_300, T2tt_1000_350, T2tt_1000_400, T2tt_1000_450, T2tt_1000_50, T2tt_1000_500, T2tt_1000_550, T2tt_1000_600, T2tt_1000_650, T2tt_1000_700, T2tt_1000_726, T2tt_1000_750, T2tt_1000_776, T2tt_1000_800, T2tt_1000_826, T2tt_1000_850, T2tt_1000_876, T2tt_1000_900, T2tt_1000_914, T2tt_1008_826, T2tt_1018_850, T2tt_1024_726, T2tt_1024_750, T2tt_1024_776, T2tt_1024_800, T2tt_1024_826, T2tt_1024_876, T2tt_1024_900, T2tt_1024_926, T2tt_1024_938, T2tt_1032_850, T2tt_1044_876, T2tt_1052_0, T2tt_1052_100, T2tt_1052_150, T2tt_1052_200, T2tt_1052_250, T2tt_1052_300, T2tt_1052_350, T2tt_1052_400, T2tt_1052_450, T2tt_1052_50, T2tt_1052_500, T2tt_1052_550, T2tt_1052_600, T2tt_1052_650, T2tt_1052_700, T2tt_1052_750, T2tt_1052_776, T2tt_1052_800, T2tt_1052_826, T2tt_1052_850, T2tt_1052_900, T2tt_1052_926, T2tt_1060_876, T2tt_1076_776, T2tt_1076_800, T2tt_1076_826, T2tt_1076_850, T2tt_1076_876, T2tt_1076_900, T2tt_1076_926, T2tt_1084_900, T2tt_1092_926, T2tt_1100_100, T2tt_1100_150, T2tt_1100_200, T2tt_1100_250, T2tt_1100_300, T2tt_1100_350, T2tt_1100_400, T2tt_1100_450, T2tt_1100_50, T2tt_1100_500, T2tt_1100_550, T2tt_1100_600, T2tt_1100_650, T2tt_1100_700, T2tt_1100_750, T2tt_1100_800, T2tt_1100_826, T2tt_1100_850, T2tt_1100_876, T2tt_1100_900, T2tt_1100_926, T2tt_1100_950, T2tt_1108_926, T2tt_1116_950, T2tt_1124_826, T2tt_1124_850, T2tt_1124_900, T2tt_1124_926, T2tt_1124_950, T2tt_1132_950, T2tt_1152_0, T2tt_1152_100, T2tt_1152_1000, T2tt_1152_150, T2tt_1152_200, T2tt_1152_250, T2tt_1152_300, T2tt_1152_350, T2tt_1152_400, T2tt_1152_450, T2tt_1152_50, T2tt_1152_500, T2tt_1152_550, T2tt_1152_600, T2tt_1152_650, T2tt_1152_700, T2tt_1152_750, T2tt_1152_800, T2tt_1152_850, T2tt_1152_876, T2tt_1152_926, T2tt_1152_950, T2tt_1176_876, T2tt_1176_900, T2tt_1176_926, T2tt_1176_950, T2tt_1184_1000, T2tt_1200_0, T2tt_1200_100, T2tt_1200_1000, T2tt_1200_150, T2tt_1200_200, T2tt_1200_250, T2tt_1200_350, T2tt_1200_450, T2tt_1200_50, T2tt_1200_500, T2tt_1200_550, T2tt_1200_600, T2tt_1200_650, T2tt_1200_700, T2tt_1200_750, T2tt_1200_800, T2tt_1200_850, T2tt_1200_900, T2tt_1200_926, T2tt_1200_950, T2tt_1200_976, T2tt_1252_0, T2tt_1252_100, T2tt_1252_1000, T2tt_1252_250, T2tt_1252_300, T2tt_1252_450, T2tt_1252_50, T2tt_1252_500, T2tt_1252_550, T2tt_1252_600, T2tt_1252_650, T2tt_1252_700, T2tt_1252_750, T2tt_1252_800, T2tt_1252_850, T2tt_1252_900, T2tt_1252_950, T2tt_1300_100, T2tt_1300_1000, T2tt_1300_200, T2tt_1300_250, T2tt_1300_300, T2tt_1300_350, T2tt_1300_400, T2tt_1300_450, T2tt_1300_50, T2tt_1300_500, T2tt_1300_550, T2tt_1300_600, T2tt_1300_650, T2tt_1300_700, T2tt_1300_750, T2tt_1300_800, T2tt_1300_850, T2tt_1300_900, T2tt_1300_950, T2tt_1352_0, T2tt_1352_100, T2tt_1352_1000, T2tt_1352_1052, T2tt_1352_1100, T2tt_1352_150, T2tt_1352_200, T2tt_1352_250, T2tt_1352_300, T2tt_1352_350, T2tt_1352_400, T2tt_1352_450, T2tt_1352_50, T2tt_1352_500, T2tt_1352_550, T2tt_1352_600, T2tt_1352_650, T2tt_1352_700, T2tt_1352_750, T2tt_1352_800, T2tt_1352_850, T2tt_1352_900, T2tt_1352_950, T2tt_1400_0, T2tt_1400_100, T2tt_1400_1000, T2tt_1400_1052, T2tt_1400_150, T2tt_1400_200, T2tt_1400_250, T2tt_1400_300, T2tt_1400_350, T2tt_1400_450, T2tt_1400_50, T2tt_1400_500, T2tt_1400_550, T2tt_1400_600, T2tt_1400_650, T2tt_1400_700, T2tt_1400_750, T2tt_1400_800, T2tt_1400_850, T2tt_1400_950, T2tt_1452_0, T2tt_1452_1052, T2tt_1452_1100, T2tt_1452_150, T2tt_1452_200, T2tt_1452_250, T2tt_1452_300, T2tt_1452_350, T2tt_1452_400, T2tt_1452_500, T2tt_1452_550, T2tt_1452_600, T2tt_1452_700, T2tt_1452_950, T2tt_1500_200, T2tt_1500_250, T2tt_1500_300, T2tt_1500_350, T2tt_1500_400, T2tt_1500_50, T2tt_1500_500, T2tt_1500_550, T2tt_1500_600, T2tt_1500_650, T2tt_1500_700, T2tt_1500_750, T2tt_1500_800, T2tt_1500_950, T2tt_150_0, T2tt_150_25, T2tt_150_50, T2tt_150_63, T2tt_167_0, T2tt_175_0, T2tt_175_25, T2tt_175_50, T2tt_175_88, T2tt_183_0, T2tt_192_25, T2tt_200_0, T2tt_200_100, T2tt_200_113, T2tt_200_25, T2tt_200_50, T2tt_200_75, T2tt_208_25, T2tt_217_50, T2tt_225_0, T2tt_225_100, T2tt_225_125, T2tt_225_138, T2tt_225_25, T2tt_225_50, T2tt_225_75, T2tt_233_50, T2tt_242_75, T2tt_250_0, T2tt_250_100, T2tt_250_125, T2tt_250_150, T2tt_250_163, T2tt_250_25, T2tt_250_50, T2tt_250_75, T2tt_258_75, T2tt_267_100, T2tt_275_0, T2tt_275_125, T2tt_275_150, T2tt_275_175, T2tt_275_188, T2tt_283_100, T2tt_292_125, T2tt_300_0, T2tt_300_125, T2tt_300_150, T2tt_300_175, T2tt_300_200, T2tt_300_50, T2tt_300_75, T2tt_308_125, T2tt_317_150, T2tt_325_125, T2tt_325_150, T2tt_325_175, T2tt_325_200, T2tt_325_225, T2tt_325_238, T2tt_325_25, T2tt_325_50, T2tt_325_75, T2tt_333_150, T2tt_342_175, T2tt_350_0, T2tt_350_100, T2tt_350_125, T2tt_350_175, T2tt_350_225, T2tt_350_250, T2tt_350_263, T2tt_350_50, T2tt_350_75, T2tt_358_175, T2tt_367_200, T2tt_375_100, T2tt_375_125, T2tt_375_150, T2tt_375_175, T2tt_375_200, T2tt_375_225, T2tt_375_250, T2tt_375_275, T2tt_375_288, T2tt_375_75, T2tt_383_200, T2tt_392_225, T2tt_400_0, T2tt_400_100, T2tt_400_150, T2tt_400_175, T2tt_400_200, T2tt_400_225, T2tt_400_250, T2tt_400_300, T2tt_400_50, T2tt_408_225, T2tt_417_250, T2tt_425_125, T2tt_425_150, T2tt_425_175, T2tt_425_200, T2tt_425_225, T2tt_425_275, T2tt_425_300, T2tt_433_250, T2tt_450_0, T2tt_450_100, T2tt_450_150, T2tt_450_175, T2tt_450_200, T2tt_450_225, T2tt_450_250, T2tt_450_363, T2tt_450_50, T2tt_458_275, T2tt_467_300, T2tt_475_200, T2tt_475_225, T2tt_475_250, T2tt_475_275, T2tt_475_300, T2tt_475_325, T2tt_475_350, T2tt_475_375, T2tt_475_388, T2tt_483_300, T2tt_492_325, T2tt_500_0, T2tt_500_100, T2tt_500_150, T2tt_500_350, T2tt_500_400, T2tt_500_50, T2tt_526_225, T2tt_526_250, T2tt_526_275, T2tt_526_300, T2tt_526_325, T2tt_526_350, T2tt_526_375, T2tt_550_0, T2tt_550_100, T2tt_550_150, T2tt_550_350, T2tt_550_375, T2tt_550_400, T2tt_550_450, T2tt_550_463, T2tt_550_50, T2tt_568_400, T2tt_576_450, T2tt_576_475, T2tt_576_488, T2tt_584_400, T2tt_592_425, T2tt_600_0, T2tt_600_100, T2tt_600_150, T2tt_600_250, T2tt_600_300, T2tt_600_325, T2tt_600_350, T2tt_600_375, T2tt_600_400, T2tt_600_425, T2tt_600_450, T2tt_600_475, T2tt_600_50, T2tt_600_500, T2tt_650_200, T2tt_650_300, T2tt_650_350, T2tt_650_375, T2tt_650_400, T2tt_650_425, T2tt_650_450, T2tt_658_475, T2tt_668_500, T2tt_676_400, T2tt_676_425, T2tt_676_450, T2tt_676_475, T2tt_676_500, T2tt_676_526, T2tt_676_550, T2tt_676_576, T2tt_676_588, T2tt_684_500, T2tt_692_526, T2tt_700_0, T2tt_700_100, T2tt_700_150, T2tt_700_200, T2tt_700_425, T2tt_700_526, T2tt_726_576, T2tt_750_150, T2tt_750_250, T2tt_750_300, T2tt_750_400, T2tt_750_475, T2tt_750_500, T2tt_750_550, T2tt_750_626, T2tt_750_664, T2tt_776_475, T2tt_776_526, T2tt_776_550, T2tt_776_576, T2tt_776_600, T2tt_776_650, T2tt_776_676, T2tt_776_688, T2tt_784_600, T2tt_792_626, T2tt_800_0, T2tt_800_150, T2tt_800_550, T2tt_826_650, T2tt_826_738, T2tt_834_650, T2tt_850_150, T2tt_850_200, T2tt_850_250, T2tt_850_350, T2tt_850_400, T2tt_850_450, T2tt_850_50, T2tt_850_500, T2tt_850_576, T2tt_850_600, T2tt_850_676, T2tt_850_700, T2tt_850_726, T2tt_850_750, T2tt_868_700, T2tt_876_576, T2tt_876_600, T2tt_876_626, T2tt_876_650, T2tt_876_700, T2tt_876_726, T2tt_892_726, T2tt_900_0, T2tt_900_150, T2tt_900_250, T2tt_900_300, T2tt_900_550, T2tt_900_600, T2tt_900_626, T2tt_900_650, T2tt_926_838, T2tt_950_200, T2tt_950_250, T2tt_950_350, T2tt_950_450, T2tt_950_50, T2tt_950_500, T2tt_950_550, T2tt_950_600, T2tt_950_800, T2tt_958_776, T2tt_976_676, T2tt_976_700, T2tt_976_726, T2tt_976_750, T2tt_976_800 +samples: T2tt_1000_0, T2tt_1000_100, T2tt_1000_150, T2tt_1000_200, T2tt_1000_250, T2tt_1000_300, T2tt_1000_350, T2tt_1000_400, T2tt_1000_450, T2tt_1000_50, T2tt_1000_500, T2tt_1000_550, T2tt_1000_600, T2tt_1000_650, T2tt_1000_700, T2tt_1000_726, T2tt_1000_750, T2tt_1000_776, T2tt_1000_800, T2tt_1000_826, T2tt_1000_850, T2tt_1000_876, T2tt_1000_900, T2tt_1000_914, T2tt_1008_826, T2tt_1018_850, T2tt_1024_726, T2tt_1024_750, T2tt_1024_776, T2tt_1024_800, T2tt_1024_826, T2tt_1024_850, T2tt_1024_876, T2tt_1024_900, T2tt_1024_926, T2tt_1024_938, T2tt_1032_850, T2tt_1044_876, T2tt_1052_0, T2tt_1052_100, T2tt_1052_150, T2tt_1052_200, T2tt_1052_250, T2tt_1052_300, T2tt_1052_350, T2tt_1052_400, T2tt_1052_450, T2tt_1052_50, T2tt_1052_500, T2tt_1052_550, T2tt_1052_600, T2tt_1052_650, T2tt_1052_700, T2tt_1052_750, T2tt_1052_776, T2tt_1052_800, T2tt_1052_826, T2tt_1052_850, T2tt_1052_876, T2tt_1052_900, T2tt_1052_926, T2tt_1052_950, T2tt_1052_964, T2tt_1060_876, T2tt_1068_900, T2tt_1076_776, T2tt_1076_800, T2tt_1076_826, T2tt_1076_850, T2tt_1076_876, T2tt_1076_900, T2tt_1076_926, T2tt_1076_950, T2tt_1076_976, T2tt_1076_988, T2tt_1084_900, T2tt_1092_926, T2tt_1100_0, T2tt_1100_100, T2tt_1100_1000, T2tt_1100_1014, T2tt_1100_150, T2tt_1100_200, T2tt_1100_250, T2tt_1100_300, T2tt_1100_350, T2tt_1100_400, T2tt_1100_450, T2tt_1100_50, T2tt_1100_500, T2tt_1100_550, T2tt_1100_600, T2tt_1100_650, T2tt_1100_700, T2tt_1100_750, T2tt_1100_800, T2tt_1100_826, T2tt_1100_850, T2tt_1100_876, T2tt_1100_900, T2tt_1100_926, T2tt_1100_950, T2tt_1100_976, T2tt_1108_926, T2tt_1116_950, T2tt_1124_1000, T2tt_1124_1024, T2tt_1124_1040, T2tt_1124_826, T2tt_1124_850, T2tt_1124_876, T2tt_1124_900, T2tt_1124_926, T2tt_1124_950, T2tt_1124_976, T2tt_1132_950, T2tt_1144_976, T2tt_1152_0, T2tt_1152_100, T2tt_1152_1000, T2tt_1152_1024, T2tt_1152_1052, T2tt_1152_1064, T2tt_1152_150, T2tt_1152_200, T2tt_1152_250, T2tt_1152_300, T2tt_1152_350, T2tt_1152_400, T2tt_1152_450, T2tt_1152_50, T2tt_1152_500, T2tt_1152_550, T2tt_1152_600, T2tt_1152_650, T2tt_1152_700, T2tt_1152_750, T2tt_1152_800, T2tt_1152_850, T2tt_1152_876, T2tt_1152_900, T2tt_1152_926, T2tt_1152_950, T2tt_1152_976, T2tt_1160_976, T2tt_1168_1000, T2tt_1176_1000, T2tt_1176_1024, T2tt_1176_1052, T2tt_1176_1076, T2tt_1176_1088, T2tt_1176_876, T2tt_1176_900, T2tt_1176_926, T2tt_1176_950, T2tt_1176_976, T2tt_1184_1000, T2tt_1192_1024, T2tt_1200_0, T2tt_1200_100, T2tt_1200_1000, T2tt_1200_1024, T2tt_1200_1052, T2tt_1200_1076, T2tt_1200_1100, T2tt_1200_1112, T2tt_1200_150, T2tt_1200_200, T2tt_1200_250, T2tt_1200_300, T2tt_1200_350, T2tt_1200_400, T2tt_1200_450, T2tt_1200_50, T2tt_1200_500, T2tt_1200_550, T2tt_1200_600, T2tt_1200_650, T2tt_1200_700, T2tt_1200_750, T2tt_1200_800, T2tt_1200_850, T2tt_1200_900, T2tt_1200_926, T2tt_1200_950, T2tt_1200_976, T2tt_1252_0, T2tt_1252_100, T2tt_1252_1000, T2tt_1252_1052, T2tt_1252_1100, T2tt_1252_150, T2tt_1252_200, T2tt_1252_250, T2tt_1252_300, T2tt_1252_350, T2tt_1252_400, T2tt_1252_450, T2tt_1252_50, T2tt_1252_500, T2tt_1252_550, T2tt_1252_600, T2tt_1252_650, T2tt_1252_700, T2tt_1252_750, T2tt_1252_800, T2tt_1252_850, T2tt_1252_900, T2tt_1252_950, T2tt_1300_0, T2tt_1300_100, T2tt_1300_1000, T2tt_1300_1052, T2tt_1300_1100, T2tt_1300_1152, T2tt_1300_150, T2tt_1300_200, T2tt_1300_250, T2tt_1300_300, T2tt_1300_350, T2tt_1300_400, T2tt_1300_450, T2tt_1300_50, T2tt_1300_500, T2tt_1300_550, T2tt_1300_600, T2tt_1300_650, T2tt_1300_700, T2tt_1300_750, T2tt_1300_800, T2tt_1300_850, T2tt_1300_900, T2tt_1300_950, T2tt_1352_0, T2tt_1352_100, T2tt_1352_1000, T2tt_1352_1052, T2tt_1352_1100, T2tt_1352_1152, T2tt_1352_150, T2tt_1352_200, T2tt_1352_250, T2tt_1352_300, T2tt_1352_350, T2tt_1352_400, T2tt_1352_450, T2tt_1352_50, T2tt_1352_500, T2tt_1352_550, T2tt_1352_600, T2tt_1352_650, T2tt_1352_700, T2tt_1352_750, T2tt_1352_800, T2tt_1352_850, T2tt_1352_900, T2tt_1352_950, T2tt_1400_0, T2tt_1400_100, T2tt_1400_1000, T2tt_1400_1052, T2tt_1400_1100, T2tt_1400_1152, T2tt_1400_150, T2tt_1400_200, T2tt_1400_250, T2tt_1400_300, T2tt_1400_350, T2tt_1400_400, T2tt_1400_450, T2tt_1400_50, T2tt_1400_500, T2tt_1400_550, T2tt_1400_600, T2tt_1400_650, T2tt_1400_700, T2tt_1400_750, T2tt_1400_800, T2tt_1400_850, T2tt_1400_900, T2tt_1400_950, T2tt_1452_0, T2tt_1452_100, T2tt_1452_1000, T2tt_1452_1052, T2tt_1452_1100, T2tt_1452_1152, T2tt_1452_150, T2tt_1452_200, T2tt_1452_250, T2tt_1452_300, T2tt_1452_350, T2tt_1452_400, T2tt_1452_450, T2tt_1452_50, T2tt_1452_500, T2tt_1452_550, T2tt_1452_600, T2tt_1452_650, T2tt_1452_700, T2tt_1452_750, T2tt_1452_800, T2tt_1452_850, T2tt_1452_900, T2tt_1452_950, T2tt_1500_0, T2tt_1500_100, T2tt_1500_1000, T2tt_1500_1052, T2tt_1500_1100, T2tt_1500_1152, T2tt_1500_150, T2tt_1500_200, T2tt_1500_250, T2tt_1500_300, T2tt_1500_350, T2tt_1500_400, T2tt_1500_450, T2tt_1500_50, T2tt_1500_500, T2tt_1500_550, T2tt_1500_600, T2tt_1500_650, T2tt_1500_700, T2tt_1500_750, T2tt_1500_800, T2tt_1500_850, T2tt_1500_900, T2tt_1500_950, T2tt_150_0, T2tt_150_25, T2tt_150_50, T2tt_150_63, T2tt_167_0, T2tt_175_0, T2tt_175_25, T2tt_175_50, T2tt_175_75, T2tt_175_88, T2tt_183_0, T2tt_192_25, T2tt_200_0, T2tt_200_100, T2tt_200_113, T2tt_200_25, T2tt_200_50, T2tt_200_75, T2tt_208_25, T2tt_217_50, T2tt_225_0, T2tt_225_100, T2tt_225_125, T2tt_225_138, T2tt_225_25, T2tt_225_50, T2tt_225_75, T2tt_233_50, T2tt_242_75, T2tt_250_0, T2tt_250_100, T2tt_250_125, T2tt_250_150, T2tt_250_163, T2tt_250_25, T2tt_250_50, T2tt_250_75, T2tt_258_75, T2tt_267_100, T2tt_275_0, T2tt_275_100, T2tt_275_125, T2tt_275_150, T2tt_275_175, T2tt_275_188, T2tt_275_25, T2tt_275_50, T2tt_275_75, T2tt_283_100, T2tt_292_125, T2tt_300_0, T2tt_300_100, T2tt_300_125, T2tt_300_150, T2tt_300_175, T2tt_300_200, T2tt_300_213, T2tt_300_25, T2tt_300_50, T2tt_300_75, T2tt_308_125, T2tt_317_150, T2tt_325_100, T2tt_325_125, T2tt_325_150, T2tt_325_175, T2tt_325_200, T2tt_325_225, T2tt_325_238, T2tt_325_25, T2tt_325_50, T2tt_325_75, T2tt_333_150, T2tt_342_175, T2tt_350_0, T2tt_350_100, T2tt_350_125, T2tt_350_150, T2tt_350_175, T2tt_350_200, T2tt_350_225, T2tt_350_250, T2tt_350_263, T2tt_350_50, T2tt_350_75, T2tt_358_175, T2tt_367_200, T2tt_375_100, T2tt_375_125, T2tt_375_150, T2tt_375_175, T2tt_375_200, T2tt_375_225, T2tt_375_250, T2tt_375_275, T2tt_375_288, T2tt_375_75, T2tt_383_200, T2tt_392_225, T2tt_400_0, T2tt_400_100, T2tt_400_125, T2tt_400_150, T2tt_400_175, T2tt_400_200, T2tt_400_225, T2tt_400_250, T2tt_400_275, T2tt_400_300, T2tt_400_313, T2tt_400_50, T2tt_408_225, T2tt_417_250, T2tt_425_125, T2tt_425_150, T2tt_425_175, T2tt_425_200, T2tt_425_225, T2tt_425_250, T2tt_425_275, T2tt_425_300, T2tt_425_325, T2tt_425_338, T2tt_433_250, T2tt_442_275, T2tt_450_0, T2tt_450_100, T2tt_450_150, T2tt_450_175, T2tt_450_200, T2tt_450_225, T2tt_450_250, T2tt_450_275, T2tt_450_300, T2tt_450_325, T2tt_450_350, T2tt_450_363, T2tt_450_50, T2tt_458_275, T2tt_467_300, T2tt_475_175, T2tt_475_200, T2tt_475_225, T2tt_475_250, T2tt_475_275, T2tt_475_300, T2tt_475_325, T2tt_475_350, T2tt_475_375, T2tt_475_388, T2tt_483_300, T2tt_492_325, T2tt_500_0, T2tt_500_100, T2tt_500_150, T2tt_500_200, T2tt_500_225, T2tt_500_250, T2tt_500_275, T2tt_500_300, T2tt_500_325, T2tt_500_350, T2tt_500_375, T2tt_500_400, T2tt_500_413, T2tt_500_50, T2tt_508_325, T2tt_518_350, T2tt_526_225, T2tt_526_250, T2tt_526_275, T2tt_526_300, T2tt_526_325, T2tt_526_350, T2tt_526_375, T2tt_526_400, T2tt_526_425, T2tt_526_438, T2tt_534_350, T2tt_542_375, T2tt_550_0, T2tt_550_100, T2tt_550_150, T2tt_550_200, T2tt_550_250, T2tt_550_275, T2tt_550_300, T2tt_550_325, T2tt_550_350, T2tt_550_375, T2tt_550_400, T2tt_550_425, T2tt_550_450, T2tt_550_463, T2tt_550_50, T2tt_558_375, T2tt_568_400, T2tt_576_275, T2tt_576_300, T2tt_576_325, T2tt_576_350, T2tt_576_375, T2tt_576_400, T2tt_576_425, T2tt_576_450, T2tt_576_475, T2tt_576_488, T2tt_584_400, T2tt_592_425, T2tt_600_0, T2tt_600_100, T2tt_600_150, T2tt_600_200, T2tt_600_250, T2tt_600_300, T2tt_600_325, T2tt_600_350, T2tt_600_375, T2tt_600_400, T2tt_600_425, T2tt_600_450, T2tt_600_475, T2tt_600_50, T2tt_600_500, T2tt_600_514, T2tt_608_425, T2tt_618_450, T2tt_626_325, T2tt_626_350, T2tt_626_375, T2tt_626_400, T2tt_626_425, T2tt_626_450, T2tt_626_475, T2tt_626_500, T2tt_626_526, T2tt_626_538, T2tt_634_450, T2tt_642_475, T2tt_650_0, T2tt_650_100, T2tt_650_150, T2tt_650_200, T2tt_650_250, T2tt_650_300, T2tt_650_350, T2tt_650_375, T2tt_650_400, T2tt_650_425, T2tt_650_450, T2tt_650_475, T2tt_650_50, T2tt_650_500, T2tt_650_526, T2tt_650_550, T2tt_650_564, T2tt_658_475, T2tt_668_500, T2tt_676_375, T2tt_676_400, T2tt_676_425, T2tt_676_450, T2tt_676_475, T2tt_676_500, T2tt_676_526, T2tt_676_550, T2tt_676_576, T2tt_676_588, T2tt_684_500, T2tt_692_526, T2tt_700_0, T2tt_700_100, T2tt_700_150, T2tt_700_200, T2tt_700_250, T2tt_700_300, T2tt_700_350, T2tt_700_400, T2tt_700_425, T2tt_700_450, T2tt_700_475, T2tt_700_50, T2tt_700_500, T2tt_700_526, T2tt_700_550, T2tt_700_576, T2tt_700_600, T2tt_700_614, T2tt_708_526, T2tt_718_550, T2tt_726_425, T2tt_726_450, T2tt_726_475, T2tt_726_500, T2tt_726_526, T2tt_726_550, T2tt_726_576, T2tt_726_600, T2tt_726_626, T2tt_726_638, T2tt_734_550, T2tt_742_576, T2tt_750_0, T2tt_750_100, T2tt_750_150, T2tt_750_200, T2tt_750_250, T2tt_750_300, T2tt_750_350, T2tt_750_400, T2tt_750_450, T2tt_750_475, T2tt_750_50, T2tt_750_500, T2tt_750_526, T2tt_750_550, T2tt_750_576, T2tt_750_600, T2tt_750_626, T2tt_750_650, T2tt_750_664, T2tt_758_576, T2tt_768_600, T2tt_776_475, T2tt_776_500, T2tt_776_526, T2tt_776_550, T2tt_776_576, T2tt_776_600, T2tt_776_626, T2tt_776_650, T2tt_776_676, T2tt_776_688, T2tt_784_600, T2tt_792_626, T2tt_800_0, T2tt_800_100, T2tt_800_150, T2tt_800_200, T2tt_800_250, T2tt_800_300, T2tt_800_350, T2tt_800_400, T2tt_800_450, T2tt_800_50, T2tt_800_500, T2tt_800_526, T2tt_800_550, T2tt_800_576, T2tt_800_600, T2tt_800_626, T2tt_800_650, T2tt_800_676, T2tt_800_700, T2tt_800_714, T2tt_808_626, T2tt_818_650, T2tt_826_526, T2tt_826_550, T2tt_826_576, T2tt_826_600, T2tt_826_626, T2tt_826_650, T2tt_826_676, T2tt_826_700, T2tt_826_726, T2tt_826_738, T2tt_834_650, T2tt_842_676, T2tt_850_0, T2tt_850_100, T2tt_850_150, T2tt_850_200, T2tt_850_250, T2tt_850_300, T2tt_850_350, T2tt_850_400, T2tt_850_450, T2tt_850_50, T2tt_850_500, T2tt_850_550, T2tt_850_576, T2tt_850_600, T2tt_850_626, T2tt_850_650, T2tt_850_676, T2tt_850_700, T2tt_850_726, T2tt_850_750, T2tt_850_764, T2tt_858_676, T2tt_868_700, T2tt_876_576, T2tt_876_600, T2tt_876_626, T2tt_876_650, T2tt_876_676, T2tt_876_700, T2tt_876_726, T2tt_876_750, T2tt_876_776, T2tt_876_788, T2tt_884_700, T2tt_892_726, T2tt_900_0, T2tt_900_100, T2tt_900_150, T2tt_900_200, T2tt_900_250, T2tt_900_300, T2tt_900_350, T2tt_900_400, T2tt_900_450, T2tt_900_50, T2tt_900_500, T2tt_900_550, T2tt_900_600, T2tt_900_626, T2tt_900_650, T2tt_900_676, T2tt_900_700, T2tt_900_726, T2tt_900_750, T2tt_900_776, T2tt_900_800, T2tt_900_814, T2tt_908_726, T2tt_918_750, T2tt_926_626, T2tt_926_650, T2tt_926_676, T2tt_926_700, T2tt_926_726, T2tt_926_750, T2tt_926_776, T2tt_926_800, T2tt_926_826, T2tt_926_838, T2tt_934_750, T2tt_942_776, T2tt_950_0, T2tt_950_100, T2tt_950_150, T2tt_950_200, T2tt_950_250, T2tt_950_300, T2tt_950_350, T2tt_950_400, T2tt_950_450, T2tt_950_50, T2tt_950_500, T2tt_950_550, T2tt_950_600, T2tt_950_650, T2tt_950_676, T2tt_950_700, T2tt_950_726, T2tt_950_750, T2tt_950_776, T2tt_950_800, T2tt_950_826, T2tt_950_850, T2tt_950_864, T2tt_958_776, T2tt_968_800, T2tt_976_676, T2tt_976_700, T2tt_976_726, T2tt_976_750, T2tt_976_776, T2tt_976_800, T2tt_976_826, T2tt_976_850, T2tt_976_876, T2tt_976_888, T2tt_984_800, T2tt_992_826 [backgrounds] # Names given to background samples